Bug 419890 - Case Conversion - Proper English Title Capitalization
Summary: Case Conversion - Proper English Title Capitalization
Status: RESOLVED FIXED
Alias: None
Product: kid3
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Other All
: NOR wishlist
Target Milestone: ---
Assignee: Urs Fleisch
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-04-09 20:51 UTC by Danny
Modified: 2020-05-10 07:54 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments
Text file with script code (8.76 KB, text/plain)
2020-04-09 20:51 UTC, Danny
Details
attachment-19557-0.html (2.16 KB, text/html)
2020-04-10 17:46 UTC, Danny
Details
QML script for title case (4.13 KB, text/x-qml)
2020-04-12 14:56 UTC, Urs Fleisch
Details
attachment-11489-0.html (2.49 KB, text/html)
2020-04-12 18:19 UTC, Danny
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Danny 2020-04-09 20:51:04 UTC
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).
Comment 1 Urs Fleisch 2020-04-10 06:21:34 UTC
Thanks for the suggestion. I think that this would be a useful addition and I will implement it.
Comment 2 Danny 2020-04-10 17:46:26 UTC
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.
Comment 3 Urs Fleisch 2020-04-12 14:56:18 UTC
Created attachment 127471 [details]
QML script for title case
Comment 4 Urs Fleisch 2020-04-12 15:06:46 UTC
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.
Comment 5 Danny 2020-04-12 18:19:16 UTC
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.
Comment 6 Urs Fleisch 2020-04-13 11:20:44 UTC
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
Comment 7 Urs Fleisch 2020-04-14 07:36:43 UTC
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
Comment 8 Urs Fleisch 2020-05-10 07:54:10 UTC
Fixed in version 3.8.3.