mirror of
https://github.com/ratspeak/ratdeck.git
synced 2026-05-24 16:15:19 +00:00
release: bump Ratdeck to v1.9.2
This commit is contained in:
@@ -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 \
|
||||
|
||||
Vendored
+2
-2
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user