diff --git a/mobile/build.gradle b/mobile/build.gradle index d425ff448..3af169a94 100644 --- a/mobile/build.gradle +++ b/mobile/build.gradle @@ -81,8 +81,8 @@ android { applicationId "com.gelakinetic.mtgfam" minSdkVersion 15 targetSdkVersion 26 - versionCode 52 - versionName "3.4.5" + versionCode 53 + versionName "3.4.6" vectorDrawables.useSupportLibrary = true testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } diff --git a/mobile/src/main/java/com/gelakinetic/mtgfam/FamiliarActivity.java b/mobile/src/main/java/com/gelakinetic/mtgfam/FamiliarActivity.java index bf0021d6b..a63751249 100644 --- a/mobile/src/main/java/com/gelakinetic/mtgfam/FamiliarActivity.java +++ b/mobile/src/main/java/com/gelakinetic/mtgfam/FamiliarActivity.java @@ -737,7 +737,8 @@ public void onDrawerSlide(View drawerView, float slideOffset) { int lastVersion = PreferenceAdapter.getLastVersion(this); if (pInfo.versionCode != lastVersion && !(lastVersion == 50 && pInfo.versionCode == 51) && // Don't show 50 -> 51, it was just a quick bugfix release - !(lastVersion == 51 && pInfo.versionCode == 52)) { // Don't show 51 -> 52, it was just a quick bugfix release + !(lastVersion == 51 && pInfo.versionCode == 52) && // Don't show 51 -> 52, it was just a quick bugfix release + !(lastVersion == 52 && pInfo.versionCode == 53)) { // Don't show 52 -> 53, it was just a quick bugfix release /* Clear the spice cache on upgrade. This way, no cached values w/o foil prices * will exist*/ try {