From 22901e91dc04d402cc47f1f691dfb8c492827ce4 Mon Sep 17 00:00:00 2001 From: cvzi Date: Thu, 19 Oct 2023 19:42:22 +0200 Subject: [PATCH] v1.1.0 (5) --- .idea/deploymentTargetDropDown.xml | 2 +- .idea/misc.xml | 1 - CHANGELOG.md | 5 +++++ app/build.gradle | 8 ++++---- app/src/main/AndroidManifest.xml | 3 ++- build.gradle | 4 ++-- docs/.well-known/assetlinks.json | 17 +++++++++++++++++ .../metadata/android/en-US/changelogs/5.txt | 1 + 8 files changed, 32 insertions(+), 9 deletions(-) create mode 100644 docs/.well-known/assetlinks.json create mode 100644 fastlane/metadata/android/en-US/changelogs/5.txt diff --git a/.idea/deploymentTargetDropDown.xml b/.idea/deploymentTargetDropDown.xml index a195ec5..397a355 100644 --- a/.idea/deploymentTargetDropDown.xml +++ b/.idea/deploymentTargetDropDown.xml @@ -12,6 +12,6 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index cd7974c..25b9e42 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,3 @@ - diff --git a/CHANGELOG.md b/CHANGELOG.md index d5369d5..96ba3c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # WallpaperExport Changelog +## 1.1.0 +* Fix exporting lock-screen wallpaper [#13](https://github.com/cvzi/WallpaperExport/issues/13) +* Allow drag and drop for multi-window use +* Added Translation + ## 1.0.3 * Refactor Kotlin code * Update gradle and dependencies diff --git a/app/build.gradle b/app/build.gradle index 14ca31b..565674b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,9 +11,9 @@ android { defaultConfig { applicationId "com.github.cvzi.wallpaperexport" minSdk 28 - targetSdk 33 - versionCode 4 - versionName "1.0.3" + targetSdk 34 + versionCode 5 + versionName "1.1.0" } if (project.hasProperty("keystore")) { @@ -72,7 +72,7 @@ android { dependencies { implementation 'androidx.core:core-ktx:1.12.0' implementation 'androidx.appcompat:appcompat:1.6.1' - implementation 'com.google.android.material:material:1.9.0' + implementation 'com.google.android.material:material:1.10.0' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2" } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 5c8ce99..b308f2a 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -53,9 +53,10 @@ android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" + android:localeConfig="@xml/locales_config" android:supportsRtl="true" android:theme="@style/Theme.WallpaperExport" - tools:targetApi="31"> + tools:targetApi="tiramisu">