When renaming multiple files we have: lowercase UPPERCASE Camelcase First character uppercase But is Camelcase even Camelcase here? Reading wikipedia it seems Camelcase does not use spaces. So maybe it should be "Title Case" which would also indicate what will happen to the words with the big T and C just like the other strings shows what will happen.
Andre Miranda referenced this bugreport in commit bec303d43a62e0511e9a11a3e6bac9cc80221c0f Rename Camelcase to Title Case (Bug #15579) https://git.xfce.org/xfce/thunar/commit?id=bec303d43a62e0511e9a11a3e6bac9cc80221c0f
Makes sense. P.S. I also pushed to master, but with the wrong bug number...
Maybe change this to: THUNAR_SBR_CASE_RENAMER_MODE_CAMEL And thunar/plugins/thunar-sbr/thunar-sbr-case-renamer.c have: gboolean camelcase) if (camelcase case THUNAR_SBR_CASE_RENAMER_MODE_CAMEL: Seems like g_unichar_isspace is the function that converts the text if camelcase is true i dont know what it does. Maybe its able to convert to both camel case and title case.
Andre Miranda referenced this bugreport in commit 5f1c6df022992718d979e07d24ab06d0988f108a Rename (Bug #15579) https://git.xfce.org/xfce/thunar/commit?id=5f1c6df022992718d979e07d24ab06d0988f108a
Andre Miranda referenced this bugreport in commit 6e84219f0879d7f5024702ef7fdcbdefc34d60bb Rename (Bug #15579) https://git.xfce.org/xfce/thunar/commit?id=6e84219f0879d7f5024702ef7fdcbdefc34d60bb
(In reply to scootergrisen from comment #3) > Maybe change this to: > THUNAR_SBR_CASE_RENAMER_MODE_CAMEL > > And thunar/plugins/thunar-sbr/thunar-sbr-case-renamer.c have: > gboolean camelcase) > if (camelcase > case THUNAR_SBR_CASE_RENAMER_MODE_CAMEL: > Done. > Seems like g_unichar_isspace is the function that converts the text if > camelcase is true i dont know what it does. > Maybe its able to convert to both camel case and title case. It just checks if a character is whitespace or not.