Conversation
Added overflow-x hidden to the body to prevent out of bounds elements to cause horizontal scrolling Added a scrollbar-width: thin on every scrollbar purely for aesthetic reasons.
Fixed an issue with horizontal scroll
An option to remove the libraries section from the home screen as it is redundant with the top nav. I made a new UI section in the settings page, it may or may not be the most organized idea, let me know!
An option to remove the libraries section from the home screen as it is redundant with the top nav. I made a new UI section in the settings page, it may or may not be the most organized idea, let me know!
This reverts commit d2b26be.
… screen" This reverts commit f574891.
Added an option to remove the libraries section from the home screen
Added an objectFit: cover to the HeroDisplay Component so that the videos takes the whole space, also moved the z-index property as it was no being applied when not directly on the video component.
Changed the z-index of the buttons of the hero to not make them appear over the app bar
Fixed the videos in the hero banner not taking the whole height/width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new UDP-based service discovery mechanism for the Nevu backend, replacing the previous mDNS/Bonjour approach. It also updates documentation and configuration to reflect the new UDP port usage, and improves proxy request handling for better security and logging.
Service Discovery and Networking Updates:
bonjour-service(mDNS) withudp-discoveryfor service discovery inbackend/src/index.ts, updating code to announce Nevu instances via UDP and removing mDNS dependencies. [1] [2] [3] [4] [5]44201exposure inDockerfile, Docker run command, and Docker Compose configuration to support UDP service discovery. [1] [2] [3]Dependency and Build Changes:
bonjour-service,multicast-dns, etc.) and addedudp-discoveryand its type definitions inbackend/package.jsonandbackend/package-lock.json. [1] [2] [3].gitignoreto exclude/wwwdirectory from version control.Proxy and Security Improvements:
/proxyendpoint inbackend/src/index.ts. [1] [2]Documentation Updates:
README.mdto document the new UDP port, environment variables (PORT,LISTEN_PORT), and usage instructions for Docker and Docker Compose. Also improved formatting and clarified supported features. [1] [2] [3] [4] [5]Environment Variable Changes:
PORTandLISTEN_PORTenvironment variables for container publishing and server listening in both code and documentation. [1] [2]