Created attachment 127413 [details] Text file with script code I'm a Mac user making the switch to Linux (although longtime Kid3 user) and I used an iTunes script to give song titles proper english capitalization. It would auto capitalize the correct words and not every word or first of a sentence. Not sure it this could be implemented into Kid3 along with the other case conversion options. EXAMPLES: Original ID3 tag title = "Rock And Roll" Would change to = "Rock and Roll" Or "The Song Remains The Same" to "The Song Remains the Same" Currently that can't happen with the options right now. I've attached the older script that I used (in txt format).
Thanks for the suggestion. I think that this would be a useful addition and I will implement it.
Created attachment 127432 [details] attachment-19557-0.html THANK YOU! It will get tricky. I'm trying the most recent version of that script and it has an exemption section to add words that are always lower case and a section to add words that are never modified. I added state abbreviations (because I have lots of bootleg concerts) then realized that the states of ME and IN won't work as those are also words so I added IN) and ME) as that's how they tend to be. -O|||||||O- Have fun out there. Jeep Jeeps I've owned: 1986 Jeep CJ-7 1995 Jeep YJ Wrangler Rio Grande On Apr 10, 2020, 2:21 AM -0400, Urs Fleisch <bugzilla_noreply@kde.org>, wrote: > https://bugs.kde.org/show_bug.cgi?id=419890 > > Urs Fleisch <ufleisch@users.sourceforge.net> changed: > > What |Removed |Added > ---------------------------------------------------------------------------- > Ever confirmed|0 |1 > Status|REPORTED |ASSIGNED > > --- Comment #1 from Urs Fleisch <ufleisch@users.sourceforge.net> --- > Thanks for the suggestion. I think that this would be a useful addition and I > will implement it. > > -- > You are receiving this mail because: > You reported the bug.
Created attachment 127471 [details] QML script for title case
After looking at other solutions for the title case problem, I think that it is better to use a script which could be adapted by the user, than being hard coded in some C++ class. I have attached an example QML script, which can be added as a user action to Kid3. Just store it somewhere and then go to the "User Actions" settings in Kid3 and add it with name "Title Case" and command "@qml /path/to/TitleCase.qml". You can then invoke it using the file list context menu or assign it to a keyboard shortcut in the settings. Note that the script is based on titleCaps.js by John Resig and will not touch most words which are in upper case or have mixed upper and lower case letters (as opposed to some other solutions), but this brings the advantage of not having to deal with an endless list of words which have to remain untouched. Feel free to modify the script (you just have to know a little bit of JavaScript) and give some feedback.
Created attachment 127478 [details] attachment-11489-0.html Thank you. I'll give it a try and let you know if I notice anything weird. -O|||||||O- Have fun out there. Jeep Jeeps I've owned: 1986 Jeep CJ-7 1995 Jeep YJ Wrangler Rio Grande On Apr 12, 2020, 11:06 AM -0400, Urs Fleisch <bugzilla_noreply@kde.org>, wrote: > https://bugs.kde.org/show_bug.cgi?id=419890 > > --- Comment #4 from Urs Fleisch <ufleisch@users.sourceforge.net> --- > After looking at other solutions for the title case problem, I think that it is > better to use a script which could be adapted by the user, than being hard > coded in some C++ class. I have attached an example QML script, which can be > added as a user action to Kid3. > > Just store it somewhere and then go to the "User Actions" settings in Kid3 and > add it with name "Title Case" and command "@qml /path/to/TitleCase.qml". You > can then invoke it using the file list context menu or assign it to a keyboard > shortcut in the settings. > > Note that the script is based on titleCaps.js by John Resig and will not touch > most words which are in upper case or have mixed upper and lower case letters > (as opposed to some other solutions), but this brings the advantage of not > having to deal with an endless list of words which have to remain untouched. > Feel free to modify the script (you just have to know a little bit of > JavaScript) and give some feedback. > > -- > You are receiving this mail because: > You reported the bug.
Git commit bd6f5351aa1c84cc113dd7276ceca05c7cb99737 by Urs Fleisch. Committed on 13/04/2020 at 11:18. Pushed by ufleisch into branch 'devel'. Script to apply English title capitalization to tags A +125 -0 src/qml/script/TitleCase.qml [License: LGPL] https://invent.kde.org/kde/kid3/commit/bd6f5351aa1c84cc113dd7276ceca05c7cb99737
Git commit 5c8f85ca14658d7531ac4d05aae0a5352b1303e0 by Urs Fleisch. Committed on 14/04/2020 at 06:42. Pushed by ufleisch into branch 'master'. Script to apply English title capitalization to tags M +5 -0 doc/en/index.docbook M +2 -1 src/core/config/configstore.cpp M +6 -0 src/core/config/useractionsconfig.cpp M +1 -0 src/qml/CMakeLists.txt A +125 -0 src/qml/script/TitleCase.qml [License: LGPL] https://invent.kde.org/kde/kid3/commit/5c8f85ca14658d7531ac4d05aae0a5352b1303e0
Fixed in version 3.8.3.