Add Rosaria, fix leading space in 12h mode

This commit is contained in:
Neale Pickett 2015-07-08 20:41:53 -06:00
parent e2f2d0bfad
commit da51000c41
5 changed files with 4 additions and 2 deletions

View File

@ -26,7 +26,7 @@
"shortName": "%FONT %COLOR",
"uuid": "%UUID",
"versionCode": 1,
"versionLabel": "1.1",
"versionLabel": "1.2",
"watchapp": {
"watchface": true
},

View File

@ -35,5 +35,7 @@ AveriaSerifLibre White e03bd7a7-a8a5-4584-98aa-44496d74d766
AveriaSerifLibre Black e03bd7a7-a8a5-4584-98aa-44496d74d767
ExpletusSans White 4ba792cf-26c4-4c3a-a194-4db5ae7e4be8
ExpletusSans Black 4ba792cf-26c4-4c3a-a194-4db5ae7e4be9
Rosario White 6bd61758-576d-4895-9e73-3979f46a9b02
Rosario Black 6bd61758-576d-4895-9e73-3979f46a9b03
EOF
fi

Binary file not shown.

Binary file not shown.

View File

@ -32,7 +32,7 @@ static void handle_minute_tick(struct tm *tick_time, TimeUnits units_changed) {
if (clock_is_24h_style()) {
time_format = "%R";
} else {
time_format = "%l:%M";
time_format = "%I:%M";
}
strftime(s_time_text, sizeof(s_time_text), time_format, tick_time);