Copy link to clipboard
Copied
One question for the SDK veterans or the team.
In one of my codes I want to append a unicode character, I use it in "MaskName"
U+26A1 High Voltage
In General are unicode characters safe or best to avoid them?
.
1 Correct answer
The LR SDK fully supports Unicode characters. The only outstanding SDK bug I've seen reported here:
Conversion between upper- and lower-case for non-Latin characters on Windows:
That can be worked around using a pure-Lua Unicode library.
There are a couple of bugs in LR (not specific to the SDK) with non-Latin characters: sorting keywords not ignoring case (probably the same root cause as the
...Copy link to clipboard
Copied
The LR SDK fully supports Unicode characters. The only outstanding SDK bug I've seen reported here:
Conversion between upper- and lower-case for non-Latin characters on Windows:
That can be worked around using a pure-Lua Unicode library.
There are a couple of bugs in LR (not specific to the SDK) with non-Latin characters: sorting keywords not ignoring case (probably the same root cause as the bug above); exported catalogs moved from Windows to Mac or vice versa not handling folder names containing non-Latin characters properly.
Copy link to clipboard
Copied
Thanks @johnrellis
Funny thing : I had actually considered a "make all upper case" code for all CorrectionName or or MaskName.
Guess it will

