From 71e2281ddaae77a8ad889f9131af30ceb8cd0741 Mon Sep 17 00:00:00 2001 From: Xavier Chapron Date: Wed, 7 Feb 2024 10:42:50 +0100 Subject: [PATCH 1/2] standard_plugin.mk: Remove DISABLE_UI This is causing too many hurdles for too few perks. --- src_plugin_sdk/standard_plugin.mk | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src_plugin_sdk/standard_plugin.mk b/src_plugin_sdk/standard_plugin.mk index 5409d2939..f52c1327e 100644 --- a/src_plugin_sdk/standard_plugin.mk +++ b/src_plugin_sdk/standard_plugin.mk @@ -19,10 +19,6 @@ ifeq ($(BOLOS_SDK),) $(error Environment variable BOLOS_SDK is not set) endif -# Prevent compilation of BAGL/NBGL -# Has to be before any SDK include -DISABLE_UI = 1 - include $(BOLOS_SDK)/Makefile.defines APPVERSION ?= "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)" @@ -60,16 +56,4 @@ DISABLE_STANDARD_BAGL_UX_FLOW = 1 DISABLE_DEBUG_LEDGER_ASSERT = 1 DISABLE_DEBUG_THROW = 1 -# Required for PRINTFs to compile -ifeq ($(DEBUG),0) - DISABLE_STANDARD_SEPROXYHAL = 1 -endif - -# So the plugin can still access the necessary NBGL types and pass its icon to -# the Ethereum app -ifeq ($(TARGET_NAME),TARGET_STAX) - DEFINES += HAVE_NBGL - INCLUDES_PATH += $(BOLOS_SDK)/lib_nbgl/include $(BOLOS_SDK)/lib_ux_stax -endif - include $(BOLOS_SDK)/Makefile.standard_app From 5e382ea13c385d07dd9bf8dc6eb9bdc56f1bfcd4 Mon Sep 17 00:00:00 2001 From: Alexandre Paillier Date: Wed, 7 Feb 2024 10:56:24 +0100 Subject: [PATCH 2/2] Updated plugin SDK changelog file --- src_plugin_sdk/CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src_plugin_sdk/CHANGELOG.md b/src_plugin_sdk/CHANGELOG.md index 39e92abbc..90ead8d91 100644 --- a/src_plugin_sdk/CHANGELOG.md +++ b/src_plugin_sdk/CHANGELOG.md @@ -5,7 +5,13 @@ | :rotating_light: | Breaks build | | :warning: | Breaks compatibility with app | -## [latest](/) - 2024/02/02 +## [latest](/) - 2024/02/07 + +### Removed + +* UI disabler + +## [2250549](/../../commit/2250549) - 2024/02/02 ### Changed