Page 46 of 46

Re: Forum News discussion/feedback thread

Posted: 05 Oct 2024 23:08
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