Skip to content

Commit

Permalink
v2.11.3 (125)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvzi committed Dec 22, 2024
1 parent bf6dfd5 commit 7b1e6cf
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)'
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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)
}
}

Expand Down
12 changes: 12 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/125.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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" }
Expand Down

0 comments on commit 7b1e6cf

Please sign in to comment.