release: bump Ratdeck to v1.9.2

This commit is contained in:
DeFiDude
2026-05-22 00:18:14 -06:00
parent 8913046a61
commit 6ff76607f5
3 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -26,8 +26,8 @@ jobs:
- name: Merge single .bin for M5Burner
run: |
esptool.py --chip esp32s3 merge_bin \
--flash_mode qio --flash_size 16MB \
esptool.py --chip esp32s3 merge-bin \
--flash-mode qio --flash-size 16MB \
-o ratdeck-merged.bin \
0x0000 .pio/build/ratdeck_915/bootloader.bin \
0x8000 .pio/build/ratdeck_915/partitions.bin \
@@ -87,8 +87,8 @@ jobs:
- name: Merge single .bin for M5Burner
run: |
esptool.py --chip esp32s3 merge_bin \
--flash_mode qio --flash_size 16MB \
esptool.py --chip esp32s3 merge-bin \
--flash-mode qio --flash-size 16MB \
-o ratdeck-merged.bin \
0x0000 .pio/build/ratdeck_915/bootloader.bin \
0x8000 .pio/build/ratdeck_915/partitions.bin \
+2 -2
View File
@@ -19,8 +19,8 @@ def merge_bin(source, target, env):
python = env.subst("$PYTHONEXE")
env.Execute(
f"{shlex.quote(python)} -m esptool --chip esp32s3 merge_bin "
"--flash_mode qio --flash_size 16MB "
f"{shlex.quote(python)} -m esptool --chip esp32s3 merge-bin "
"--flash-mode qio --flash-size 16MB "
f"-o {shlex.quote(output)} "
f"0x0000 {shlex.quote(os.path.join(build_dir, 'bootloader.bin'))} "
f"0x8000 {shlex.quote(os.path.join(build_dir, 'partitions.bin'))} "
+2 -2
View File
@@ -6,8 +6,8 @@
#define RATDECK_VERSION_MAJOR 1
#define RATDECK_VERSION_MINOR 9
#define RATDECK_VERSION_PATCH 1
#define RATDECK_VERSION_STRING "1.9.1"
#define RATDECK_VERSION_PATCH 2
#define RATDECK_VERSION_STRING "1.9.2"
// --- Feature Flags ---
#define HAS_DISPLAY true