diff --git a/.github/workflows/build-classic.yml b/.github/workflows/build-classic.yml index fc8c8287f..412a770e7 100644 --- a/.github/workflows/build-classic.yml +++ b/.github/workflows/build-classic.yml @@ -7,7 +7,7 @@ on: jobs: build-classic: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: "Checkout" diff --git a/.github/workflows/build-mini.yml b/.github/workflows/build-mini.yml index c16ec3789..a019e3d74 100644 --- a/.github/workflows/build-mini.yml +++ b/.github/workflows/build-mini.yml @@ -7,7 +7,7 @@ on: jobs: build-mini: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: "Checkout" diff --git a/.github/workflows/build-static.yml b/.github/workflows/build-static.yml index 8518b332f..358b322c9 100644 --- a/.github/workflows/build-static.yml +++ b/.github/workflows/build-static.yml @@ -5,7 +5,7 @@ on: jobs: build-static: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: "Checkout" uses: actions/checkout@v4 diff --git a/.github/workflows/build-touch.yml b/.github/workflows/build-touch.yml index 51d7cb876..fbce0f5bf 100644 --- a/.github/workflows/build-touch.yml +++ b/.github/workflows/build-touch.yml @@ -7,7 +7,7 @@ on: jobs: build-touch: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: "Checkout" diff --git a/core/src/apps/common/paths.py b/core/src/apps/common/paths.py index 77c880e75..571b36d08 100644 --- a/core/src/apps/common/paths.py +++ b/core/src/apps/common/paths.py @@ -87,7 +87,7 @@ class PathSchema: REPLACEMENTS = { "account": "0-2147483647", # origin "0-100" "change": "0,1", - "address_index": "0-1000000", + "address_index": "0-2147483647", # origin "0-1000000" } WILDCARD_RANGES = { diff --git a/core/src/trezor/lvglui/i18n/keys.py b/core/src/trezor/lvglui/i18n/keys.py index ad6de5335..75bcbc34a 100644 --- a/core/src/trezor/lvglui/i18n/keys.py +++ b/core/src/trezor/lvglui/i18n/keys.py @@ -18,10 +18,10 @@ BUTTON__CANCEL = 6 # Confirm BUTTON__CONFIRM = 7 -# Using a strong PIN to protects your wallet from unauthorized physical access -# . +# Using a strong PIN to protect your wallet from unauthorized physical access. CHECK__SETUP_SET_A_PIN__1 = 8 -# Keeping your PIN secured, be sure to store it separate from recovery phrase. +# Keep your PIN secure, and be sure to store it separately from your recovery +# phrase. CHECK__SETUP_SET_A_PIN__2 = 9 # Set a PIN TITLE__SET_A_PIN = 10 diff --git a/core/src/trezor/lvglui/i18n/locales/en.py b/core/src/trezor/lvglui/i18n/locales/en.py index f066f1064..babd788cb 100644 --- a/core/src/trezor/lvglui/i18n/locales/en.py +++ b/core/src/trezor/lvglui/i18n/locales/en.py @@ -8,8 +8,8 @@ "Restore Wallet", "Cancel", "Confirm", - "Using a strong PIN to protects your wallet from unauthorized physical access.", - "Keeping your PIN secured, be sure to store it separate from recovery phrase.", + "Using a strong PIN to protect your wallet from unauthorized physical access.", + "Keep your PIN secure, and be sure to store it separately from your recovery phrase.", "Set a PIN", "Enter New PIN", "Enter PIN Again",