Skip to content

Commit 5b08034

Browse files
committed
checking device compatibility
1 parent 8f74c31 commit 5b08034

File tree

4 files changed

+96
-8
lines changed

4 files changed

+96
-8
lines changed

.github/workflows/test_release_deploy.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,21 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
device: [d2bravo, d2bravo_titanium, fenix3, fenix3_hr, fr230, fr235, fr735xt, vivoactive4]
14+
device:
15+
[
16+
approachs60,
17+
d2bravo,
18+
d2bravo_titanium,
19+
fenix3,
20+
fenix3_hr,
21+
fr230,
22+
fr235,
23+
fr630,
24+
fr735xt,
25+
fr920xt,
26+
vivoactive,
27+
vivoactive4,
28+
]
1529
# device: [fr235]
1630
steps:
1731
- uses: actions/checkout@v4

.vscode/launch.json

+74-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,48 @@
11
{
22
"version": "0.2.0",
33
"configurations": [
4+
{
5+
"name": "Run (Select Device)",
6+
"type": "monkeyc",
7+
"request": "launch",
8+
"stopAtLaunch": false,
9+
"device": "${command:GetTargetDevice}"
10+
},
11+
{
12+
"name": "Run (d2bravo)",
13+
"type": "monkeyc",
14+
"request": "launch",
15+
"stopAtLaunch": false,
16+
"device": "d2bravo"
17+
},
18+
{
19+
"name": "Run (d2bravo_titanium)",
20+
"type": "monkeyc",
21+
"request": "launch",
22+
"stopAtLaunch": false,
23+
"device": "d2bravo_titanium"
24+
},
25+
{
26+
"name": "Run (fenix3)",
27+
"type": "monkeyc",
28+
"request": "launch",
29+
"stopAtLaunch": false,
30+
"device": "fenix3"
31+
},
32+
{
33+
"name": "Run (fenix3_hr)",
34+
"type": "monkeyc",
35+
"request": "launch",
36+
"stopAtLaunch": false,
37+
"device": "fenix3_hr"
38+
},
39+
{
40+
"name": "Run (fr230)",
41+
"type": "monkeyc",
42+
"request": "launch",
43+
"stopAtLaunch": false,
44+
"device": "fr230"
45+
},
446
{
547
"name": "Run (FR235)",
648
"type": "monkeyc",
@@ -9,18 +51,46 @@
951
"device": "fr235"
1052
},
1153
{
12-
"name": "Run (Fenix7)",
54+
"name": "Run (FR630)",
1355
"type": "monkeyc",
1456
"request": "launch",
1557
"stopAtLaunch": false,
16-
"device": "fenix7"
58+
"device": "fr630"
1759
},
1860
{
19-
"name": "Run (Select Device)",
61+
"name": "Run (fr735xt)",
2062
"type": "monkeyc",
2163
"request": "launch",
2264
"stopAtLaunch": false,
23-
"device": "${command:GetTargetDevice}"
65+
"device": "fr735xt"
66+
},
67+
{
68+
"name": "Run (FR920xt)",
69+
"type": "monkeyc",
70+
"request": "launch",
71+
"stopAtLaunch": false,
72+
"device": "fr920xt"
73+
},
74+
{
75+
"name": "Run (vivoactive)",
76+
"type": "monkeyc",
77+
"request": "launch",
78+
"stopAtLaunch": false,
79+
"device": "vivoactive"
80+
},
81+
{
82+
"name": "Run (vívoactive4)",
83+
"type": "monkeyc",
84+
"request": "launch",
85+
"stopAtLaunch": false,
86+
"device": "vívoactive4"
87+
},
88+
{
89+
"name": "Run (approachs60)",
90+
"type": "monkeyc",
91+
"request": "launch",
92+
"stopAtLaunch": false,
93+
"device": "approachs60"
2494
}
2595
]
2696
}

manifest.xml

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
<iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
22
<iq:application entry="iHIIT" id="5fa082b017864e7fa1f3ec51bb340e8a" launcherIcon="@Drawables.LauncherIcon" minSdkVersion="1.4.0" name="@Strings.app_name" type="watch-app" version="2.1.0">
33
<iq:products>
4-
<iq:product id="d2bravo"/>
4+
<iq:product id="approachs60"/>
55
<iq:product id="d2bravo_titanium"/>
6-
<iq:product id="fenix3"/>
6+
<iq:product id="d2bravo"/>
77
<iq:product id="fenix3_hr"/>
8-
<iq:product id="fenix7"/>
8+
<iq:product id="fenix3"/>
99
<iq:product id="fr230"/>
1010
<iq:product id="fr235"/>
11+
<iq:product id="fr630"/>
1112
<iq:product id="fr735xt"/>
13+
<iq:product id="fr920xt"/>
14+
<iq:product id="vivoactive"/>
1215
<iq:product id="vivoactive4"/>
1316
</iq:products>
1417
<iq:permissions>

source/view/doWorkout/doWorkoutView.mc

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ class DoWorkoutView extends Ui.View {
137137
labelTimeRemaining.setText(txt);
138138
}
139139

140+
// Displayed between two repetitions
140141
protected function updateLayoutRepetitionPause(dc) {
141142
//LAYOUT_PAUSE
142143
if (currentLayout != LAYOUT_PAUSE) {

0 commit comments

Comments
 (0)