Skip to content

Commit

Permalink
v1.1.0 (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvzi committed Oct 19, 2023
1 parent f0dc01c commit 22901e9
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down Expand Up @@ -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"
}
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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">
<activity
android:name=".MainActivity"
android:exported="true"
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'com.android.application' version '8.1.2' apply false
id 'com.android.library' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.9.10' apply false
id 'com.jaredsburrows.license' version '0.9.3' apply false
}
17 changes: 17 additions & 0 deletions docs/.well-known/assetlinks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"relation":
[
"delegate_permission/common.handle_all_urls"
],
"target":
{
"namespace": "android_app",
"package_name": "com.github.cvzi.wallpaperexport",
"sha256_cert_fingerprints":
[
"33:4D:32:5A:41:E8:80:9D:D2:1A:E9:C5:40:2D:6D:63:7F:A9:4A:C5:61:A8:C9:69:02:19:4F:B3:37:EB:D8:D7"
]
}
}
]
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/5.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bugfix: Lock-screen export

0 comments on commit 22901e9

Please sign in to comment.