What changed, and why it matters
This commit only updates the product changelog and bumps the firmware build version number from 2.4.2 to 2.4.4. It contains no code changes, no bug fixes, and no security-related modifications. The changelog mentions routine items such as removing a wallet connection entry, adding a Zcash backup feature, and fixing a loading issue, but these are just documentation notes for a release; the actual code changes are not present in this commit.
No security action is required for this commit. If investigating the security relevance of the v2.4.4 release, review the actual code commits that implemented the changelog items (Leap Wallet removal, Zcash SLIP39 Shamir Backup, device verification screen loading fix).
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff touches three files: CHANGELOG.md, CHANGELOG-ZH.md, and src/config/version.h. It adds release notes for version 2.4.4 and changes SOFTWARE_VERSION_BUILD from 2 to 4. There are no functional code changes, no cryptographic changes, no memory safety fixes, no input validation changes, and no patch of any vulnerability in this commit.
Changed components
Inspect captured patch +48 / −1
diff --git a/CHANGELOG-ZH.md b/CHANGELOG-ZH.md
index 800525f..0204044 100644
--- a/CHANGELOG-ZH.md
+++ b/CHANGELOG-ZH.md
@@ -1,3 +1,26 @@
+## 2.4.4 (2026-5-27)
+
+**Web3:**
+
+### 优化
+
+1. 移除 Leap Wallet 连接入口
+
+**Cypherpunk:**
+
+### 新增
+
+1. 支持 Zcash 使用 SLIP39 33词 Shamir Backup
+
+### Bug 修复
+
+1. 修复设备校验页面卡顿问题
+
+
+
+
+
+
## 2.4.2(2026-4-23)
**Web3:**
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5aef3aa..8dec3ad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,27 @@
+## 2.4.4 (2026-5-27)
+
+**Web3:**
+
+### Improvements
+
+1. Removed the Leap Wallet connection entry
+
+
+**Cypherpunk:**
+
+
+### What's new
+
+1. Added support for Zcash using SLIP39 33-word Shamir Backup
+
+### Bug Fixes
+
+1. Fixed loading issue on the device verification screen
+
+
+
+
+
## 2.4.2(2026-4-23)
**Web3:**
diff --git a/src/config/version.h b/src/config/version.h
index dbb9062..023eee9 100644
--- a/src/config/version.h
+++ b/src/config/version.h
@@ -7,7 +7,7 @@
#define SOFTWARE_VERSION_MAJOR 12
#define SOFTWARE_VERSION_MAJOR_OFFSET 10
#define SOFTWARE_VERSION_MINOR 4
-#define SOFTWARE_VERSION_BUILD 2
+#define SOFTWARE_VERSION_BUILD 4
#define SOFTWARE_VERSION_BETA 1
#define SOFTWARE_VERSION (SOFTWARE_VERSION_MAJOR * 10000 + SOFTWARE_VERSION_MINOR * 100 + SOFTWARE_VERSION_BUILD)
#ifdef WEB3_VERSION
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.