-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
fix the 2d drift animation #3814
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
BaptisteHudyma
wants to merge
464
commits into
wled:main
from
BaptisteHudyma:3813-fix-the-drift-animation
Closed
fix the 2d drift animation #3814
BaptisteHudyma
wants to merge
464
commits into
wled:main
from
BaptisteHudyma:3813-fix-the-drift-animation
Conversation
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
Throttle for ESP8266 This is a band-aid for ESP8266 JSON corruption and not a proper fix.
Fix bug that welcome page was not shown
Allows for "pixel perfect" liveview instead of diffused view, to better match what's shown at https://kno.wled.ge/features/effects/. This will make it easier to see what the LEDs are doing, although it may not be as accurate a representation for installations with diffused LEDs. Includes fallback to CSS gradient method for browsers that don't support canvas.
setMode() fix for selecting gap UI error messages
Update of BusManager class (static)
Allow PSRAM (SPI RAM) to be used for JSON buffer
This also adds support for ETag caching for the settings pages Also fixed some issues with the previous caching not being RFC 7232 compliant.
Improve ETag Caching
Add JSONBufferGuard, an RAII lock guard class for JSONBufferLock analogous to std::lock_guard. This permits binding the guard to a scope, such as an object life cycle or function body, guaranteeing that the lock will be released when the scope exits.
LockedJsonResponse: Release early if possible
This reverts commit 0003845.
Update setup-node and cache usermods in wled-ci.yml
This reverts commit f25fada.
Fix preset sorting
- compile time button configuration wled#3792 - remove IR config if not compiled - additional string optimisations
Additional string optimisation
Fix spaces missing in HTML somehow Update copyright year
Add 160MHz builds for ESP8266
- fixes wled#3806
Contributor
Author
|
I have also a one line change huge optimization to the Waverly animation, that is not a bug, should I add it to this MR as another commit ? |
2060d93 to
37cddfe
Compare
Collaborator
|
Please re-base for 0_15 branch as requested in CONTRIBUTING.md |
37cddfe to
c637769
Compare
Contributor
Author
|
My bad, I'm not used to the online git editor |
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.
I fixed the 2d drift animation, that had a cast error.
I also optimized the loop a little.