1.2010b release

This commit is contained in:
M66B 2022-11-25 20:47:21 +01:00
parent c34a18b20c
commit 155ed8d698
5 changed files with 531612 additions and 2 deletions

View File

@ -4,7 +4,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'de.undercouch.download'
def getVersionCode = { -> return 2010 }
def getRevision = { -> return "a" }
def getRevision = { -> return "b" }
def getReleaseName = { -> return "Ostromia" }
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1504,7 +1504,7 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
boolean updates = prefs.getBoolean("updates", true);
boolean beta = prefs.getBoolean("beta", false);
boolean beta = prefs.getBoolean("beta", false) && false;
boolean weekly = prefs.getBoolean("weekly", Helper.hasPlayStore(this));
long last_update_check = prefs.getLong("last_update_check", 0);

View File

@ -622,6 +622,7 @@
android:layout_marginStart="12dp"
android:layout_marginTop="12dp"
android:text="@string/title_advanced_beta"
android:visibility="gone"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/swWeekly"