From b314fe1896f550bcfb42127334325794285bfe0d Mon Sep 17 00:00:00 2001 From: Kaartic Sivaraam Date: Tue, 3 Oct 2023 10:20:21 +0530 Subject: [PATCH] Version v4.2.0 --- CHANGELOG.md | 14 ++++++++++++++ app/build.gradle | 5 +++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce8c3ef879..34820b8d4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Wikimedia Commons for Android +## v4.2.0 +- Dark mode colour improvements +- Enhancements done to address location metadata loss including the metadata loss that occurs in + latest Android versions +- Enhancements done to address the issue where uploads get stuck in queued state +- Fix the inability to upload via the in-app camera option +- Provide the ability to optionally include location metadata for in-app camera uploads in case the + device camera app does not provide location metadata +- Use geo location URL that works consistently across all map applications +- Fix crash when clicking on location target icon while trying to edit the location of an upload +- Fix crash that occurs randomly while returning to the app after leaving it in the background +- Fix crash in Sign up activity on Android version 5.0 and 5.1 +- Android 13 compatibility changes + ## v4.1.0 - Location of pictures uploaded via custom picture selector are now recognized - Improvements to the custom picture selector diff --git a/app/build.gradle b/app/build.gradle index 921a9fcd7c..fa856390d4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -173,8 +173,8 @@ android { defaultConfig { //applicationId 'fr.free.nrw.commons' - versionCode 1034 - versionName '4.1.0' + versionCode 1035 + versionName '4.2.0' setProperty("archivesBaseName", "app-commons-v$versionName-" + getBranchName()) minSdkVersion 21 @@ -223,6 +223,7 @@ android { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' testProguardFile 'test-proguard-rules.txt' + signingConfig signingConfigs.debug if (isRunningOnTravisAndIsNotPRBuild) { signingConfig signingConfigs.release }