Forum News discussion/feedback thread

What can I say? It doesn't fit above, put it here. Also the location of board rules/info.
User avatar
Neonnaut
rupestrian
rupestrian
Posts: 2
Joined: 20 Aug 2024 16:03

Re: Forum News discussion/feedback thread

Post by Neonnaut »

Flavia wrote: 22 Mar 2024 20:19 There is a bug in XIPA — when converting from X-SAMPA to IPA, J\_ always yields ʄ, regardless of what is appended after. It's not that big of an issue as you can still select the proper symbols manually, and I don't know if XIPA is still being maintained, but it would be great if it was fixed. (apologies if this is not the right place to post this)
In line 206 of the file "scriptz.js" for Xipa

Code: Select all

case 'J': if (ce != '_') cd = 607; else { cd = 644; ii = 3; } break;
you can fix it by changing that line to:

Code: Select all

case 'J': if (ce == '_' && cg == '<') { cd = 644; ii = 3; } else cd = 607; break;
And then similarly for G\_<
I have made this change in my modified version of Xipa: https://neonnaut.neocities.org/ipa-keyboard
Post Reply