sgg-labs

Results 9 comments of sgg-labs

On Mac OS this is solved by setting codepage to en_US.UTF-8 before calling std::toupper() or std::tolower() ``` #include ... const char *lcc = std::setlocale(LC_CTYPE, "en_US.UTF-8"); if (lcc) { bb_print(bbString(lcc)); }...

Just checked on Windows: std::towupper with "English" worked (msvc x86)! Thank you Mark! Has nothing to do with theme - I'm using Prime-Blue.

On Android (emulator) this doesn't work: ``` #include #include ... std::setlocale( LC_CTYPE,"en_US.UTF-8" ); Rep *rep=Rep::alloc( length() ); for( int i=0;idata[i]=std::towupper( data()[i] ); return rep; ... ``` although setlocale returns "C.UTF-8"....

The above code works on both macOS and iOS (simulator). It didn't work on Android (emulator and device) and I don't have a Linux machine set up to test the...

It appears to work fine in: * Android (compiled on Windows, tested on both emulator and device) * Windows 10 (msvc and gcc x86) * MacOS and iOS (simulator) I...

Found one edge case. I don't ask you to fix it, I'm just writing about it here for future reference. German eszett is capitalized differently on different platforms: Windows: Straße...

AFAIK they are moving towards capital ß instead of SS, but both are still accepted. I personally prefer ß: the length of the word is preserved, and there is no...

Same problem here. Build time2019-11-29T13:39:24.408889 Defold channeleditor-alpha Defold editor sha39b2b2d4bd91ffd166a5776bd998912a0ec9758c Defold engine sha2be2687cbb670c2dbe9cf2e99577bc3338561778 Defold version1.2.164 GPURadeon Pro 560 GPU Driver4.5.13542 Compatibility Profile Context FireGL 25.20.14020.10001 Java version11.0.1+13 OS archamd64 OS...

It's a dual-boot iMac. The drivers are from standard Bootcamp package. On the macOS side, the boxes are filled with colour in the editor as they should be. I'll see...