- update 1.1.0

- update translations
This commit is contained in:
jannis 2019-08-25 13:49:53 +02:00
parent 393fd4aba9
commit b9278e0299
4 changed files with 17 additions and 3 deletions

View File

@ -35,8 +35,8 @@ android {
applicationId "de.tadris.fitness"
minSdkVersion 21
targetSdkVersion 28
versionCode 103
versionName "1.0.3"
versionCode 110
versionName "1.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {

View File

@ -22,7 +22,6 @@ package de.tadris.fitness.activity;
import android.Manifest;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Location;
@ -270,6 +269,7 @@ public class RecordWorkoutActivity extends FitoTrackActivity implements Location
.setMessage(R.string.noGpsMessage)
.setNegativeButton(R.string.cancel, (dialog, which) -> finish())
.setPositiveButton(R.string.enable, (dialog, which) -> startActivity(new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS)))
.setCancelable(false)
.create().show();
}

View File

@ -88,4 +88,10 @@
<string name="workoutTypeWalking">Gehen</string>
<string name="workout_add">Hinzufügen</string>
<string name="workouts">Workouts</string>
<string name="enable">Aktivieren</string>
<string name="height">Höhe</string>
<string name="noGpsTitle">GPS deaktiviert</string>
<string name="noGpsMessage">Bitte aktiviere GPS, damit dein Workout aufgezeichnet werden kann.</string>
<string name="workoutAscent">Aufstieg</string>
<string name="workoutDescent">Abstieg</string>
</resources>

View File

@ -0,0 +1,8 @@
New:
- Height measurement via GPS and pressure sensor
- Show height diagram
- Show dialog if GPS is disabled
Fix:
- Back-Button in Settings crashes on earlier Android versions (#20)
- Fix Unit system "Imperial with meters"