-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ControllerScriptInterfaceLegacy: Windows 1252 fix #14108
base: main
Are you sure you want to change the base?
Conversation
This is intentional, we grouped all charsets that are full subsets of other charsets to the superset. This is described in the documentation, which you didn't change in this PR btw.: mixxx/res/controllers/engine-api.d.ts Line 317 in 436aa3c
|
src/controllers/scripting/legacy/controllerscriptinterfacelegacy.cpp
Outdated
Show resolved
Hide resolved
Ah, I understand. Than the Enum name was only misleading. I stumbled over this because "ASCII" and ""windows-1252" is not available without ICU or QT < 6.4. |
Done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you change the enum, you need to change the typescript declaration as well: mixxx/res/controllers/engine-api.d.ts
Done |
Latin1 is not Windows Western Europe charset. The later contains ™ and some other characters. This PR introduces both, "windows-1252" and "ISO-8859-1"
In addition this has some refactoring regarding string handling and makes the test pass on Qt 6.2 (I have not updated my dev machine to maintain the 2.5 branch)