mirror of https://github.com/nealey/FontFace
Add Rosaria, fix leading space in 12h mode
This commit is contained in:
parent
e2f2d0bfad
commit
da51000c41
|
@ -26,7 +26,7 @@
|
||||||
"shortName": "%FONT %COLOR",
|
"shortName": "%FONT %COLOR",
|
||||||
"uuid": "%UUID",
|
"uuid": "%UUID",
|
||||||
"versionCode": 1,
|
"versionCode": 1,
|
||||||
"versionLabel": "1.1",
|
"versionLabel": "1.2",
|
||||||
"watchapp": {
|
"watchapp": {
|
||||||
"watchface": true
|
"watchface": true
|
||||||
},
|
},
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -35,5 +35,7 @@ AveriaSerifLibre White e03bd7a7-a8a5-4584-98aa-44496d74d766
|
||||||
AveriaSerifLibre Black e03bd7a7-a8a5-4584-98aa-44496d74d767
|
AveriaSerifLibre Black e03bd7a7-a8a5-4584-98aa-44496d74d767
|
||||||
ExpletusSans White 4ba792cf-26c4-4c3a-a194-4db5ae7e4be8
|
ExpletusSans White 4ba792cf-26c4-4c3a-a194-4db5ae7e4be8
|
||||||
ExpletusSans Black 4ba792cf-26c4-4c3a-a194-4db5ae7e4be9
|
ExpletusSans Black 4ba792cf-26c4-4c3a-a194-4db5ae7e4be9
|
||||||
|
Rosario White 6bd61758-576d-4895-9e73-3979f46a9b02
|
||||||
|
Rosario Black 6bd61758-576d-4895-9e73-3979f46a9b03
|
||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -32,7 +32,7 @@ static void handle_minute_tick(struct tm *tick_time, TimeUnits units_changed) {
|
||||||
if (clock_is_24h_style()) {
|
if (clock_is_24h_style()) {
|
||||||
time_format = "%R";
|
time_format = "%R";
|
||||||
} else {
|
} else {
|
||||||
time_format = "%l:%M";
|
time_format = "%I:%M";
|
||||||
}
|
}
|
||||||
strftime(s_time_text, sizeof(s_time_text), time_format, tick_time);
|
strftime(s_time_text, sizeof(s_time_text), time_format, tick_time);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue