From 0444bbe8eb17ed9df2efe58b76de79e79e662e8f Mon Sep 17 00:00:00 2001 From: cvzi Date: Wed, 5 Apr 2023 11:19:34 +0200 Subject: [PATCH] Prepare for v2.2.3 (96) --- CHANGELOG.md | 3 +++ app/build.gradle | 16 ++++++++-------- .../metadata/android/en-US/changelogs/96.txt | 4 ++++ 3 files changed, 15 insertions(+), 8 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/96.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index f1c1a05da..d0538ba22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.2.3 +* Complete language list for setting per-app language + ## 2.2.2 * Minor bugfixes diff --git a/app/build.gradle b/app/build.gradle index 8c6695b3c..15dff4fb6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -23,8 +23,8 @@ android { applicationId 'com.github.cvzi.screenshottile' minSdkVersion 24 targetSdkVersion 33 - versionCode 95 - versionName '2.2.2' + versionCode 96 + versionName '2.2.3' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' buildConfigField "com.github.cvzi.screenshottile.MutableBoolean", "TESTING_MODE", "new com.github.cvzi.screenshottile.MutableBoolean(false)" } @@ -82,24 +82,24 @@ dependencies { implementation platform('org.jetbrains.kotlin:kotlin-bom:1.8.20') implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4' implementation 'androidx.annotation:annotation:1.6.0' - implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation 'androidx.viewpager:viewpager:1.0.0' implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.cardview:cardview:1.0.0' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1' implementation 'androidx.preference:preference-ktx:1.2.0' - implementation 'com.google.android.material:material:1.8.0' - implementation 'androidx.cardview:cardview:1.0.0' + implementation 'androidx.viewpager:viewpager:1.0.0' implementation 'com.burhanrashid52:photoeditor:3.0.0' + implementation 'com.google.android.material:material:1.8.0' // Testing-only dependencies androidTestImplementation 'androidx.test:core:1.5.0' androidTestImplementation 'androidx.test:core-ktx:1.5.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.5.1' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.5' androidTestImplementation 'androidx.test:rules:1.5.0' androidTestImplementation 'androidx.test:runner:1.5.2' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' - androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.5.1' testImplementation 'junit:junit:4.13.2' testImplementation 'org.robolectric:robolectric:4.9.2' diff --git a/fastlane/metadata/android/en-US/changelogs/96.txt b/fastlane/metadata/android/en-US/changelogs/96.txt new file mode 100644 index 000000000..b68044a6d --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/96.txt @@ -0,0 +1,4 @@ +* Option to prevent screenshots when phone is locked +* Option to override original file in photo editor +* Landscape screenshots are rotated in photo editor +* Minor bugfixes \ No newline at end of file