Compare commits

...

3 Commits

Author SHA1 Message Date
ce413965c7 docs: update changelog for version 1.2.83
Some checks failed
Release Workflow / route (push) Successful in 7s
Release Workflow / verify-provider (push) Successful in 3s
Release Workflow / github-release (push) Has been skipped
Release Workflow / gitea-release (push) Failing after 25s
2025-02-20 18:01:22 +01:00
3fafed930e docs: update webpages for version v1.2.83 2025-02-20 18:01:22 +01:00
e1c604ee8d refactor: replace hexdump with xxd for magic byte verification in release workflows 2025-02-20 18:01:16 +01:00
11 changed files with 24 additions and 12 deletions

View File

@ -32,6 +32,9 @@ jobs:
python -m pip install --upgrade pip
pip install --upgrade platformio esptool
- name: Install xxd
run: sudo apt-get install xxd
- name: Build Firmware
run: |
pio run -e esp32dev_ota -t buildfs # Build SPIFFS
@ -65,9 +68,9 @@ jobs:
# Verify magic bytes
echo "Checking magic bytes:"
echo "OTA binary first bytes:"
hexdump -C -n 16 filaman_ota.bin
xxd -l 16 filaman_ota.bin
echo "Full binary first bytes:"
hexdump -C -n 16 filaman_full.bin
xxd -l 16 filaman_full.bin
# Verify file sizes
echo "File sizes:"

View File

@ -21,6 +21,9 @@ jobs:
python -m pip install --upgrade pip
pip install --upgrade platformio esptool
- name: Install xxd
run: sudo apt-get install xxd
- name: Build Firmware
run: |
pio run -e esp32dev_ota -t buildfs # Build SPIFFS
@ -54,9 +57,9 @@ jobs:
# Verify magic bytes
echo "Checking magic bytes:"
echo "OTA binary first bytes:"
hexdump -C -n 16 filaman_ota.bin
xxd -l 16 filaman_ota.bin
echo "Full binary first bytes:"
hexdump -C -n 16 filaman_full.bin
xxd -l 16 filaman_full.bin
# Verify file sizes
echo "File sizes:"

View File

@ -1,5 +1,11 @@
# Changelog
## [1.2.83] - 2025-02-20
### Changed
- update webpages for version v1.2.83
- replace hexdump with xxd for magic byte verification in release workflows
## [1.2.82] - 2025-02-20
### Changed
- update webpages for version v1.2.82

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -12,7 +12,7 @@
<div style="display: flex; align-items: center; gap: 2rem;">
<img src="/logo.png" alt="FilaMan Logo" class="logo">
<div class="logo-text">
<h1>FilaMan<span class="version">v1.2.82</span></h1>
<h1>FilaMan<span class="version">v1.2.83</span></h1>
<h4>Filament Management Tool</h4>
</div>
</div>

View File

@ -9,7 +9,7 @@
; https://docs.platformio.org/page/projectconf.html
[common]
version = "1.2.82"
version = "1.2.83"
[env:esp32dev]
platform = espressif32