From 4b5a2b1033c189cf3c6d3515847eeaf7f0128f7f Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Thu, 5 Aug 2021 14:48:02 +0200 Subject: [PATCH 1/4] revert bsc icons --- icons/nanos_app_bsc.gif | Bin 71 -> 71 bytes icons/nanox_app_bsc.gif | Bin 68 -> 68 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/nanos_app_bsc.gif b/icons/nanos_app_bsc.gif index 4154097effcd90ae11b833c0f8c061eaa26aec89..290d658dcb09bbe43d53f751de090c7fd3444af5 100644 GIT binary patch delta 25 gcmZ>F7k2k_v#?AQU=UzvU|{(F|33o*!$e^d08wNHzW@LL delta 25 fcmZ>F7k2k_v#?AQU=U#Vz{mgu|NsA=C~N`%O}Gaz diff --git a/icons/nanox_app_bsc.gif b/icons/nanox_app_bsc.gif index 0f3cc961e07dcd41e1db4f7b83643acf40aa6d2a..36b0a8264bc73689e914503e98335053bc0267ae 100644 GIT binary patch delta 25 fcmZ>95q9@z{mgu|NsA=C~OD-Oy&n8 delta 25 gcmZ>95q9@z`*eT|9=JshKa(409DclA^-pY From 48c6536d9346710211031579757235c6d92593cd Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Fri, 6 Aug 2021 12:34:26 +0200 Subject: [PATCH 2/4] Fix theta tokens --- src/main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index ca26b41..48a91d7 100644 --- a/src/main.c +++ b/src/main.c @@ -351,8 +351,9 @@ tokenDefinition_t *getKnownToken(uint8_t *contractAddress) { break; case CHAIN_KIND_FLARE: currentToken = (tokenDefinition_t *) PIC(&TOKENS_FLARE[i]); - break case CHAIN_KIND_THETA : currentToken = - (tokenDefinition_t *) PIC(&TOKENS_THETA[i]); + break; + case CHAIN_KIND_THETA: + currentToken = (tokenDefinition_t *) PIC(&TOKENS_THETA[i]); break; case CHAIN_KIND_BSC: currentToken = (tokenDefinition_t *) PIC(&TOKENS_BSC[i]); From 0c1eece11807c05e32ba4a27a62e08533058c43e Mon Sep 17 00:00:00 2001 From: pscott Date: Fri, 6 Aug 2021 15:29:41 +0200 Subject: [PATCH 3/4] Update CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ba57b9..7ad5dd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.9.1](https://github.com/ledgerhq/app-ethereum/compare/1.8.8...1.9.1) - 2021-8-06 + +### Added + +- Fix BSC app icons. +- Fix tokens for Theta app. + ## [1.9.0](https://github.com/ledgerhq/app-ethereum/compare/1.8.8...1.9.0) - 2021-8-05 ### Added From 0d1d50857da7af371dd15e747b00013e91ceac64 Mon Sep 17 00:00:00 2001 From: pscott Date: Fri, 6 Aug 2021 15:30:13 +0200 Subject: [PATCH 4/4] Bump version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b88b48..61842ef 100755 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ APP_LOAD_PARAMS += --path "1517992542'/1101353413'" APPVERSION_M=1 APPVERSION_N=9 -APPVERSION_P=0 +APPVERSION_P=1 APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) APP_LOAD_FLAGS= --appFlags 0x240 --dep Ethereum:$(APPVERSION)