diff --git a/Makefile b/Makefile index 28e8a97d..6f78bf20 100755 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ include $(BOLOS_SDK)/Makefile.defines APPNAME = "IOTA" APPVERSION_MAJOR = 0 -APPVERSION_MINOR = 2 +APPVERSION_MINOR = 3 APPVERSION_PATCH = 0 APPVERSION = $(APPVERSION_MAJOR).$(APPVERSION_MINOR).$(APPVERSION_PATCH) APP_LOAD_PARAMS = --path "44'/4218'" --appFlags 0x00 $(COMMON_LOAD_PARAMS) diff --git a/install_dev_env.sh b/install_dev_env.sh index b7f7c17c..e1603ba1 100755 --- a/install_dev_env.sh +++ b/install_dev_env.sh @@ -24,24 +24,6 @@ fi linux_id=`gawk -F= '/^ID=/{print $2}' /etc/os-release` linux_version_id=`gawk -F= '/^VERSION_ID=/{print $2}' /etc/os-release` -if [ ${linux_id} = 'debian' ]; -then - if [ ${linux_version_id} != '"9"' ]; - then - print_err "ERROR: This script was tested under Debian 9 (stretch) only! Exiting..." - exit 1 - fi -elif [ ${linux_id} = 'ubuntu' ]; -then - if ! [[ "${linux_version_id}" =~ ^('"16.04"'|'"16.10"'|'"17.04"'|'"17.10"'|'"18.04"')$ ]]; - then - print_err "ERROR: This script was tested under Ubuntu 16.04 till 18.04 only! Exiting..." - exit 1 - fi -else - print_err "ERROR: This script was created for Debian and Ubuntu only! Exiting..." - exit 1 -fi ## Variables BLUE_APP_IOTA_PY_VIRT_ENV=`realpath .pyenv`