Skip to content

Commit a827d7f

Browse files
committed
Version 0.1.18
Added Approach S62 SDK 3.1.8
1 parent 11c857a commit a827d7f

File tree

9 files changed

+44
-6
lines changed

9 files changed

+44
-6
lines changed

.settings/IQ_IDE.prefs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
eclipse.preferences.version=1
22
project_compiler_options=
3-
project_jungle=monkey-face.jungle
4-
project_manifest=manifest-face.xml
3+
project_jungle=monkey-app.jungle
4+
project_manifest=manifest-app.xml

manifest-app.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. --><iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
2-
<iq:application entry="myApp" id="6f732e4b486b4213b80366a105c44219" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watch-app" version="0.1.17">
2+
<iq:application entry="myApp" id="6f732e4b486b4213b80366a105c44219" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watch-app" version="0.1.18">
33
<iq:products>
4+
<iq:product id="approachs62"/>
45
<iq:product id="d2charlie"/>
56
<iq:product id="d2delta"/>
67
<iq:product id="d2deltapx"/>
@@ -40,6 +41,7 @@
4041
<iq:product id="vivoactive3m"/>
4142
<iq:product id="vivoactive3mlte"/>
4243
<iq:product id="vivoactive4"/>
44+
<iq:product id="vivoactive4s"/>
4345
</iq:products>
4446
<iq:permissions>
4547
<iq:uses-permission id="Positioning"/>

manifest-face.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. --><iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
2-
<iq:application entry="myApp" id="8d536c7547234aac8316482a57451748" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watchface" version="0.1.17">
2+
<iq:application entry="myApp" id="8d536c7547234aac8316482a57451748" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watchface" version="0.1.18">
33
<iq:products>
4+
<iq:product id="approachs62"/>
45
<iq:product id="d2charlie"/>
56
<iq:product id="d2delta"/>
67
<iq:product id="d2deltapx"/>

manifest-face2.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. --><iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
2-
<iq:application entry="myApp" id="31f3bd33f262492c8af669ee5c1a0294" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watchface" version="0.1.17">
2+
<iq:application entry="myApp" id="31f3bd33f262492c8af669ee5c1a0294" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watchface" version="0.1.18">
33
<iq:products>
4+
<iq:product id="approachs62"/>
45
<iq:product id="d2charlie"/>
56
<iq:product id="d2delta"/>
67
<iq:product id="d2deltapx"/>

monkey-app.jungle

+10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@ project.manifest = manifest-app.xml
1515

1616

1717

18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
1828

1929

2030

monkey-face.jungle

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ project.manifest = manifest-face.xml
2323

2424

2525

26+
27+
28+
29+
30+
31+
32+
33+
2634

2735

2836

monkey-face2.jungle

+6
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ project.manifest = manifest-face2.xml
1313

1414

1515

16+
17+
18+
19+
20+
21+
1622

1723

1824

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<jsonDataResources>
2+
3+
<jsonData id="id_editorSpecial">
4+
[
5+
true, <!-- touch screen -->
6+
false <!-- smaller menu font -->
7+
]
8+
</jsonData>
9+
10+
</jsonDataResources>

source/myView.mc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4876,7 +4876,7 @@ class myView
48764876
col = secondColorIndex; // second color
48774877
}
48784878

4879-
propSecondColorIndexArray[(i+ringAdjustIndex)%60] = col;
4879+
propSecondColorIndexArray[(i+ringAdjustIndex)%60] = (col&0xFF);
48804880
}
48814881

48824882
//this test code now works out exactly the same size as the original above!

0 commit comments

Comments
 (0)