-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- ***Breaking changes***: requires `Glow Worm Luciferin` firmware (v2.17.6). - **Luciferin now has specific support for [AVX CPU extensions](https://github.com/sblantipodi/firefly_luciferin/wiki/Very-fast-capture#cpu-acceleration-using-avx-simd-extensions).** AMD and Intel are investing a lot of resources in improving their CPU extensions. Next-generation CPUs contain various optimizations related to `Advanced Vector Extensions (AVX)` which are `Single Instruction, Multiple Data (SIMD)` extensions to the x86 instruction set architecture for microprocessors. AVX 512 and AVX 256 offer significant performance improvements and resource optimization benefits. - USB/Serial communication has been redesigned: - Improved USB device recognition under Linux. - Serial devices may cause an infinite loop due to buggy COM port enumeration. Fixed. - [Tray icon](https://github.com/sblantipodi/firefly_luciferin/wiki/Tray-icon-shortcuts) has been improved with new shortcuts. - Added a workaround for an existing Windows issue that causes tray menu to stay behind the taskbar. [Closes #229](sblantipodi/firefly_luciferin#229). - Fixed an issue that prevented Firefly Luciferin from detecting Glow Worm Luciferin devices when the computer was connected to a VPN. - Firefly Luciferin infinitely starts itself after PC standby / wake up. [Closes #228](sblantipodi/firefly_luciferin#228). - There are microcontrollers that has built/in LED. This LED can stay on and be annoying, it now follows the [device reset](https://github.com/sblantipodi/firefly_luciferin/wiki/Device-reset) behaviour. - Fixed an issue that prevented Linux version to show the UI when [debug level](https://github.com/sblantipodi/firefly_luciferin/wiki/Debug) is set to DEBUG. - Fixed an issue that prevented Hyprland to show the UI. - Fixed an issue that caused incorrect color reproduction on non-standard screen resolutions. - Fixed an issue that prevented the Glow Worm Luciferin Light Firmware from properly turning off the LED strip when closing Firefly Luciferin. - Java/JavaFX 23, libs update, code refactor to avoid using deprecated methods, CI/CD pipeline improvements. - [Arduino Bootstrapper](https://github.com/sblantipodi/arduino_bootstrapper/releases) update (v.1.18.2).
- Loading branch information
1 parent
bcad4e7
commit 00bbfd7
Showing
9 changed files
with
85 additions
and
34 deletions.
There are no files selected for viewing
Submodule arduino_bootstrapper
updated
3 files
+1 −1 | library.json | |
+1 −1 | library.properties | |
+1 −1 | src/BootstrapManager.cpp |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
|
||
// AUTO GENERATED FILE, DO NOT EDIT | ||
#ifndef VERSION | ||
#define VERSION "5.15.4" | ||
#define VERSION "5.16.33" | ||
#endif | ||
#ifndef BUILD_TIMESTAMP | ||
#define BUILD_TIMESTAMP "2024-08-02 13:34:16.324757" | ||
#define BUILD_TIMESTAMP "2024-09-19 13:54:35.159175" | ||
#endif | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,8 @@ extra_scripts = | |
pre:platformio_version_increment/version_increment_pre.py | ||
post:platformio_version_increment/version_increment_post.py | ||
lib_deps = | ||
makuna/[email protected].0 | ||
bblanchon/ArduinoJson@7.1.0 | ||
makuna/[email protected].2 | ||
bblanchon/ArduinoJson@7.2.0 | ||
knolleary/[email protected] | ||
;https://github.com/Makuna/NeoPixelBus.git#master | ||
lib_extra_dirs = arduino_bootstrapper | ||
|
@@ -91,8 +91,8 @@ board_build.filesystem = ${common_env_data.filesystem} | |
monitor_filters = ${common_env_data.monitor_filters_esp8266} | ||
board_build.f_cpu = ${common_env_data.f_cpu_esp8266} | ||
;build_type = debug | ||
monitor_port = COM4 | ||
upload_port = COM4 | ||
monitor_port = COM3 | ||
upload_port = COM3 | ||
;upload_protocol = espota | ||
;upload_port = 192.168.1.52 | ||
;upload_flags = | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.