-
-
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` firmware (v2.6.5). - **Capture enhancements.** Bias Light effect is now smoother than before. The change/transition between the brightness steps is now more linear. - **Added an option to group LEDs.** The more LEDs you group, the smoother the Bias Light effect will be. Grouping LEDs afflicts precision. - **Bottom row split adjustment is now possible.** You can now configure the gap size. (Closes #69). - **Grabber area adjustment.** You can now choose the size of the grab area. (Closes #68). - **LED corner skip.** The corners now have a horizontal and vertical adjustment feature for the gap. (Closes #67). - **Color temperature correction no longer affect microcontroller's performance.** Microcontroller's performance has been improved by 40% when using color temperature correction. - **Added more gamma steps** for a better fine tuning of the gamma. - Fixed an issue that prevented screen capture when on some resolutions with some LEDs configurations. If you encountered this issue, no more black LEDs when capturing the screen. - Audio functionality broke when changing the UI language, fixed. - Fixed language typos.
- Loading branch information
1 parent
3449f45
commit 010fafd
Showing
51 changed files
with
243 additions
and
102 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 |
---|---|---|
|
@@ -48,8 +48,6 @@ jobs: | |
with: | ||
name: DRAFT_GLOW_WORM_LUCIFERIN_ESP8266_FULL.bin | ||
path: /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/.pio/build/glowwormluciferinfull_esp8266/firmware.bin | ||
# - name: Setup tmate session | ||
# uses: mxschmitt/action-tmate@v3 | ||
- name: Save artifact (glowwormluciferinfull_esp8266) | ||
continue-on-error: true | ||
env: | ||
|
@@ -234,3 +232,45 @@ jobs: | |
git add ./docs/static/firmware_build_beta/GlowWormLuciferinLIGHT_ESP32_firmware-factory.bin; | ||
git commit -m "CI BETA release for firmware web installer"; | ||
git push; | ||
web_tools_update: | ||
runs-on: ubuntu-latest | ||
needs: [ build_esp8266_full, build_esp8266_light, build_esp32_full, build_esp32_light ] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
path: 'beta' | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: master | ||
path: 'currentbranch' | ||
- name: Retrieve version | ||
id: vars | ||
run: | | ||
echo "::set-output name=TAG_NAME::$(cat /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/beta/version)" | ||
- name: Set property version in a ESP Web Tools json file | ||
uses: benday-inc/[email protected] | ||
with: | ||
pathtosettingsfile: '/home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/docs/static/firmware_build_beta/manifest_full.json' | ||
keyname1: 'version' | ||
valuetoset: '${{ steps.vars.outputs.TAG_NAME }}' | ||
- name: Set property version in a ESP Web Tools json file | ||
uses: benday-inc/[email protected] | ||
with: | ||
pathtosettingsfile: '/home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/docs/static/firmware_build_beta/manifest_light.json' | ||
keyname1: 'version' | ||
valuetoset: "${{ steps.vars.outputs.TAG_NAME }}" | ||
- name: Save artifact (glowwormluciferinfull_esp8266) | ||
continue-on-error: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cd currentbranch; | ||
git config --global user.email "[email protected]"; | ||
git config --global user.name "Davide Perini"; | ||
git add ./docs/static/firmware_build_beta/manifest_full.json; | ||
git add ./docs/static/firmware_build_beta/manifest_light.json; | ||
cat /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/docs/static/firmware_build_beta/manifest_light.json; | ||
git commit -m "CI BETA release for firmware web installer"; | ||
git push; |
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 |
---|---|---|
|
@@ -169,8 +169,46 @@ jobs: | |
git commit -m "CI release for firmware web installer"; | ||
git push; | ||
create_release: | ||
web_tools_update: | ||
runs-on: ubuntu-latest | ||
needs: [build_esp8266_firmware, build_esp32_firmware] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: master | ||
path: 'currentbranch' | ||
- name: Retrieve version | ||
id: vars | ||
run: | | ||
echo "::set-output name=TAG_NAME::$(cat /home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/version)" | ||
- name: Set property version in a ESP Web Tools json file | ||
uses: benday-inc/[email protected] | ||
with: | ||
pathtosettingsfile: '/home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/docs/static/firmware_build/manifest_full.json' | ||
keyname1: 'version' | ||
valuetoset: '${{ steps.vars.outputs.TAG_NAME }}' | ||
- name: Set property version in a ESP Web Tools json file | ||
uses: benday-inc/[email protected] | ||
with: | ||
pathtosettingsfile: '/home/runner/work/glow_worm_luciferin/glow_worm_luciferin/currentbranch/docs/static/firmware_build/manifest_light.json' | ||
keyname1: 'version' | ||
valuetoset: "${{ steps.vars.outputs.TAG_NAME }}" | ||
- name: Save artifact (glowwormluciferinfull_esp8266) | ||
continue-on-error: true | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
cd currentbranch; | ||
git config --global user.email "[email protected]"; | ||
git config --global user.name "Davide Perini"; | ||
git add ./docs/static/firmware_build/manifest_full.json; | ||
git add ./docs/static/firmware_build/manifest_light.json; | ||
git commit -m "CI release for firmware web installer"; | ||
git push; | ||
create_release: | ||
needs: [build_esp8266_firmware, build_esp32_firmware, web_tools_update] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
@@ -189,7 +227,11 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
hub release edit --draft=false -m "Release ${{ env.RELEASE_VERSION }}" "${{ env.RELEASE_VERSION }}" | ||
wait_before_exit: | ||
needs: [build_esp8266_firmware, build_esp32_firmware, web_tools_update, create_release] | ||
runs-on: windows-latest | ||
steps: | ||
- name: Sleep for 1200 seconds (Smoke test after the release) | ||
run: sleep 1200s | ||
shell: bash | ||
|
||
shell: bash |
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 @@ | ||
{"type": "library", "name": "ArduinoJson", "version": "6.19.3", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "url": null}} | ||
{"type": "library", "name": "ArduinoJson", "version": "6.19.4", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "url": null}} |
8 changes: 8 additions & 0 deletions
8
.pio/libdeps/glowwormluciferinfull_esp32/ArduinoJson/CHANGELOG.md
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
2 changes: 1 addition & 1 deletion
2
.pio/libdeps/glowwormluciferinfull_esp32/ArduinoJson/appveyor.yml
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
2 changes: 1 addition & 1 deletion
2
.pio/libdeps/glowwormluciferinfull_esp32/ArduinoJson/library.properties
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
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
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 @@ | ||
{"type": "library", "name": "ArduinoJson", "version": "6.19.3", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "url": null}} | ||
{"type": "library", "name": "ArduinoJson", "version": "6.19.4", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "url": null}} |
8 changes: 8 additions & 0 deletions
8
.pio/libdeps/glowwormluciferinfull_esp8266/ArduinoJson/CHANGELOG.md
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
2 changes: 1 addition & 1 deletion
2
.pio/libdeps/glowwormluciferinfull_esp8266/ArduinoJson/appveyor.yml
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
2 changes: 1 addition & 1 deletion
2
.pio/libdeps/glowwormluciferinfull_esp8266/ArduinoJson/library.properties
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
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
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 @@ | ||
{"type": "library", "name": "ArduinoJson", "version": "6.19.3", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "url": null}} | ||
{"type": "library", "name": "ArduinoJson", "version": "6.19.4", "spec": {"owner": "bblanchon", "id": 64, "name": "ArduinoJson", "requirements": null, "url": null}} |
Oops, something went wrong.