Skip to content

Commit 4f96866

Browse files
committed
added support for the FitBit Ionic and updated screenshots/readme
1 parent 5c02b69 commit 4f96866

File tree

9 files changed

+109
-3
lines changed

9 files changed

+109
-3
lines changed

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55
"appDisplayName": "WorkFlow",
66
"iconFile": "resources/icon.png",
77
"wipeColor": "#8bc34a",
8-
"requestedPermissions": [],
8+
"requestedPermissions": [
9+
"access_user_profile"
10+
],
911
"buildTargets": [
10-
"meson"
12+
"meson",
13+
"higgs"
1114
],
1215
"i18n": {
1316
"en": {

photos/Sample1.PNG

116 Bytes
Loading

photos/Sample2.PNG

16.6 KB
Loading

photos/Sample3.PNG

18.7 KB
Loading

readme.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ The user will complete a set of 4 sprints, with the first 3 followed by a short
77
![](https://github.com/aes421/WorkFlow/blob/master/photos/Sample3.PNG?raw=true)
88
# Upcoming
99
This app is still currently in development. Future enhancements include:
10-
* Compatibility with FitBit Ionic
1110
* Ability to exit app without losing progress
1211
* Make your own color combos
1312
* Save user settings for color

resources/index~348x250.gui

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<svg>
2+
<use id="background" href="#panoramaview">
3+
<use id="color1" href="#panoramaview-item">
4+
<rect class="backgroundColor" width="100%" height="100%"/>
5+
</use>
6+
<use id="color2" href="#panoramaview-item">
7+
<rect class="backgroundColor" width="100%" height="100%"/>
8+
</use>
9+
<use id="color3" href="#panoramaview-item">
10+
<rect class="backgroundColor" width="100%" height="100%"/>
11+
</use>
12+
<use href="#panoramaview-item">
13+
<rect class="backgroundColor" width="100%" height="100%"/>
14+
</use>
15+
<use href="#panoramaview-item">
16+
<rect class="backgroundColor" width="100%" height="100%"/>
17+
</use>
18+
<use href="#panoramaview-item">
19+
<rect class="backgroundColor" width="100%" height="100%"/>
20+
</use>
21+
<use href="#panoramaview-item">
22+
<rect class="backgroundColor" width="100%" height="100%"/>
23+
</use>
24+
25+
<use id="pagination-dots" href="#pagination-widget" y="8">
26+
<use href="#pagination-dot" />
27+
<use href="#pagination-dot" />
28+
<use href="#pagination-dot" />
29+
<use href="#pagination-dot" />
30+
<use href="#pagination-dot" />
31+
<use href="#pagination-dot" />
32+
<use href="#pagination-dot" />
33+
<use href="#pagination-highlight-dot" />
34+
</use>
35+
</use>
36+
37+
38+
39+
<text id="time" class="baseColor" x="313" y="25">12:00</text>
40+
41+
<arc id="backgroundArc" class="backgroundArcColor" x="64" y="23" height="220" width="220" arc-width="20" start-angle="0" sweep-angle="360"/>
42+
<arc id="progressArc" class="accentColor" x="64" y="23" height="220" width="220" arc-width="20" start-angle="0" sweep-angle="0"/>
43+
44+
<text id="currentIntervalText" class="baseColor" x="174" y="93">Flow</text>
45+
<text id="countdown" class="accentColor" x="174" y="143">00:00:00</text>
46+
<text id="sprintCounter" class="baseColor" x="174" y="183">1 of 4</text>
47+
48+
<use id="playPauseButton" class="accentColor" href="#combo-button-lower-right">
49+
<set href="combo-button-icon" attributeName="href" to="play.png"/>
50+
<set href="combo-button-icon-press" attributeName="href" to="play_press.png"/>
51+
<set href="combo-button-stroke" attributeName="display" to="inline"/>
52+
</use>
53+
54+
<use id="restartSkipButton" class="accentColor" href="#combo-button-lower-left">
55+
<set href="combo-button-icon" attributeName="href" to="skip.png"/>
56+
<set href="combo-button-icon-press" attributeName="href" to="skip_press.png"/>
57+
<set href="combo-button-stroke" attributeName="display" to="inline"/>
58+
</use>
59+
60+
61+
62+
63+
</svg>

resources/styles~348x250.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.backgroundColor{
2+
fill: "#000000"
3+
}
4+
5+
.accentColor{
6+
fill: "#FF9F1E";
7+
}
8+
9+
.baseColor{
10+
fill: "#FFFFFF";
11+
}
12+
13+
.backgroundArcColor{
14+
fill: "#636366";
15+
}
16+
17+
#countdown{
18+
font-family: "System-Bold";
19+
font-size: "40";
20+
text-anchor: "middle";
21+
text-length: "12";
22+
}
23+
24+
#sprintCounter{
25+
font-family: "System-Regular";
26+
font-size: "30";
27+
text-anchor: "middle";
28+
}
29+
30+
#currentIntervalText{
31+
font-family: "System-Regular";
32+
font-size: "30";
33+
text-anchor: "middle";
34+
}
35+
36+
#time{
37+
font-family: "System-Regular";
38+
font-size: "25";
39+
text-anchor: "middle";
40+
}
41+

0 commit comments

Comments
 (0)