-
-
Notifications
You must be signed in to change notification settings - Fork 20
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 `Firefly Luciferin` (v2.16.3) - [Initial setup](https://github.com/sblantipodi/firefly_luciferin/wiki/Quick-start#install-firefly-luciferin-java-fast-screen-capture-software-on-your-pc) has been simplified by automatically using the right settings for Full/Light firmware. - [Web installer](https://sblantipodi.github.io/glow_worm_luciferin/) improvements on newer ESP devices. - [Power saving](https://github.com/sblantipodi/firefly_luciferin/wiki/Power-saving-features) feature is now enabled by default. - Fixed an issue that prevented the user to select the preferred capture method. - Fixed an issue that prevented LilyGO-T-POE-Pro and ESP32-POE-WROVER from connecting to Ethernet correctly. - It took too long to start the device [reset process](https://github.com/sblantipodi/firefly_luciferin/wiki/Device-reset) when MQTT server is not available. Fixed. - Tray icon was unable to load all settings relative to a profile. Fixed. - Technicalities: Switched to the new ZGC Generational. - [Arduino Bootstrapper](https://github.com/sblantipodi/arduino_bootstrapper/releases) update (v.1.18.1).
- Loading branch information
1 parent
28bb51a
commit 898bc55
Showing
12 changed files
with
254 additions
and
231 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -87,6 +87,18 @@ jobs: | |
name: GlowWormLuciferinFULL_ESP8266_firmware.bin | ||
path: /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/.pio/build/glowwormluciferinfull_esp8266/firmware.bin | ||
|
||
- name: Saving version files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: version | ||
path: /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/version | ||
|
||
- name: Saving Version.h files | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Version.h | ||
path: /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/include/Version.h | ||
|
||
|
||
|
||
build_esp8266_firmware_light: | ||
|
@@ -423,6 +435,9 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cp -rf ci_artifacts/Version.h/Version.h ./currentbranch/include/Version.h | ||
cp -rf ci_artifacts/version/version ./currentbranch/version | ||
cp -rf ci_artifacts/GlowWormLuciferinFULL_ESP8266_firmware.bin/firmware.bin ./currentbranch/docs/static/firmware_build/GlowWormLuciferinFULL_ESP8266_firmware.bin | ||
cp -rf ci_artifacts/GlowWormLuciferinLIGHT_ESP8266_firmware.bin/firmware.bin ./currentbranch/docs/static/firmware_build/GlowWormLuciferinLIGHT_ESP8266_firmware.bin | ||
|
@@ -450,6 +465,8 @@ jobs: | |
ls ./docs/static/firmware_build/; | ||
git config --global user.email "[email protected]"; | ||
git config --global user.name "Davide Perini"; | ||
git add ./version; | ||
git add ./include/Version.h; | ||
git add ./docs/static/firmware_build/*; | ||
git add ./docs/static/firmware_build_previous/*; | ||
cat /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/docs/static/firmware_build/manifest_full.json; | ||
|
Submodule arduino_bootstrapper
updated
4 files
+1 −1 | library.json | |
+1 −1 | library.properties | |
+18 −0 | src/EthManager.cpp | |
+3 −0 | src/WifiManager.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"name":"Glow Worm Luciferin FULL","version":"5.14.5","new_install_improv_wait_time":20,"builds":[{"chipFamily":"ESP8266","parts":[{"path":"GlowWormLuciferinFULL_ESP8266_firmware.bin","offset":0}]},{"chipFamily":"ESP32","parts":[{"path":"GlowWormLuciferinFULL_ESP32_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-C3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_C3_CDC_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S2","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S2_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S3_CDC_firmware-factory.bin","offset":0}]}],"funding_url":"https://www.paypal.com/donate?hosted_button_id=ZEJM8ZLQW5E4A"} | ||
{"name":"Glow Worm Luciferin FULL","version":"5.14.5","new_install_improv_wait_time":20,"builds":[{"chipFamily":"ESP8266","parts":[{"path":"GlowWormLuciferinFULL_ESP8266_firmware.bin","offset":0}]},{"chipFamily":"ESP32","parts":[{"path":"GlowWormLuciferinFULL_ESP32_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-C3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_C3_CDC_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S2","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S2_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S3_firmware-factory.bin","offset":0}]}],"funding_url":"https://www.paypal.com/donate?hosted_button_id=ZEJM8ZLQW5E4A"} |
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 +1 @@ | ||
{"name":"Glow Worm Luciferin FULL","version":"5.13.2","new_install_improv_wait_time":20,"builds":[{"chipFamily":"ESP8266","parts":[{"path":"GlowWormLuciferinFULL_ESP8266_firmware.bin","offset":0}]},{"chipFamily":"ESP32","parts":[{"path":"GlowWormLuciferinFULL_ESP32_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-C3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_C3_CDC_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S2","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S2_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S3_CDC_firmware-factory.bin","offset":0}]}],"funding_url":"https://www.paypal.com/donate?hosted_button_id=ZEJM8ZLQW5E4A"} | ||
{"name":"Glow Worm Luciferin FULL","version":"5.13.2","new_install_improv_wait_time":20,"builds":[{"chipFamily":"ESP8266","parts":[{"path":"GlowWormLuciferinFULL_ESP8266_firmware.bin","offset":0}]},{"chipFamily":"ESP32","parts":[{"path":"GlowWormLuciferinFULL_ESP32_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-C3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_C3_CDC_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S2","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S2_firmware-factory.bin","offset":0}]},{"chipFamily":"ESP32-S3","parts":[{"path":"GlowWormLuciferinFULL_ESP32_S3_firmware-factory.bin","offset":0}]}],"funding_url":"https://www.paypal.com/donate?hosted_button_id=ZEJM8ZLQW5E4A"} |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ platform_esp8266 = [email protected] | |
f_cpu_esp8266 = 160000000L | ||
monitor_filters_esp8266 = esp8266_exception_decoder | ||
|
||
platform_esp32 = espressif32@6.7.0 | ||
platform_esp32 = espressif32@6.8.1 | ||
monitor_filters_esp32 = esp32_exception_decoder | ||
|
||
framework = arduino | ||
|
@@ -49,7 +49,7 @@ 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 = COM9 | ||
;upload_port = COM4 | ||
upload_protocol = espota | ||
upload_port = 192.168.1.11 | ||
upload_flags = | ||
|
@@ -126,7 +126,7 @@ board_build.f_cpu = 240000000L | |
monitor_port = COM9 | ||
;upload_port = COM9 | ||
upload_protocol = espota | ||
upload_port = 192.168.1.106 | ||
upload_port = 192.168.1.8 | ||
upload_flags = | ||
--port=8379 | ||
--auth=${secrets.ota_password} | ||
|
@@ -368,13 +368,13 @@ upload_speed = ${common_env_data.upload_speed} | |
board_build.filesystem = littlefs | ||
monitor_filters = ${common_env_data.monitor_filters_esp32} | ||
;build_type = debug | ||
monitor_port = COM11 | ||
upload_port = COM11 | ||
;upload_protocol = espota | ||
;upload_port = 192.168.1.82 | ||
;upload_flags = | ||
; --port=8379 | ||
; --auth=${secrets.ota_password} | ||
monitor_port = COM5 | ||
;upload_port = COM6 | ||
upload_protocol = espota | ||
upload_port = 192.168.1.10 | ||
upload_flags = | ||
--port=8386 | ||
--auth=${secrets.ota_password} | ||
lib_deps = ${common_env_data.lib_deps} | ||
lib_ldf_mode = deep | ||
extra_scripts = post:platformio_version_increment/esp32_create_factory_bin_post.py | ||
|
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.