Skip to content

Commit dda4230

Browse files
Merge pull request #30 from LedgerHQ/tdj/apex_p_support
add Apex p support
2 parents 99d7871 + 573a322 commit dda4230

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.github/workflows/_reusable_build_with_submodule_injection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
compatible_devices: 'None'
3939

4040
build:
41-
name: Build application for NanoS, X, S+, and Stax
41+
name: Build application for Ledger devices
4242
needs: call_get_app_metadata
4343
strategy:
4444
fail-fast: false

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
app_repository: LedgerHQ/app-ethereum
1919
app_branch_name: develop
2020
upload_app_binaries_artifact: "ethereum_binaries"
21-
flags: "CAL_TEST_KEY=1 TRUSTED_NAME_TEST_KEY=1 SET_PLUGIN_TEST_KEY=1 NFT_TEST_KEY=1"
21+
flags: "CAL_TEST_KEY=1 TRUSTED_NAME_TEST_KEY=1 SET_PLUGIN_TEST_KEY=1 NFT_TEST_KEY=1 EIP7702_TEST_WHITELIST=1"
2222

2323
ragger_ethereum_tests:
2424
name: Run ragger tests using the reusable workflow

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@
55
| :rotating_light: | Breaks build |
66
| :warning: | Breaks compatibility with app |
77

8-
## [latest](/) - 2024/05/13
8+
## [latest](/) - 2025/09/09
9+
10+
### Added
11+
12+
* Apex support
13+
14+
15+
## [2ced76b](/../../commit/2ced76b) - 2024/05/13
916

1017
### Added
1118

standard_plugin.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,14 @@ ICON_NANOX = icons/nanox_app_$(NORMAL_NAME).gif
3535
ICON_NANOSP = $(ICON_NANOX)
3636
ICON_STAX = icons/stax_app_$(NORMAL_NAME).gif
3737
ICON_FLEX = icons/flex_app_$(NORMAL_NAME).gif
38+
ICON_APEX_P = icons/apex_app_$(NORMAL_NAME).png
3839

3940
ifeq ($(TARGET_NAME),$(filter $(TARGET_NAME),TARGET_STAX TARGET_FLEX))
4041
DEFINES += ICONGLYPH=C_stax_$(NORMAL_NAME)_64px
4142
DEFINES += ICONBITMAP=C_stax_$(NORMAL_NAME)_64px_bitmap
43+
else ifeq ($(TARGET_NAME),TARGET_APEX_P)
44+
DEFINES += ICONGLYPH=C_apex_$(NORMAL_NAME)_48px
45+
DEFINES += ICONBITMAP=C_apex_$(NORMAL_NAME)_48px_bitmap
4246
endif
4347

4448
CURVE_APP_LOAD_PARAMS = secp256k1

0 commit comments

Comments
 (0)