diff --git a/CHANGELOG.md b/CHANGELOG.md index 44e1aeef1..eb10d4b0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,50 @@ +# 1.1.25 + +## ✨ Features + + +## 🐛 Bug Fixes + + +## 🔧 Tech + + # 1.1.24 ## ✨ Features +* Improve backup performances ([PR #1100](https://github.com/cozy/cozy-flagship-app/pull/1100), [PR #1114](https://github.com/cozy/cozy-flagship-app/pull/1114), [PR #1118](https://github.com/cozy/cozy-flagship-app/pull/1118), [PR #1124](https://github.com/cozy/cozy-flagship-app/pull/1124)) +* Implement mechanism to try CoachCO2 trip tracking on a free plan ([PR #1090](https://github.com/cozy/cozy-flagship-app/pull/1090) and [PR #1125](https://github.com/cozy/cozy-flagship-app/pull/1125)) +* CoachCO2 trips should now appear faster after the end of a trip ([PR #1120](https://github.com/cozy/cozy-flagship-app/pull/1120), [PR #1133](https://github.com/cozy/cozy-flagship-app/pull/1133), [PR #1140](https://github.com/cozy/cozy-flagship-app/pull/1140)) +* When clicking on "Send logs" in CoachCO2, the created email should now be autofilled with Cozy's support email ([PR #1121](https://github.com/cozy/cozy-flagship-app/pull/1121)) +* It is now possible to subscribe to a Cozy plan from the App ([PR #991](https://github.com/cozy/cozy-flagship-app/pull/991), [PR #1070](https://github.com/cozy/cozy-flagship-app/pull/1070) and [PR #1131](https://github.com/cozy/cozy-flagship-app/pull/1131), [PR #1143](https://github.com/cozy/cozy-flagship-app/pull/1143)) +* Allow a notification to restart the app ([PR #1145](https://github.com/cozy/cozy-flagship-app/pull/1145)) ## 🐛 Bug Fixes +* Improve backup's UI ([PR #1104](https://github.com/cozy/cozy-flagship-app/pull/1104)) +* CoachCO2 trip tracking toggle should now update correctly when activating tracking ([PR #1116](https://github.com/cozy/cozy-flagship-app/pull/1116)) +* CoachCO2 trip tracking should now have less impact on battery level ([PR #1119](https://github.com/cozy/cozy-flagship-app/pull/1119)) +* Fix a bug that prevented notifications to open the correct cozy-app in some scenario ([PR #1123](https://github.com/cozy/cozy-flagship-app/pull/1123) and [PR #1130](https://github.com/cozy/cozy-flagship-app/pull/1130)) +* Fix a bug that would show incorrect texts on iOS when a plural form is used ([PR #1129](https://github.com/cozy/cozy-flagship-app/pull/1129)) +* Improve Client Side Connectors stability ([PR #1089](https://github.com/cozy/cozy-flagship-app/pull/1089)) +* Fix bugs where splashscreen was not hidden or hidden to soon ([PR #1135](https://github.com/cozy/cozy-flagship-app/pull/1135), [PR #1139](https://github.com/cozy/cozy-flagship-app/pull/1139)) ## 🔧 Tech +* ReloadInterceptorWebView interceptions do not produce an error log anymore ([PR #1096](https://github.com/cozy/cozy-flagship-app/pull/1096)) +* Add foundations for sharing cozy files to other phone's apps ([PR #1105](https://github.com/cozy/cozy-flagship-app/pull/1105), [PR #1088](https://github.com/cozy/cozy-flagship-app/pull/1088), ([PR #1144](https://github.com/cozy/cozy-flagship-app/pull/1144))) +* Rework Flagship API to handle status bar and navigation bar colors ([PR #1082](https://github.com/cozy/cozy-flagship-app/pull/1082)) +* Rework Lock related screens ([PR #1092](https://github.com/cozy/cozy-flagship-app/pull/1092), [PR #1146](https://github.com/cozy/cozy-flagship-app/pull/1146)) +* Add support of navigator clipboard API ([PR #1141](https://github.com/cozy/cozy-flagship-app/pull/1141)) +* Fix Android build by forcing Android tools version ([PR #1136](https://github.com/cozy/cozy-flagship-app/pull/1136)) +* Improve documentation ([PR #1115](https://github.com/cozy/cozy-flagship-app/pull/1115), [PR #1132](https://github.com/cozy/cozy-flagship-app/pull/1132)) +* Update Sentry ([PR #1134](https://github.com/cozy/cozy-flagship-app/pull/1134)) # 1.1.23 +Android only release. + ## ✨ Features @@ -27,7 +61,6 @@ * Autofill email's recipient with Cozy's support email when sending CoachCO2 logs to support ([PR #1121](https://github.com/cozy/cozy-flagship-app/pull/1121)) - ## 🐛 Bug Fixes diff --git a/android/app/build.gradle b/android/app/build.gradle index 45fca1126..5c8d296a3 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -143,8 +143,8 @@ android { namespace = "io.cozy.flagship.mobile" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 101232 - versionName "1.1.23" + versionCode 101240 + versionName "1.1.24" multiDexEnabled true resValue "string", "build_config_package", "io.cozy.flagship.mobile" missingDimensionStrategy "store", "play" diff --git a/ios/CozyReactNative/Info.plist b/ios/CozyReactNative/Info.plist index 8df3f7243..0180590a5 100644 --- a/ios/CozyReactNative/Info.plist +++ b/ios/CozyReactNative/Info.plist @@ -60,7 +60,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.23 + 1.1.24 CFBundleSignature ???? CFBundleURLTypes @@ -85,7 +85,7 @@ CFBundleVersion - 0101232 + 0101240 FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED FirebaseDataCollectionDefaultEnabled diff --git a/package.json b/package.json index 9be10e88c..3dfee23be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cozy-react-native", - "version": "1.1.23", + "version": "1.1.24", "private": true, "scripts": { "android": "react-native run-android --variant=devDebug --main-activity=MainActivitybase",