mirror of https://github.com/espruino/BangleApps
ios 0.18: Fix UTF8 conversion (check for `font` library, not `fonts`)
parent
5018af4c6c
commit
9e72ef1274
|
@ -15,4 +15,5 @@
|
|||
Allow negative/positive actions to pass through to message GUI
|
||||
0.15: Enable calendar and weather updates via custom notifications (via shortcuts app)
|
||||
0.16: Always request Current Time service from iOS
|
||||
0.17: Default to passing full UTF8 strings into messages app (which can now process them with an international font)
|
||||
0.17: Default to passing full UTF8 strings into messages app (which can now process them with an international font)
|
||||
0.18: Fix UTF8 conversion (check for `font` library, not `fonts`)
|
|
@ -298,7 +298,7 @@ E.emit("ANCS", {
|
|||
NRF.ctsGetTime().then(ctsUpdate, function(){ /* */ })
|
||||
E.on('CTS',ctsUpdate);
|
||||
}
|
||||
if (settings.no_utf8 || !require("Storage").read("fonts")) {
|
||||
if (settings.no_utf8 || !require("Storage").read("font")) {
|
||||
// if UTF8 disabled or there is no fonts lib, convert UTF8 to ISO8859-1
|
||||
let unicodeRemap = {
|
||||
'2019':"'",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "ios",
|
||||
"name": "iOS Integration",
|
||||
"version": "0.17",
|
||||
"version": "0.18",
|
||||
"description": "Display notifications/music/etc from iOS devices",
|
||||
"icon": "app.png",
|
||||
"tags": "tool,system,ios,apple,messages,notifications",
|
||||
|
|
Loading…
Reference in New Issue