Merge pull request #73 from movermeyer/mo.fix_transistor_typos

Fix typos of Transistor
master
y20k 2020-05-30 21:18:44 +02:00 committed by GitHub
commit db562fbc99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -32,7 +32,7 @@ Trackbook automatically generates GPX files for every recording. You can find th
### How Does Trackbook Measure Distance? ### How Does Trackbook Measure Distance?
Trackbook calculates the distance between markers and adds them up. Trackbook calculates the distance between markers and adds them up.
### How Does Transistor Measure Altitude? ### How Does Trackbook Measure Altitude?
Many devices have altitude sensors (of varying accuracy). Trackbook compares the altitude of each new marker with the previously stored altitude. The difference is added to either the uphill or downhill elevation value. Many devices have altitude sensors (of varying accuracy). Trackbook compares the altitude of each new marker with the previously stored altitude. The difference is added to either the uphill or downhill elevation value.
### What Does Accuracy Threshold Mean? ### What Does Accuracy Threshold Mean?

View File

@ -33,9 +33,9 @@ object Keys {
const val CURRENT_TRACKLIST_FORMAT_VERSION: Int = 0 const val CURRENT_TRACKLIST_FORMAT_VERSION: Int = 0
// intent actions // intent actions
const val ACTION_START: String = "org.y20k.trackbooks.action.START" const val ACTION_START: String = "org.y20k.trackbook.action.START"
const val ACTION_STOP: String = "org.y20k.trackbooks.action.STOP" const val ACTION_STOP: String = "org.y20k.trackbook.action.STOP"
const val ACTION_RESUME: String = "org.y20k.transistors.action.RESUME" const val ACTION_RESUME: String = "org.y20k.trackbook.action.RESUME"
// args // args
const val ARG_TRACK_TITLE: String = "ArgTrackTitle" const val ARG_TRACK_TITLE: String = "ArgTrackTitle"

View File

@ -155,7 +155,7 @@ object TrackHelper {
// add header // add header
gpxString = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n" + gpxString = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n" +
"<gpx version=\"1.1\" creator=\"Transistor App (Android)\"\n" + "<gpx version=\"1.1\" creator=\"Trackbook App (Android)\"\n" +
" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" + " xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n" +
" xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\">\n" " xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\">\n"

View File

@ -19,7 +19,7 @@ Trackbook automatically generates GPX files for every recording. You can find th
HOW DOES TRACKBOOK MEASURE DISTANCE? HOW DOES TRACKBOOK MEASURE DISTANCE?
Trackbook calculates the distance between markers and adds them up. Trackbook calculates the distance between markers and adds them up.
HOW DOES TRANSISTOR MEASURE ALTITUDE? HOW DOES TRACKBOOK MEASURE ALTITUDE?
Many devices have altitude sensors (of varying accuracy). Trackbook compares the altitude of each new marker with the previously stored altitude. The difference is added to either the uphill or downhill elevation value. Many devices have altitude sensors (of varying accuracy). Trackbook compares the altitude of each new marker with the previously stored altitude. The difference is added to either the uphill or downhill elevation value.
WHAT DOES ACCURACY THRESHOLD MEAN? WHAT DOES ACCURACY THRESHOLD MEAN?