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 diff --git a/Makefile b/Makefile index ee6304a..0180681 100755 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ APP_LOAD_PARAMS += --path "1517992542'/1101353413'" APPVERSION_M=1 APPVERSION_N=9 APPVERSION_P=2 -APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)-remove_v_check +APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P) APP_LOAD_FLAGS= --appFlags 0x240 --dep Ethereum:$(APPVERSION) ifeq ($(CHAIN),) diff --git a/icons/nanos_app_bsc.gif b/icons/nanos_app_bsc.gif index 4154097..290d658 100644 Binary files a/icons/nanos_app_bsc.gif and b/icons/nanos_app_bsc.gif differ diff --git a/icons/nanox_app_bsc.gif b/icons/nanox_app_bsc.gif index 0f3cc96..36b0a82 100644 Binary files a/icons/nanox_app_bsc.gif and b/icons/nanox_app_bsc.gif differ 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]);