Skip to content

Commit 4832404

Browse files
authored
ci(core): update the version of ubuntu to latest (#590)
* fix(core/i18n): optimize i18n text entries * fix(core): remove `address_index` position limit in derivation path * ci(core): update the version of ubuntu to latest
1 parent 0fd4e6b commit 4832404

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/build-classic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build-classic:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: "Checkout"

.github/workflows/build-mini.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build-mini:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: "Checkout"

.github/workflows/build-static.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
build-static:
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-latest
99
steps:
1010
- name: "Checkout"
1111
uses: actions/checkout@v4

.github/workflows/build-touch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build-touch:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111

1212
steps:
1313
- name: "Checkout"

core/src/apps/common/paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class PathSchema:
8787
REPLACEMENTS = {
8888
"account": "0-2147483647", # origin "0-100"
8989
"change": "0,1",
90-
"address_index": "0-1000000",
90+
"address_index": "0-2147483647", # origin "0-1000000"
9191
}
9292

9393
WILDCARD_RANGES = {

core/src/trezor/lvglui/i18n/keys.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
BUTTON__CANCEL = 6
1919
# Confirm
2020
BUTTON__CONFIRM = 7
21-
# Using a strong PIN to protects your wallet from unauthorized physical access
22-
# .
21+
# Using a strong PIN to protect your wallet from unauthorized physical access.
2322
CHECK__SETUP_SET_A_PIN__1 = 8
24-
# Keeping your PIN secured, be sure to store it separate from recovery phrase.
23+
# Keep your PIN secure, and be sure to store it separately from your recovery
24+
# phrase.
2525
CHECK__SETUP_SET_A_PIN__2 = 9
2626
# Set a PIN
2727
TITLE__SET_A_PIN = 10

core/src/trezor/lvglui/i18n/locales/en.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"Restore Wallet",
99
"Cancel",
1010
"Confirm",
11-
"Using a strong PIN to protects your wallet from unauthorized physical access.",
12-
"Keeping your PIN secured, be sure to store it separate from recovery phrase.",
11+
"Using a strong PIN to protect your wallet from unauthorized physical access.",
12+
"Keep your PIN secure, and be sure to store it separately from your recovery phrase.",
1313
"Set a PIN",
1414
"Enter New PIN",
1515
"Enter PIN Again",

0 commit comments

Comments
 (0)