Skip to content

Commit

Permalink
Bump to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
steve1316 committed Nov 18, 2022
1 parent d097b43 commit 3e79d25
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
16 changes: 8 additions & 8 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ plugins {
*/

project.ext.react = [
enableHermes: false, // clean and rebuild if changing
bundleInDebug: true,
enableHermes : false, // clean and rebuild if changing
bundleInDebug : true,
bundleInRelease: true
]

Expand Down Expand Up @@ -141,8 +141,8 @@ android {
applicationId "com.steve1316.masterduel_android_decklist_importer"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 5
versionName "1.4.0"
versionCode 6
versionName "1.5.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -221,16 +221,16 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni'
exclude group: 'com.facebook.fbjni'
}

debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
exclude group:'com.squareup.okhttp3', module:'okhttp'
exclude group: 'com.facebook.flipper'
exclude group: 'com.squareup.okhttp3', module: 'okhttp'
}

debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
exclude group:'com.facebook.flipper'
exclude group: 'com.facebook.flipper'
}

if (enableHermes) {
Expand Down
18 changes: 14 additions & 4 deletions android/app/update.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
<AppUpdater>
<update>
<latestVersion>1.4.0</latestVersion>
<latestVersion>1.5.0</latestVersion>
<url>https://github.com/steve1316/masterduel-android-decklist-importer/releases</url>
<releaseNotes>
v1.4.0 - Changelog
v1.5.0 - Changelog

New
---
- Update data up to the Battle Trajectory selection pack.

Changed
---
- Updated data for the new selection pack Cosmic Ocean released on 10/11/2022.
- Reduced delay after a tap.
- Lower font size to 8px for the MessageLog component.
- Brought over changes and improvements from GIS project.
- Various changes for log messages.
- Reduce delay before beginning operations by 1 second.

Fixed
---
- Fix AccessibilityService not waiting for the actual gesture to finish.

</releaseNotes>
</update>
Expand Down

0 comments on commit 3e79d25

Please sign in to comment.