Skip to content

Commit

Permalink
feat: Bump app version to 1.1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Ldoppea authored and zatteo committed Jan 31, 2024
1 parent 3b5d6db commit 07c3106
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 6 deletions.
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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


Expand All @@ -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


Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions ios/CozyReactNative/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.23</string>
<string>1.1.24</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -85,7 +85,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>0101232</string>
<string>0101240</string>
<key>FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED</key>
<true/>
<key>FirebaseDataCollectionDefaultEnabled</key>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 07c3106

Please sign in to comment.