Skip to content

Commit

Permalink
Update version to 1.19
Browse files Browse the repository at this point in the history
This update includes the cards from 'The Anarch Unbound' expansion.
Also includes improvements in the 'Filters Help' menu text. Thanks (@GiottoVerducci)
  • Loading branch information
franciscojunior committed Jan 31, 2016
1 parent 24cc689 commit 02d28f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vampiDroid/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest package="name.vampidroid" xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="18" android:versionName="1.18">
android:versionCode="19" android:versionName="1.19">
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:theme="@style/Theme.VampiDroid"
android:logo="@drawable/ic_launcher" android:name="VampiDroidApplication">
<activity android:label="@string/app_name" android:name=".VampiDroid"
Expand Down
Binary file modified vampiDroid/src/main/assets/VampiDroid.mp3
Binary file not shown.
5 changes: 2 additions & 3 deletions vampiDroid/src/main/java/name/vampidroid/DatabaseHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ public class DatabaseHelper {
public static final String VAMPIDROID_DB = "VampiDroid.db";
public static final String VAMPIDROID_UPDATE_DB = "VampiDroid.update.db";
public static final String KEY_DATABASE_VERSION = "database_version";
public static final int DATABASE_VERSION = 4;
public static final int DATABASE_VERSION = 5;

private static final int DATABASE_VERSION_UNALIGNED_UPDATE = 4;

public static final String[] STRING_ARRAY_NAME_DISCIPLINES_CAPACITY_INITIALCARDTEXT = new String[] { "Name",
"Disciplines", "Capacity", "InitialCardText" };
Expand Down Expand Up @@ -193,7 +192,7 @@ public static SQLiteDatabase getDatabase() {

DATABASE.execSQL("PRAGMA case_sensitive_like = true;");

if (databaseVersion < DATABASE_VERSION_UNALIGNED_UPDATE) {
if (databaseVersion != DATABASE_VERSION) {

Log.d(TAG, "Starting database update...");

Expand Down
6 changes: 6 additions & 0 deletions vampiDroid/src/main/res/layout/changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ android:layout_height="fill_parent">
android:textStyle="bold"
android:textColor="#ffffff" />
<TextView android:text="\n
v1.19 - 2016-01-31: \n
\t * Updated cards database to 'The Anarch Unbound' expansion! \n
\t * Updated 'Filters Help' text. (@GiottoVerducci) \n
\n \n \n
v1.18 - 2015-04-08: \n
\t * Fixed bug using the dis+ search filter. \n
\t * Added filter by group (eg. g234). \n
Expand Down

0 comments on commit 02d28f5

Please sign in to comment.