Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.0.2 #11

Merged
merged 2 commits into from
Jul 20, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
//1.00 = Version Code: 1 = Released 7-14-2016
//1.0.1 = Version Code: 2

versionCode 2
versionName "1.0.1"
versionCode 3
versionName "1.0.2"

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
Expand Down
Binary file modified app/src/main/assets/databases/mhgen.db.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class MonsterHunterDatabaseHelper extends SQLiteAssetHelper {
private static MonsterHunterDatabaseHelper mInstance = null;

private static final String DATABASE_NAME = "mhgen.db";
private static final int DATABASE_VERSION = 2;
private static final int DATABASE_VERSION = 3;

private final Context myContext;
private SQLiteDatabase myDataBase;
Expand Down
11 changes: 8 additions & 3 deletions app/src/main/res/xml/changelog_master.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>

<release version="1.0.2" versioncode="3">
<change>Added missing key quests</change>
<change>Fixed issue with quest list</change>
</release>

<release version="1.0.1" versioncode="2">
<change>Fix Subquest Rewards</change>
<change>Fix Monster Quest Bug</change>
<change>Add Alternate State Damages</change>
<change>Fixed subquest rewards</change>
<change>Fixed monster quest bug</change>
<change>Added alternate state damages</change>
</release>

<release version="1.0.0" versioncode="1">
Expand Down