Skip to content

Commit

Permalink
Release 4.1.3 (112)
Browse files Browse the repository at this point in the history
  • Loading branch information
devgianlu committed Aug 18, 2020
1 parent 7ce18eb commit b3cbe64
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.1.3] - 18-08-2020
### Fixed
- Fixed app crashing on startup (again)


## [4.1.2] - 18-08-2020
### Fixed
- Fixed app crashing on startup
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
applicationId "com.gianlu.pretendyourexyzzy"
minSdkVersion 21
targetSdkVersion 29
versionCode 111
versionName "4.1.2"
versionCode 112
versionName "4.1.3"
}

if (isTravis) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public final class CustomDecksDatabase extends SQLiteOpenHelper {
private static CustomDecksDatabase instance;

private CustomDecksDatabase(@Nullable Context context) {
super(context, "custom_decks.db", null, 9);
super(context, "custom_decks.db", null, 10);
}

@NonNull
Expand Down Expand Up @@ -98,6 +98,7 @@ public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
case 6:
case 7:
case 8:
case 9:
db.execSQL("CREATE TABLE IF NOT EXISTS cr_cast_decks (name TEXT NOT NULL, watermark TEXT NOT NULL UNIQUE, description TEXT NOT NULL, lang TEXT NOT NULL, private INTEGER NOT NULL, state INTEGER NOT NULL, created INTEGER NOT NULL, whites_count INTEGER NOT NULL, blacks_count INTEGER NOT NULL, lastUsed INTEGER NOT NULL)");
}

Expand Down

0 comments on commit b3cbe64

Please sign in to comment.