http://bugs.winehq.org/show_bug.cgi?id=58079
Bug ID: 58079 Summary: AppDB: Potential problems with printing (non-ASCII?) characters. Product: WineHQ Apps Database Version: unspecified Hardware: x86-64 URL: https://appdb.winehq.org/objectManager.php?sClass=vers ion&iId=2739 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: appdb-unknown Assignee: wine-bugs@winehq.org Reporter: chiitoo@gentoo.org Distribution: Gentoo
There might be some issues regarding character encoding, or something that happened during a conversion of sorts, but probably not during the PHP8 upgrade since going by archive org, this seems to have started between 2024-03-03 and 2024-05-19, which seems a bit too long ago for that.
See for example one of the maintainer names here, where an 'é' renders as '�':
https://appdb.winehq.org/objectManager.php?sClass=version&iId=2739
Not sure if there is really anything that can be done, aside from re-entering such characters somewhere...
Thank you!
http://bugs.winehq.org/show_bug.cgi?id=58079
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|UNCONFIRMED |NEW
--- Comment #1 from Ken Sharp imwellcushtymelike@gmail.com --- Confirming. Will have a look.
http://bugs.winehq.org/show_bug.cgi?id=58079
Jeremy Newman jnewman@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jnewman@codeweavers.com
--- Comment #2 from Jeremy Newman jnewman@codeweavers.com --- All tables should be converted to utf8mb4. Many columns are still in latin1_swedish_ci, and others are in mb3;
For example, we need to do a process like this on the tables:
ALTER TABLE <TABLE> CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE <TABLE> CHARACTER SET utf8mb4;
Once this is done, things should work better with character sets.
http://bugs.winehq.org/show_bug.cgi?id=58079
--- Comment #3 from Jeremy Newman jnewman@codeweavers.com --- All tables and columns have been converted over to utf8mb4. This doesn't fix the existing corrupt characters, but makes it possible to clean it up consistently going forward.
I manually fixed the é character on that users name on the link specified above.
http://bugs.winehq.org/show_bug.cgi?id=58079
Chiitoo chiitoo@gentoo.org changed:
What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|NEW |RESOLVED
--- Comment #4 from Chiitoo chiitoo@gentoo.org --- Indeed, looks good so far.
I suppose this one can be called fixed.
Thank you!
http://bugs.winehq.org/show_bug.cgi?id=58079
Ken Sharp imwellcushtymelike@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |huupoke12@gmail.com
--- Comment #5 from Ken Sharp imwellcushtymelike@gmail.com --- *** Bug 47893 has been marked as a duplicate of this bug. ***