diff --git a/lib/store/authentication_store.dart b/lib/store/authentication_store.dart index b734d7acb0..815b1ed602 100644 --- a/lib/store/authentication_store.dart +++ b/lib/store/authentication_store.dart @@ -4,7 +4,7 @@ part 'authentication_store.g.dart'; class AuthenticationStore = AuthenticationStoreBase with _$AuthenticationStore; -enum AuthenticationState { uninitialized, installed, allowed } +enum AuthenticationState { uninitialized, installed, allowed, _reset } abstract class AuthenticationStoreBase with Store { AuthenticationStoreBase() : state = AuthenticationState.uninitialized; @@ -13,8 +13,14 @@ abstract class AuthenticationStoreBase with Store { AuthenticationState state; @action - void installed() => state = AuthenticationState.installed; + void installed() { + state = AuthenticationState._reset; + state = AuthenticationState.installed; + } @action - void allowed() => state = AuthenticationState.allowed; + void allowed() { + state = AuthenticationState._reset; + state = AuthenticationState.allowed; + } } diff --git a/pubspec_base.yaml b/pubspec_base.yaml index 9eccf4560c..61282761c8 100644 --- a/pubspec_base.yaml +++ b/pubspec_base.yaml @@ -22,8 +22,8 @@ dependencies: barcode_scan2: ^4.2.1 http: ^0.13.4 path_provider: ^2.0.11 - mobx: 2.0.7+4 - flutter_mobx: ^2.0.6+1 + mobx: ^2.1.4 + flutter_mobx: ^2.0.6+5 flutter_slidable: ^2.0.0 share_plus: ^4.0.10 # date_range_picker: ^1.0.6 @@ -73,7 +73,7 @@ dev_dependencies: flutter_test: sdk: flutter build_runner: ^2.1.11 - mobx_codegen: ^2.0.7 + mobx_codegen: ^2.1.1 build_resolvers: ^2.0.9 hive_generator: ^1.1.3 flutter_launcher_icons: ^0.9.3 diff --git a/scripts/android/app_env.sh b/scripts/android/app_env.sh index 634df327a0..2a5858ab6d 100644 --- a/scripts/android/app_env.sh +++ b/scripts/android/app_env.sh @@ -15,13 +15,13 @@ APP_ANDROID_TYPE=$1 MONERO_COM_NAME="Monero.com" MONERO_COM_VERSION="1.2.8" -MONERO_COM_BUILD_NUMBER=39 +MONERO_COM_BUILD_NUMBER=40 MONERO_COM_BUNDLE_ID="com.monero.app" MONERO_COM_PACKAGE="com.monero.app" CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_VERSION="4.5.9" -CAKEWALLET_BUILD_NUMBER=145 +CAKEWALLET_BUILD_NUMBER=146 CAKEWALLET_BUNDLE_ID="com.cakewallet.cake_wallet" CAKEWALLET_PACKAGE="com.cakewallet.cake_wallet" diff --git a/scripts/ios/app_env.sh b/scripts/ios/app_env.sh index a696d81a35..fbdfa33fab 100644 --- a/scripts/ios/app_env.sh +++ b/scripts/ios/app_env.sh @@ -14,12 +14,12 @@ APP_IOS_TYPE=$1 MONERO_COM_NAME="Monero.com" MONERO_COM_VERSION="1.2.8" -MONERO_COM_BUILD_NUMBER=37 +MONERO_COM_BUILD_NUMBER=38 MONERO_COM_BUNDLE_ID="com.cakewallet.monero" CAKEWALLET_NAME="Cake Wallet" CAKEWALLET_VERSION="4.5.9" -CAKEWALLET_BUILD_NUMBER=141 +CAKEWALLET_BUILD_NUMBER=142 CAKEWALLET_BUNDLE_ID="com.fotolockr.cakewallet" HAVEN_NAME="Haven"