Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gerhardol committed Jul 30, 2020
1 parent 606d1cd commit 2d56681
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
25 changes: 22 additions & 3 deletions app/assets/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,34 @@
</head>
<body>
<h1>What's new</h1>
<h2>v2.1.0.1</h2>
<h2>v2.2.0.0</h2>
<p>
<ul>
<li>#947 AndroidX and AppCompatActivity migration</li>
<li>Version changed to 2.2 for Play release, previous production is 2.1.0.0</li>
<li>#949 Play console crashe corrections</li>
<li>#948 Target Android 10, update permission handling
<br>Changes required to target Android 10 and prepare for Android 11/R, required to update the app in Play.
<ul>
<li> Use SDK 29 scooped storage for external files, Google is limiting the file system use from Android 10/11
<br>For FileSynchronizer, save exports to a subdirectory of Documents, similar to the previous defaults.
<br>For db import/export use hardcoded getExternalFilesDir() and let the user copy files.</li>
<li>Permissions for activity and background for Android 10
<br>If permissions are denied, give motivation and let the user try again
(unless "don't ask again" is ticked)
<br>Remove snackbar as it will not rerequest permissions if the user ticks "don't ask again".
Instead use a popup that asks the user to go to system settings,
without starting the workout. (Linking to system settings is not
recommended in the Google guidelines.)
</li>
</ul>
</li>
<li>#947 AndroidX and AppCompatActivity migration
<br>Internal change, support libraries replaced with Google's updated libraries</li>
</ul>
<h2>v2.1.0.0</h2>
<p>
<ul>
<li>Minor version number changed to 2.1 to prepare for Play release, previous production is 2.0.2.1</li>
<li>Minor version number changed to 2.1 for Play release, previous production is 2.0.2.1</li>
<li>#946 Play console feedback
<ul>
<li>Translations update: Czech cue, Romanian, Indonesian </li>
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ project.ext {
mockitoVersion = '2.3.7'

//The Git tag for the release must be identical for F-Droid
versionName = '2.1.0.1'
versionCode = 241
versionName = '2.2.0.0'
versionCode = 250
latestBaseVersionCode = 15000000

travisBuild = System.getenv("TRAVIS") == "true"
Expand Down

0 comments on commit 2d56681

Please sign in to comment.