From 29b620806b77e9673c5c28bfdbd2413c6714d365 Mon Sep 17 00:00:00 2001 From: Guntbert Reiter Date: Mon, 7 Sep 2020 19:10:32 +0200 Subject: [PATCH 1/3] Correct sentence in README (#1933) questions (not answers) get answers :-) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38e29828..33be1f5e 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The nightly build from master is [available on Google Play](https://play.google. ### Support -Check out our [FAQs](https://github.com/tuskyapp/faq), your answer may already be answered. +Check out our [FAQs](https://github.com/tuskyapp/faq), your question may already be answered. If you have any bug reports, feature requests or questions please open an issue or send us a toot at [Tusky@mastodon.social](https://mastodon.social/@Tusky)! For translating Tusky into your language, visit https://weblate.tusky.app/ From 30ed9a4d1cfc98d52f66275450fbc04f71e4db41 Mon Sep 17 00:00:00 2001 From: Konrad Pozniak Date: Fri, 21 May 2021 17:52:03 +0200 Subject: [PATCH 2/3] don't upscale images in caption dialog (#2165) * don't upscale images in caption dialog * don't upscale images in caption dialog --- .../tusky/components/compose/dialog/CaptionDialog.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/com/keylesspalace/tusky/components/compose/dialog/CaptionDialog.kt b/app/src/main/java/com/keylesspalace/tusky/components/compose/dialog/CaptionDialog.kt index e356cd3f..adc72cd3 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/compose/dialog/CaptionDialog.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/compose/dialog/CaptionDialog.kt @@ -31,6 +31,7 @@ import androidx.lifecycle.LifecycleOwner import androidx.lifecycle.LiveData import at.connyduck.sparkbutton.helpers.Utils import com.bumptech.glide.Glide +import com.bumptech.glide.load.resource.bitmap.DownsampleStrategy import com.bumptech.glide.request.target.CustomTarget import com.bumptech.glide.request.transition.Transition import com.github.chrisbanes.photoview.PhotoView @@ -97,10 +98,10 @@ fun T.makeCaptionDialog(existingDescription: String?, dialog.show() - // Load the image and manually set it into the ImageView because it doesn't have a fixed - // size. Maybe we should limit the size of CustomTarget + // Load the image and manually set it into the ImageView because it doesn't have a fixed size. Glide.with(this) .load(previewUri) + .downsample(DownsampleStrategy.CENTER_INSIDE) .into(object : CustomTarget(4096, 4096) { override fun onLoadCleared(placeholder: Drawable?) { imageView.setImageDrawable(placeholder) From a85568abdf83def8465b619b5d6e5be007430dd5 Mon Sep 17 00:00:00 2001 From: Conny Duck Date: Mon, 31 May 2021 14:25:19 +0200 Subject: [PATCH 3/3] Release 83 --- app/build.gradle | 4 ++-- fastlane/metadata/android/en-US/changelogs/83.txt | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/83.txt diff --git a/app/build.gradle b/app/build.gradle index 06b6a3ea..d61e1082 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -20,8 +20,8 @@ android { applicationId APP_ID minSdkVersion 21 targetSdkVersion 29 - versionCode 82 - versionName "15.0" + versionCode 83 + versionName "15.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true diff --git a/fastlane/metadata/android/en-US/changelogs/83.txt b/fastlane/metadata/android/en-US/changelogs/83.txt new file mode 100644 index 00000000..5eb77c2b --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/83.txt @@ -0,0 +1,3 @@ +Tusky v15.1 + +This release fixes a crash when captioning images