Skip to content

Commit

Permalink
fix: replace firmware
Browse files Browse the repository at this point in the history
  • Loading branch information
originalix committed Dec 29, 2023
1 parent b9cd1ec commit e0f9443
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Binary file not shown.
Binary file not shown.
12 changes: 6 additions & 6 deletions src/hardware/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,15 @@
"required": false,
"version": [
3,
4,
6,
0
],
"url": "https://web.onekey-asset.com/hardware/mini/firmware/v3.4.0/mini.3.4.0-Stable-0917-2bbd01c.signed.bin",
"bootloaderResource": "https://common.onekey-asset.com/hw/legacy/bootloader/mini/2.0.0/mini-boot.2.0.0-0518-b860d10.signed.bin",
"bootloaderVersion": [
2,
0,
0
1
],
"bootloaderRelatedFirmwareVersion": [
3,
Expand All @@ -189,12 +189,12 @@
],
"fingerprint": "",
"changelog": {
"zh-CN": "### 🐞 问题修复\r\n- 修复本地化翻译问题\r\n- 修复 SUI dApp 网站连接问题\r\n- 修复 Eternl 钱包无法连接的问题\r\n- 修复 Near 链 0 金额的转账信息展示问题\r\n- 输入 Passphrase 时上下按键的方向与输入 PIN 码时相同\r\n- 修复 Fetch.ai 链转账的金额显示问题\r\n\r\n### 💎 改进\r\n- 优化钱包创建和导入流程\r\n- 取消 BTC 派生路径地址 index 索引的限制\r\n",
"en-US": "### 🐞 Bug Fixes\r\n- Fix localization translation issues\r\n- Fix SUI dApp connection issue\r\n- Fix the issue of unable to connect with Eternl wallet\r\n- Fix the display issue of Near chain zero-value token transfer\r\n- The direction of the up and down keys when entering a passphrase is the same as when entering a PIN code\r\n- Fix the display issue of Fetch.ai chain token transfer\r\n\r\n### 💎 Improvements\r\n- Optimize wallet creation and import process\r\n- Remove the address-index restriction of Bitcoin derivation path\r\n"
"zh-CN": "### 🐞 安全问题\r\n",
"en-US": "### 🐞 Bug Fixes\r\n- Security issues\r\n"
},
"bootloaderChangelog": {
"zh-CN": "### ✨ 新功能\r\n- 新的固件验签算法\r\n- 不再支持安装非官方签名的固件\r\n- 升级前的电量检测,低电量或未插电禁止升级固件\r\n- 释放更多存储空间\r\n",
"en-US": "### ✨ New Features\r\n- Add new firmware signature verification algorithm\r\n- No longer support installing firmware with unofficial signatures\r\n- Battery level checks before upgrade\r\n- Release more storage capacity\r\n"
"zh-CN": "### ✨ 安全问题\r\n",
"en-US": "### ✨ Security issues\r\n"
}
}
],
Expand Down
4 changes: 2 additions & 2 deletions src/hardware/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -349,12 +349,12 @@ class ServiceHardware {
let binary: Buffer;
if (selectedUploadType === 'firmware') {
binary = await window.desktopApi.readFileAsBuffer(
'mini.3.4.0-Stable-0917-2bbd01c.signed.bin'
'mini.3.6.0-Stable-1226-ff9efe5.signed.bin'
);
params.binary = binary;
} else if (selectedUploadType === 'bootloader') {
binary = await window.desktopApi.readFileAsBuffer(
'mini-boot.2.0.0-0518-b860d10.signed.bin'
'mini_boot_update_2.0.1.signed.bin'
);
params.binary = binary;
}
Expand Down

0 comments on commit e0f9443

Please sign in to comment.