summaryrefslogtreecommitdiff
path: root/src/nautilus-batch-rename-dialog.c
Commit message (Collapse)AuthorAgeFilesLines
* batch-rename-dialog: implement _finishwip/csoriano/batch-rename-improvementsCarlos Soriano2016-09-061-57/+79
|
* batch-rename-dialog: use GTask appropiatelyCarlos Soriano2016-09-061-53/+114
|
* batch-rename-dialog: fix search & replace for . and ..Alexandru Pandelea2016-09-061-7/+35
| | | | | | | | | | | | | | | In the replace mode, when "." or ".." were typed in the replace entry, there would always pop up an error, saying that a file would have an invalid name. In this case, instead of checking the entry, the check must actually be done to all the new names to see if any of those are equal to "." or "..". Since the new names are now used in this function, these have to be obtained before. https://bugzilla.gnome.org/show_bug.cgi?id=770870
* batch-rename-dialog: add plural support for stringsAlexandru Pandelea2016-08-301-1/+3
| | | | | | The title of the dialog didn't have plural support. https://bugzilla.gnome.org/show_bug.cgi?id=770594
* general: initialize smart pointers to NULLRazvan Chitu2016-08-301-2/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770609
* Improvements to new translatable strings for batch renamingPiotr Drąg2016-08-301-4/+4
|
* batch-rename-dialog.c: increase row marginCarlos Soriano2016-08-301-1/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770586
* batch-rename-dialog: use constantsCarlos Soriano2016-08-301-3/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=770586
* general: run uncrustifyCarlos Soriano2016-08-291-2415/+2797
| | | | | | | | And make the style of Nautilus the same for all files. Hopefully we can fix all the style issues we can find in the next days, so expect a little of movement on this. https://bugzilla.gnome.org/show_bug.cgi?id=770564
* batch-rename-dialog: simplify key_press_event if'sCarlos Soriano2016-08-291-114/+106
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=768311
* batch-rename-dialog: use GIO constantsCarlos Soriano2016-08-291-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=768311
* Implement batch renamingAlexandru Pandelea2016-08-291-0/+3027
Renaming multiple files at once has been a missing feature in Nautilus for a long time. This patch implements that feature in the following way: This operation is launched in the same way as the rename one, when the selection has more than one file. When the batch renaming is launched, a dialog is shown, offering two modes. In the first mode, the user can use metadata (if available), numbering and original file name tags to create the new names. Between the tags, there also can be written normal text, which will be added in the new names. If numbering is used, the order of the files can be modified by using several criteria. In the second mode, the user can replace an existing part of the name. https://bugzilla.gnome.org/show_bug.cgi?id=768311