From 5ccba9e70b9b7bcd300a490f7dd8e29f78ab8a89 Mon Sep 17 00:00:00 2001 From: qlrd Date: Thu, 26 Mar 2026 13:20:27 -0300 Subject: [PATCH] fix: revert CHANGELOG terminology changes and fix bad example indentation - Revert 'Fixed' back to 'fixes on' in CHANGELOG 0.0.20-beta; - Revert 'air-gapped' back to original wording in CHANGELOG; - Revert alpha-3 content rewrite back to original wording; - Reflow 'on device' orphan line in CHANGELOG; - Fix 2-space to 4-space indentation in bad Python example; Signed-off-by: Monsieur Piscinette --- CHANGELOG.md | 13 ++++++------- CONTRIBUTING.md | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab2b2ba1..163b6ef7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,39 +6,38 @@ Sipeed Cube, Yahboom and WonderMV; - Flash official firmware with automatic integrity/authenticity verification; - Flash beta firmware devices; -- Air-gapped update devices with SDcard; +- Air-gap update devices with SDcard; - Wipe devices; - 12 locale support; - support for Windows, MacOS Arm, MacOS Intel, Debian-like OS and Fedora; - Fixed Fedora crashes; - Better error handling during flash procedure; - Better error handling during wipe procedure; -- Better error handling during air-gapped update procedure; +- Better error handling during air-gap update procedure; ## 0.0.20-beta ### Major update -- Make an air-gapped update: +- Make an airgapped update: - user will be requested to insert a SDCard on computer; - user can select among recognized removable drives; - both `firmware.bin` and `firmware.bin.sig` will be copied to sdcard; - after the copy, user will be requested to eject sdcard and insert it on device; - at same time, the `firmware.bin`'s computed hash will appear to compare - with the computed hash - on device; + with the computed hash on device; ### Minor updates - Added support to de_DE locale; - Added support to ja_JP locale; -- Fixed Windows bug that didn't allow users to select a custom asset folder; +- Fixes on Windows bug that didn't allow users to select a custom asset folder; ## 0.0.20-alpha-3 - Fix the bug that crash when a new firmware version is added on - `selfcustody/krux`, but it isn't listed as a valid one in + `selfcustody/krux`, but not it isnt a valid one in `VALID_DEVICES_VERSIONS`; - The fix suggested by @odudex to manage new versions (good when a hot fix is made) in line 101 of `src/app/screens/select_device_screen.py`; diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a02b8916..2a7ec7ba 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -140,7 +140,7 @@ def foo( bar: int, baz: float, ) -> str: - str(bar) + str(baz) + str(bar) + str(baz) ``` prefer: