Mercurial > cgi-bin > hgweb.cgi > SimpleResizer
changeset 46:8205f3c17500 default tip
Tweak messages a little.
author | David Barts <n5jrn@me.com> |
---|---|
date | Wed, 14 Apr 2021 08:18:23 -0700 |
parents | 44848342c321 |
children | |
files | app/build.gradle app/src/main/assets/about_promo.html app/src/main/java/com/bartsent/simpleresizer/EditImage.kt |
diffstat | 3 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/app/build.gradle Mon Apr 12 07:07:39 2021 -0700 +++ b/app/build.gradle Wed Apr 14 08:18:23 2021 -0700 @@ -11,8 +11,8 @@ applicationId "com.bartsent.simpleresizer" minSdkVersion 23 targetSdkVersion 30 - versionCode 5 - versionName "1.04" + versionCode 6 + versionName "1.05" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" }
--- a/app/src/main/assets/about_promo.html Mon Apr 12 07:07:39 2021 -0700 +++ b/app/src/main/assets/about_promo.html Wed Apr 14 08:18:23 2021 -0700 @@ -1,2 +1,5 @@ <!-- html fragment containing a promo message --> -<p><a href="https://notyouraveragetechie.com/">Hire me</a>?</p> \ No newline at end of file +<p> + <a href="https://www.paypal.com/donate?hosted_button_id=L55GPBCK6DBCA">Support Me on PayPal</a> | + <a href="https://notyouraveragetechie.com/">Hire Me</a> +</p>
--- a/app/src/main/java/com/bartsent/simpleresizer/EditImage.kt Mon Apr 12 07:07:39 2021 -0700 +++ b/app/src/main/java/com/bartsent/simpleresizer/EditImage.kt Wed Apr 14 08:18:23 2021 -0700 @@ -446,7 +446,7 @@ val quality = maxOf(0, minOf(100, PreferenceManager.getDefaultSharedPreferences(applicationContext).getInt( "jpeg_quality", 85))) - Log.d("EditImage", "saving, jpeg_quality = $quality") + // Log.d("EditImage", "saving, jpeg_quality = $quality") stream.use { if (!image.compress(Bitmap.CompressFormat.JPEG, quality, it)) { throw IOException(getString(R.string.error_save_bitmap))