addresses issue #84 (Start and stop date and time are the same)
This commit is contained in:
parent
026916b0d0
commit
420c18082c
4 changed files with 13 additions and 5 deletions
|
@ -27,6 +27,8 @@ Norwegian version: [comradekingu](https://github.com/comradekingu) | [weblate ve
|
|||
|
||||
Portuguese (Brazilian) version: [Ivan A.](https://github.com/iraamaro) | [weblate version history](https://hosted.weblate.org/changes/?lang=pt_BR&project=trackbook)
|
||||
|
||||
Turkish version: [Oğuz Ersen](https://hosted.weblate.org/user/ersen/) | [weblate version history](https://hosted.weblate.org/changes/?lang=tr&project=trackbook)
|
||||
|
||||
### Testing
|
||||
Thanks for finding all those bugs: [collectorgeneral](https://github.com/collectorgeneral), [RJH](https://github.com/Hob111)
|
||||
|
||||
|
|
|
@ -10,9 +10,9 @@ android {
|
|||
applicationId 'org.y20k.trackbook'
|
||||
minSdkVersion 25
|
||||
targetSdkVersion 30
|
||||
versionCode 44
|
||||
versionName '2.0.7'
|
||||
resConfigs "en", "da", "de", "fr", "hr", "id", "it", "ja", "nb-rNO", "nl", "pt-rBR", "sv", "zh-rCN"
|
||||
versionCode 45
|
||||
versionName '2.0.8'
|
||||
resConfigs "en", "da", "de", "fr", "hr", "id", "it", "ja", "nb-rNO", "nl", "pt-rBR", "sv", "tr", "zh-rCN"
|
||||
}
|
||||
|
||||
kotlinOptions {
|
||||
|
@ -57,7 +57,7 @@ dependencies {
|
|||
|
||||
// AndroidX
|
||||
implementation 'androidx.appcompat:appcompat:1.2.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
|
||||
implementation 'androidx.core:core-ktx:1.3.2'
|
||||
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
|
||||
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
|
||||
|
|
|
@ -202,7 +202,7 @@ data class TrackFragmentLayoutHolder(private var context: Context, private var m
|
|||
durationView.text = DateTimeHelper.convertToReadableTime(context, track.duration)
|
||||
velocityView.text = LengthUnitHelper.convertToVelocityString(track.duration, track.recordingPaused, track.length, useImperialUnits)
|
||||
recordingStartView.text = DateTimeHelper.convertToReadableDateAndTime(track.recordingStart)
|
||||
recordingStopView.text = DateTimeHelper.convertToReadableDateAndTime(track.recordingStart)
|
||||
recordingStopView.text = DateTimeHelper.convertToReadableDateAndTime(track.recordingStop)
|
||||
maxAltitudeView.text = LengthUnitHelper.convertDistanceToString(track.maxAltitude, useImperialUnits)
|
||||
minAltitudeView.text = LengthUnitHelper.convertDistanceToString(track.minAltitude, useImperialUnits)
|
||||
positiveElevationView.text = LengthUnitHelper.convertDistanceToString(track.positiveElevation, useImperialUnits)
|
||||
|
|
6
metadata/en-US/changelogs/45.txt
Normal file
6
metadata/en-US/changelogs/45.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
# v2.0.8 - Echoes
|
||||
|
||||
**2020-10-11**
|
||||
|
||||
- fixes a bug where the "Recording stopped" time was not displayed
|
||||
- Turkish translation
|
Loading…
Reference in a new issue