You are reading a single comment by @user142091 and its replies.
Click here to read the full conversation.
-
@Gordon thank you for detailed answer! I will look into it. I am not js expert, so I need some time to digest things but I will try :).
@DavSlinker not really I'm afraid, on Gadgetbridge the code is basically already there - I hope that when the custom version is in the play store, features will get added more quickly
@user142091 ok, well that's easier in some ways since in iOS we can't render in the phone.
There's a list of unicode remappings at https://github.com/espruino/BangleApps/blob/master/apps/ios/boot.js#L116 which is currently very empty.
You could either:
ż
toz
, OR...ż
on your PC, use https://www.espruino.com/Image+Converter to convert it to an image string, add\0
to the front of it, and use that.drawString
to write one character over the top of the last. So for instancez
and'
could be rendered on top of each other to produce something that looked at least a little likeż
without having to include a bitmap font.The replacements are something I'd love to get in, so if I can help with that I'd be very happy to. I guess the first option is pretty easy and would (for now) at least make messages readable?