ios 0.18: Fix UTF8 conversion (check for `font` library, not `fonts`)

pull/3288/head
Gordon Williams 2024-03-19 10:51:38 +00:00
parent 5018af4c6c
commit 9e72ef1274
3 changed files with 4 additions and 3 deletions

View File

@ -16,3 +16,4 @@
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.18: Fix UTF8 conversion (check for `font` library, not `fonts`)

View File

@ -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':"'",

View File

@ -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",