diff --git a/CHANGELOG.md b/CHANGELOG.md index fdae3eb0..c646f5ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.11.3 +* Dependencies updated + ## 2.11.2 * Restore floating button position periodically [#562](https://github.com/cvzi/ScreenshotTile/issues/562) * Update translations from crowdin diff --git a/app/build.gradle b/app/build.gradle index 5c474732..ea24bc01 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -26,8 +26,8 @@ android { compileSdk libs.versions.sdk.compile.get().toInteger() targetSdk libs.versions.sdk.target.get().toInteger() - versionCode 124 - versionName '2.11.2' + versionCode 125 + versionName '2.11.3' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' buildConfigField 'com.github.cvzi.screenshottile.MutableBoolean', 'TESTING_MODE', 'new com.github.cvzi.screenshottile.MutableBoolean(false)' diff --git a/build.gradle b/build.gradle index 36194a26..66330072 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,7 @@ buildscript { dependencies { - classpath("org.bouncycastle:bcutil-jdk18on:1.79") + // Necessary for sonarqube v6 https://issuetracker.google.com/issues/380600747 + classpath(libs.bcutil.jdk18on) } } diff --git a/fastlane/metadata/android/en-US/changelogs/125.txt b/fastlane/metadata/android/en-US/changelogs/125.txt new file mode 100644 index 00000000..13703817 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/125.txt @@ -0,0 +1,12 @@ +v2.11.3 +* Dependencies and libraries updated +v2.11.2 +* Work-around for distorted screenshots in assistant mode in Android 10 and 11 +* Option to disable floating button when quick settings are pulled down +v2.10.0 +* Select apps where floating button is automatically shown/hidden +v2.9.0 +* Separate floating button position for landscape and portrait orientation +* Option to disable floating button on lockscreen +* Option to disable floating button in portrait/landscape orientation +* Fix cropping on Android 14 diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index dbb81f10..8373535a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,6 +2,7 @@ agp = "8.7.3" annotation = "1.9.1" appcompat = "1.7.0" +bcutilJdk18on = "1.79" cardview = "1.0.0" constraintlayout = "2.2.0" core = "1.6.1" @@ -27,6 +28,7 @@ viewpager = "1.1.0" [libraries] annotation = { module = "androidx.annotation:annotation", version.ref = "annotation" } appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" } +bcutil-jdk18on = { module = "org.bouncycastle:bcutil-jdk18on", version.ref = "bcutilJdk18on" } cardview = { module = "androidx.cardview:cardview", version.ref = "cardview" } constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" } core = { module = "androidx.test:core", version.ref = "core" }