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 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