-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
GCorm
authored and
GCorm
committed
May 23, 2019
1 parent
0670d17
commit 8f56bdd
Showing
19 changed files
with
3,205 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<strings> | ||
<string id="Field29">Ambient Pressure</string> | ||
<string id="Field30">Average Cadence</string> | ||
<string id="Field31">Average Distance</string> | ||
<string id="Field32">Average Power</string> | ||
<string id="Field33">Bearing</string> | ||
<string id="Field34">Bearing From Start</string> | ||
<string id="Field35">Current Heading</string> | ||
<string id="Field36">Current Location</string> | ||
<string id="Field37">Current Power</string> | ||
<string id="Field38">Distance to Destination</string> | ||
<string id="Field39">Distance to Next Point</string> | ||
<string id="Field40">Elapsed Time</string> | ||
<string id="Field41">Elevation at Destination</string> | ||
<string id="Field42">Elevation at Next Point</string> | ||
<string id="Field43">Energy Expenditure</string> | ||
<string id="Field44">Front Derailleur Index</string> | ||
<string id="Field45">Front Derailleur Max</string> | ||
<string id="Field46">Front Derailleur Size</string> | ||
<string id="Field47">Max Cadence</string> | ||
<string id="Field48">Max Heart Rate</string> | ||
<string id="Field49">Max Power</string> | ||
<string id="Field50">Max Speed</string> | ||
<string id="Field51">Mean Sea Level pressure</string> | ||
<string id="Field52">Name of Destination</string> | ||
<string id="Field53">Name of Next Point</string> | ||
<string id="Field54">Off Course Distance</string> | ||
<string id="Field55">Raw Ambient Pressure</string> | ||
<string id="Field56">Rear Derailleur Index</string> | ||
<string id="Field57">Rear Derailleur Max</string> | ||
<string id="Field58">Rear Derailleur Size</string> | ||
<string id="Field59">Start Location</string> | ||
<string id="Field60">Start Time</string> | ||
<string id="Field61">Swim Stroke Type</string> | ||
<string id="Field62">Swim Swolf</string> | ||
<string id="Field63">Timer State</string> | ||
<string id="Field64">Track</string> | ||
</strings> |
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using Toybox.Application; | ||
|
||
class GRunApp extends Application.AppBase | ||
{ | ||
protected var gRunView; | ||
|
||
function initialize() | ||
{ | ||
//System.println("Garmin Fenix 5s (Low Memory)"); | ||
AppBase.initialize(); | ||
gRunView = new GRunView(0); | ||
} | ||
|
||
/* | ||
function onSettingsChanged() | ||
{ | ||
AppBase.onSettingsChanged(); | ||
gRunView.initializeUserData(); | ||
} | ||
*/ | ||
|
||
function getInitialView() | ||
{ | ||
return [ gRunView ]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using Toybox.Application; | ||
|
||
class GRunApp extends Application.AppBase | ||
{ | ||
protected var gRunView; | ||
|
||
function initialize() | ||
{ | ||
//System.println("Garmin Fenix Chronos (Low Memory)"); | ||
AppBase.initialize(); | ||
gRunView = new GRunView(0); | ||
} | ||
|
||
/* | ||
function onSettingsChanged() | ||
{ | ||
AppBase.onSettingsChanged(); | ||
//gRunView.initializeUserData(); | ||
} | ||
*/ | ||
|
||
function getInitialView() | ||
{ | ||
return [ gRunView ]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using Toybox.Application; | ||
|
||
class GRunApp extends Application.AppBase | ||
{ | ||
protected var gRunView; | ||
|
||
function initialize() | ||
{ | ||
//System.println("Garmin (High Memory)"); | ||
AppBase.initialize(); | ||
gRunView = new GRunViewHighMem(); | ||
} | ||
|
||
|
||
function onSettingsChanged() | ||
{ | ||
AppBase.onSettingsChanged(); | ||
gRunView.initializeUserData(); | ||
} | ||
|
||
|
||
function getInitialView() | ||
{ | ||
return [ gRunView ]; | ||
} | ||
} |
Oops, something went wrong.