updated version number to v1.0.1 & forgot to upload fragment_main_track_onboarding.xml

master
y20k 2017-02-17 11:26:21 +01:00
parent b6868298ee
commit b0cbb6a1c7
4 changed files with 39 additions and 5 deletions

View File

@ -32,8 +32,8 @@ Stop the recording and then tap again on the big blue button. It will offer an o
### Clear main map
Stop the recording and then tap again on the big blue button. Chose the option "Clear", if you just want to clear the map without saving your recording.
### Statistics and Last Track
Peek into Trackbook's notification to see the distance and duration of your current recording. Switch to the Last Track view to review your last recording. Pull up the statistics to see distance and duration of that recording, as well as the steps taken.
### Statistics and Last Tracks
Peek into Trackbook's notification to see the distance and duration of your current recording. Switch to the Last Tracks view to review your last recordings - up to 25 tracks. Pull up the statistics to see distance and duration of that recording, as well as the steps taken.
### How does Trackbook measure distance?
Trackbook calculates the distance between markers and adds them up.

View File

@ -8,8 +8,8 @@ android {
applicationId "org.y20k.trackbook"
minSdkVersion 22
targetSdkVersion 25
versionCode 7
versionName "1.0.0 (Astronomy Domine)"
versionCode 8
versionName "1.0.1 (Astronomy Domine)"
vectorDrawables.useSupportLibrary = true
}
buildTypes {

View File

@ -26,7 +26,7 @@ import android.util.Log;
*/
public final class LogHelper {
private final static boolean mTesting = true;
private final static boolean mTesting = false;
public static void d(final String tag, String message) {
// include logging only in debug versions

View File

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/track_tab_onboarding">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/trackbook_grey"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginBottom="@dimen/activity_vertical_margin"
android:text="@string/track_tab_onboarding_h1_part_1" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/trackbook_icon"
android:background="@mipmap/ic_launcher"
android:contentDescription="@string/layout_onboarding_description_app_icon" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/trackbook_grey"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:text="@string/track_tab_onboarding_h1_part_2" />
</LinearLayout>