forked from linuxmint/nemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog
2521 lines (1793 loc) · 112 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
nemo (5.6.3) vera; urgency=medium
[ Michael Webster ]
* nemo-window-menus.c: Recalculate extension/action items at an earlier stage in opening the file manu.
* nemo-extensions-list.c: Add a note regarding a memory leak.
-- Clement Lefebvre <[email protected]> Wed, 18 Jan 2023 16:11:34 +0000
nemo (5.6.2) vera; urgency=medium
[ Clement Lefebvre ]
* l10n: Update POT
[ Michael Webster ]
* nemo-places-sidebar.c: Get the expander width from the current theme instead of hard-coded.
[ Bobby Rong ]
* nemo-action: readlink before populate
* nemo-script-config-widget: monitor correct path for setup-dir-monitors
[ Michael Webster ]
* nemo-window-pane.c: Use the button-release event for showing the current location entry.
* Run generate_additional_file to populate desktop/action files with new translations.
-- Clement Lefebvre <[email protected]> Sat, 07 Jan 2023 15:53:11 +0000
nemo (5.6.1) vera; urgency=medium
[ Michael Webster ]
* pathbar/entry: Give entry-preferred mode the same persistent behavior as pathbar-preferred.
-- Clement Lefebvre <[email protected]> Tue, 13 Dec 2022 15:14:28 +0000
nemo (5.6.0) vera; urgency=medium
[ veractor ]
* Actions: Escape device paths also (#3057)
[ Michael Webster ]
* Use Github actions instead of CircleCI.
[ veractor ]
* Actions: Escape path spaces when they are unquoted
* eel: Merge shell character escape functions
[ Clement Lefebvre ]
* icon view: don't highlight selected icons
* nemo-desktop: Rename new-launcher -> 90_new-launcher
* nemo-desktop: Add Desktop Settings action
* l10n: Update POT and files
[ Michael Webster ]
* search: Perform deep counts on a search directories full file list, instead of the directory itself, when opening properties.
* nemo-search-directory-file.c: Add a missing NemoDirectory method.
* location bar: Add an option to always switch back to the pathbar (breadcrumbs) widget after entering a location or otherwise using the location entry.
* Prevent interactive search from interfering with keystrokes intended for the window handler (for focusing the location entry).
[ Oliver Kästner ]
* debian/control(nemo-dbg): priority extra->optional
[ Michael Webster ]
* Remove custom btime (creation time) code.
* Add support for file creation time via GFileInfo.
* Add ability to display date columns in a monospaced font.
* nemo-file-operations.c: Fix null pointer error.
* nemo-file-operations.c: Handle a couple more potential problems with g_file_get_basename().
[ Clement Lefebvre ]
* list view: Do show dates in monospace font by default
[ Michael Webster ]
* Change location entry/pathbar behavior.
* Fix build on LMDE.
* Toolbar: Use actions to control the location/path bar switching.
* toolbar: Hide the location entry toggle when not needed, and limit its shortcut to making sure the entry is focused.
* pathbar/entry: Fix a couple of issues when changing pathbar/entry preference.
-- Clement Lefebvre <[email protected]> Mon, 21 Nov 2022 10:36:27 +0000
nemo (5.4.3) vanessa; urgency=medium
[ Fabio Fantoni ]
* fix spelling error spotted by lintian
[ veractor ]
* App chooser: Quote custom executable file paths (#3041)
-- Clement Lefebvre <[email protected]> Sat, 13 Aug 2022 12:30:16 +0200
nemo (5.4.2) vanessa; urgency=medium
[ veractor ]
* Actions: Escape quoted content in paths (#3026)
[ Bobby Rong ]
* libnemo-private: add missing gio-unix-2.0 dependency (#3028)
[ Michael Webster ]
* nemo-view.c: Use a shorter menu update delay when the update has been triggered by a selection change.
-- Clement Lefebvre <[email protected]> Thu, 21 Jul 2022 11:11:21 +0200
nemo (5.4.1) vanessa; urgency=medium
[ Jeremy7701 ]
* Add epub search helper (#2867)
[ Michael Webster ]
* Fix installation of epub search helper.
[ Joshua Peisach ]
* icon-container: Don't free a pointer after it has already been freed
[ veractor ]
* Actions: Escape tabs and newlines in paths
* Actions: Escape backslashes in paths
* Actions: Escape number signs in paths (#3022)
-- Clement Lefebvre <[email protected]> Fri, 15 Jul 2022 15:18:56 +0200
nemo (5.4.0) vanessa; urgency=medium
[ Michael Webster ]
* nemo-list-model.c: Fix crash/inconsistent model when expanding an unmonitored directory that no longer has any children.
* nemo-list-view.c: Use the original button-press coordinates when deciding on dnd vs rubberbanding.
* nemo-action.c: Handle get_device_path() failing more gracefully.
* nemo-window-manage-views.c: Only close a window when its location is deleted if its immediate parent was the desktop and the window also has no backward history.
* progress handler: Tell the wm that the progress window is a dialog.
* menus: when activating File->New Window in a search results view, open a new window using the original uri instead of the virtual search results location.
* Don't allow toolbar buttons to gain input focus.
[ okaestne ]
* port from libnotify to GNotification
* build: remove dependency on libnotify
[ Jeffrey Knockel ]
* Add !NEMO_IS_DESKTOP_WINDOW() guards to callbacks
[ Leigh Scott ]
* Add native exfat renaming support (#2967)
* Sync sort-directories-first with gtk file chooser (#2971)
[ patlefort ]
* Add option to disable or enable content type detection of mounted media. (#2913)
[ Clement Lefebvre ]
* CI: Update targets
* l10n: Update POT
[ Michael Webster ]
* Add symbols file for the extension library.
[ Yofenry ]
* added nemo github url in THANKS
-- Clement Lefebvre <[email protected]> Fri, 10 Jun 2022 15:58:12 +0200
nemo (5.2.4) una; urgency=medium
[ Michael Webster ]
* nemo-file.c: Remove a file's 'failed thumbnail' marker when refreshing, if it has one.
-- Clement Lefebvre <[email protected]> Tue, 11 Jan 2022 16:05:44 +0000
nemo (5.2.3) una; urgency=medium
[ Michael Webster ]
* nemo-file-operations.c: Initialize 'auto_rename' before using it.
* nemo-query-editor.c: Fix editor issue when using tabs.
-- Clement Lefebvre <[email protected]> Fri, 31 Dec 2021 11:17:39 +0000
nemo (5.2.2) una; urgency=medium
[ Michael Webster ]
* Fix mistake in shortcuts window.
[ Clement Lefebvre ]
* l10n: Generate files
* l10n: Update POT
-- Clement Lefebvre <[email protected]> Thu, 16 Dec 2021 10:14:04 +0000
nemo (5.2.1) una; urgency=medium
[ Michael Webster ]
* search: Use the python xlrd module to read .xls files.
-- Clement Lefebvre <[email protected]> Thu, 09 Dec 2021 11:23:52 +0000
nemo (5.2.0) una; urgency=medium
[ Michael Webster ]
* nemo-desktop-overlay.glade: Fix label marked untranslatable.
* makepot: Add shortcuts ui file.
* nemo-view.c: Follow the same invocation rules for bulk renaming as we do for normal renaming.
* Install language definitions to gtksourceview-4.
* nemo-file.h: Use the correct icon names for read-only and unreadable emblems.
* mount-archive.nemo_action: Use gnome-disk-image-mounter instead of gvfsd-archive.
* debian/control: Add gnome-disk-utility to recommends (for image mount action).
* Add a manpage for nemo-desktop and clean up nemo's a bit.
[ JosephMcc ]
* nemo-toolbar.c: Use flat button style
[ Joshua Peisach ]
* extension gir: Export 'libnemo-extension' to the gir
[ Michael Webster ]
* actions: Refactor to remove unnecessary methods.
* actions: Add new conversion token for a file's parent uri (with selection_count > 0) and location uri (selection_count == 0).
* actions: Add UriScheme specifier in the action definition.
* nemo-window-manager-views.c: When removing a folder, don't close the entire window if that folder is open on another tab.
* nemo-window.c: Don't ignore tab events when renaming.
* nemo-directory-async.c: Don't write the entire buffer into the pixbuf loader all at once.
* copy/paste: Make the clipboard contents persist after the process ends.
* nemo-search-engine-advanced.c: Ensure a path before using it as a key in the skip table - g_str_hash cannot be NULL.
[ Isaac Carter ]
* search: Update tooltip text (#2810)
[ Minabsapi ]
* file operations: Add duplicate button (#2841)
[ Clement Lefebvre ]
* file-operations: Rename button label in previous commit
* l10n: Generate files
* l10n: Update POT
-- Clement Lefebvre <[email protected]> Mon, 15 Nov 2021 14:25:48 +0000
nemo (5.0.3) uma; urgency=medium
[ Michael Webster ]
* search: Use untex instead of detex to search latex files.
* search: Fix build from previous commit.
* nemo-search-engine-advanced.c: Also match \r (carriage return) in the newline filter.
* nemo-blank-desktop-window.c: Don't try to open a nonexistent menu.
-- Clement Lefebvre <[email protected]> Fri, 02 Jul 2021 10:49:34 +0100
nemo (5.0.2) uma; urgency=medium
[ Michael Webster ]
* settings: Make the default search button states match the old search behavior.
* nemo-search-engine-advanced.c: Escape paths properly before passing them to search helpers.
* nemo-query-editor.c: Don't show the bar separator if the search box isn't being shown.
* Search: Allow TryExec to be a list of programs.
* Search: Update search README.md for TryExec changes.
* search-helpers/nemo-mso-to-txt.c: Refactor and improve error handling.
* Search: Add .doc, .xls and .tex helpers.
* Search: Add .ppt helper.
* debian/control: Make search helper programs dependencies instead of recommends.
* nemo-mime-actions.c: Only add entire view file list to an image viewer launch if its commandline supports multiple files.
* nemo-search-engine-advanced.c: Ensure that the final snippet endpoint is no greater than the original endpoint.
* nemo-search-engine-advanced.c: a couple fixes.
* search: Disable content search for some special folders.
* nemo-view.c: Update context menu item visibility from preferences after updating the menu items from any extensions.
* nemo-view.c: Clear extension menu items during real_update_menus.
* nemo-view.c: Move call added to last commit to nemo_view_stop_loading.
-- Clement Lefebvre <[email protected]> Fri, 25 Jun 2021 16:58:08 +0100
nemo (5.0.1) uma; urgency=medium
[ Michael Webster ]
* nemo-search-engine-advanced.c: Convert input data to utf8, and manipulate match snippets as utf8 to ensure they display correctly in the tooltip.
* nemo-list-view.c: Fix a memory leak.
[ Eli Schwartz ]
* make ps2txt search helper work on non-debianlike distros
[ Michael Webster ]
* toolbar: Fix updating the state of the "Up" button.
[ Clement Lefebvre ]
* l10n: Fix msgid
* l10n: Remove msgids
* l10n: Update POT
[ Michael Webster ]
* search: Add a readme for search helpers, move third-party helpers into the search-helpers directory, clean up search logging a bit.
* search helpers: Change the group name, follow my own rules for mimetype list termination, improve readme.
* nemo-window-menus.c: Update extension and action entries in the File menu when it is shown.
* nemo-tree-sidebar.c: Fix states for pin/unpin and create-folder menu items.
* toolbar: Disable the 'create-folder' button in non-writable locations.
-- Clement Lefebvre <[email protected]> Thu, 10 Jun 2021 14:01:43 +0100
nemo (5.0.0) uma; urgency=medium
[ icarter09 ]
* Issue 1881. Adds keyboard shortcut for Same Location as other pane. Adds shortcut to shorcut UI.
* Issue 1263. Enables F6 to immediately toggle between panes.
[ Michael Webster ]
* nemo-shortcuts.ui: Add a new section for dual-pane and put related shortcuts there.
[ Eric ]
* Added option to toggle sorting favorites before other files
* Fixed whitespace
[ Michael Webster ]
* nemo-main-application.c: Remove 30s inactivity timeout.
* nemo-menu-provider.c: Don't request menu items for selections if there is no selection - not all extensions guard against this.
* nemo-view.c: Partially revert b4d0318b318f4f4f20cbd8e89c7859f69aeb6214
[ John Lindgren ]
* Fix segfault when g_file_info_get_symlink_target() returns "".
[ Steven Xu ]
* feat: added the `--existing-window` flag to open URLs in an existing window, cf https://github.com/linuxmint/nemo/issues/2674
* feat: use `gtk_window_present_with_time()` instead of `gtk_window_present()`, otherwise the window manager will ignore this window's focus request and try to just mark it urgent instead (flashing in the window list for example)
[ icarter09 ]
* Fixes 2696. Detects if Trash is supported.
[ Michael Webster ]
* nemo-places-sidebar.c: Fix bookmark separator positioning to account for conditionally hidden immovable elements.
* nemo-desktop-application.c: Remove root check.
* nemo-view.c: Hide trash menu item when trash is not supported.
* Add option to treat root as normal.
* actions: Implement passing the active window xid to exec strings.
* nemo-window-menus.c: hide gvfs locations based on their actual availability, not strictly on the process uid.
* nemo actions: Implement reverse dependencies.
* nemo-view.c: Only update the context menu when it's about to be shown.
[ Steven Xu ]
* docs: added docs for the `--existing-window` flag
[ Cerulean ]
* Allow images to be viewed in supported image viewers in the same order as they are shown in the current nemo view (directory or search).
* Remove g_list_insert_before_link call for compatibility with older glib versions.
[ Michael Webster ]
* Revert "nemo-view.c: Only update the context menu when it's about to be"
* nemo-view.c: Delay actions and extension menu providers from updating until the menu is requested.
[ Joshua Peisach ]
* bookmark-list: Clean up and close memory leak General cleanup. Use NemoBookmarkList instead of casting itself every line.
[ kysrpex ]
* Prevent the menu bar from disappearing when some of its elements is currently selected.
* Remove the menu bar inmediately after selecting an item (if configured to auto-hide).
[ Michael Webster ]
* nemo-directory.c: Fix memory leak.
* nemo-directory.c: Fix previous commit which altered potential behavior more than necessary.
[ icarter09 ]
* Issue 541. Removes spaces from Samba drive paths in location bar.
[ Michael Webster ]
* nemo-list-view.c: Implement 'double-click blank area to go up one (#2646)
[ icarter09 ]
* Fixes #2244. Adds logic to strip leading whitespace and checks for absolute path when copy/pasting value.
[ Isaac Carter ]
* Fixes Issue #2415. Removes nemo self checks (#2439)
[ Michael Webster ]
* nemo-places-sidebar.c: Sort all devices in the sidebar.
* nemo-location-entry.c: Don't modify a string we don't own.
* Implement Content search.
* Add a search helper for Open XML (MS Office).
-- Clement Lefebvre <[email protected]> Mon, 31 May 2021 12:21:41 +0100
nemo (4.8.5) ulyssa; urgency=medium
[ Michael Webster ]
* nemo-file-operations.c: re-add favorite removal during a delete operation.
* nemo-view.c: Hide favorites and pinning menu items when in the trash folder.
* nemo-view.c: Don't allow trash/delete to work inside the favorites view.
* nemo-view.c: Don't show favorite/pinning items in menubar->edit when there is no selection.
* nemo-file-operations.c: When trashing (not deleting) a folder, check favorites and remove any descendents of the toplevel.
* nemo-file-operations.c: Update favorites when moving files from their real location.
* nemo-file.c: Don't try to set metadata on a null file when adding or removing favorites.
[ Leigh Scott ]
* Fix desktop bold fonts
[ Michael Webster ]
* nemo-icon-canvas-item.c: restore the style context after drawing any caption text.
* nemo-list-view.c: Fix NemoFile leaks.
* nemo-properties-window.c: Fix leak. nemo-directory-async.c: remove extra g_object_unref.
* nemo-file: Add a convenience macro to print file uris.
* nemo-view.c: Fix leak when generating extension menu items, nemo- menu.c: Free list of menu items during finalize, not just the list itself.
* nemo-places-sidebar.c: Use a safer function to check for favorite and recent support.
[ Lars Mueller ]
* nemo-file-operations.c: Fix #2075
[ Michael Webster ]
* nemo-list-view.c: Only allow double-clicks with the primary and middle buttons.
[ icarter09 ]
* Fixes #2239. The value for customizing the desktop layout for Sort items was not being saved.
[ Michael Webster ]
* nemo-directory-async.c: Fix favorite check callback arguments, remove unnecessary g_free().
[ icarter09 ]
* Issue 1908: Sets correct values for x and y for file->details->cached_position.
* Issue 2666. Blocks emoji chooser from breaking Nemo
* Issue 591. Increases emit time of change for progress update.
-- Clement Lefebvre <[email protected]> Fri, 26 Feb 2021 11:37:53 +0000
nemo (4.8.4) ulyssa; urgency=medium
[ Michael Webster ]
* nemo-tree-sidebar.c: Use correct icon for favorites.
-- Clement Lefebvre <[email protected]> Sun, 03 Jan 2021 11:32:36 +0000
nemo (4.8.3) ulyssa; urgency=medium
[ Leigh Scott ]
* file-operation: Prevent recursion to speed up emptying trash
* file-operations: auto-escape filenames on native ntfs mounts
* file-operations: auto-escape filenames on fuseblk mounts
* file-operations: don't auto-escape semicolon
* Clean up
[ Michael Webster ]
* nemo-file-operations: Remove a toplevel folder from favorites during a delete operation.
* nemo-file.c: Check if a favorite:///file is a symbolic link before trying to look up its target uri.
* nemo-file.c: nemo_file_set_is_favorite - always set metadata, not just when a file is a symlink.
* nemo-file.c: nemo_file_is_local - Use the target file uri to decide if a file in the favorites:/// view should be considered local.
* nemo-view.c: Hide the 'move to trash' menu items for recent and favorites, and hide the 'delete' item in favorites.
* nemo-view.c: Fix visibility check for the trash menu item.
* favorites: Accept dnd to places-sidebar item to add favorites, refactor existing dnd in list and icon views.
* nemo-file.c: Check for a broken symbolic link before trying to get a favorite's target uri.
* nemo-file-conflict-dialog.c: Fix hidpi scaling of the file icons.
* nemo-file.c: Allow the favorites folder to better respect the various thumbnailing settings.
[ Bill Doyle ]
* Add escaping for percent sign in action Exec
[ Érico Rolim ]
* build: fix typelibdir in libnemo-extension/meson.build.
[ Michael Webster ]
* nemo-desktop-manager.c: Recreate the desktop when the primary monitor's scale factor changes.
-- Clement Lefebvre <[email protected]> Sat, 02 Jan 2021 18:29:32 +0000
nemo (4.8.2) ulyssa; urgency=medium
[ Michael Webster ]
* Fix some leaks revealed by valgrind.
* nemo-directory-async.c: Fix an issue with the idle favorite check.
* nemo-places-sidebar.c: Remove favorites signal listener when the sidebar is destroyed.
-- Clement Lefebvre <[email protected]> Tue, 08 Dec 2020 12:57:48 +0000
nemo (4.8.1) ulyssa; urgency=medium
[ icarter09 ]
* Removed unused variable
* nemo-window.c: Blocks operations while renaming. Fixes #1854
[ Michael Webster ]
* build: Update some dependencies.
[ NikoKrause ]
* change favorites icon
[ icarter09 ]
* Fixes 276. Remove type-ahead search on mouse click
[ Isaac Carter ]
* Remove Send by Email action (#2574)
* Hide some menu items when running as root (#2582)
-- Clement Lefebvre <[email protected]> Tue, 08 Dec 2020 10:30:16 +0000
nemo (4.8.0) ulyssa; urgency=medium
[ Soapux ]
* Misc cleanup
[ Oliver Smith ]
* data/nemo.desktop.in: fix icon
[ romovs ]
* Add option to preview files up to 64GB
[ Fabio Fantoni ]
* Drop Debian menu file
[ btryba ]
* Fixed small copy-paste bug.
[ Fabio Fantoni ]
* debian: Bump debhelper compat level to 12
* small improves to debian/copyright and debian/not-installed
* debian/rules: Drop no longer neede installmime call
* debian/rules: Drop dh_makeshlibs override, no longer needed
* debian/rules: Enable hardening bindnow
* debian: readd dh-python
* fix lmde4 build
[ Michael Webster ]
* debian/control: Remove unused build dependencies.
[ btryba ]
* Removed unused variables in pathbar function (#2549)
[ okaestne ]
* Remove uft8 colon-like char in datetime strings
[ Michael Webster ]
* Add XAppFavorites support.
* .gitignore: Change the build directory name.
[ icarter09 ]
* Fix for #2513. Avoid single quote escape by checkng for QUOTE_TYPE_SINGLE and QUOTE_TYPE_DOUBLE.
[ Michael Webster ]
* nemo-action.c: Fix build from previous commit typo.
[ Fabio Fantoni ]
* make sure pango development files are installed
[ icarter09 ]
* Fixes #942. Uses g_content_type_get_description for when mime type is NULL.
[ btryba ]
* Fixing small memory leak. Freeing volume_monitor per GIO documentation.
[ icarter09 ]
* Fixes #2499. Changes the option from -x to -- when using gnome-terminal
[ Isaac Carter ]
* nemo-connect-dialog: Remove Help button (#2562)
* nemo-mime-actions.c: Don't show mime button if the activation URI is null (#2559)
[ Clement Lefebvre ]
* l10n: Update POT
* l10n: Generate files
-- Clement Lefebvre <[email protected]> Thu, 26 Nov 2020 13:54:02 +0000
nemo (4.6.5) ulyana; urgency=medium
[ Michael Webster ]
* nemo-window-pane.c: Only show the active window-pane's toolbar when toggling toolbar visiblity.
* nemo-view.c: Don't cache the selection, this has been broken by deferred attribute loading.
* debian/rules: Set buildtype to 'debug'.
* nemo-bookmark-list.c: Don't get bookmark icon property notifications.
-- Clement Lefebvre <[email protected]> Tue, 11 Aug 2020 12:32:30 +0100
nemo (4.6.4) ulyana; urgency=medium
[ Ԝеѕ ]
* display last modified date property on directories
[ Michael Webster ]
* nemo-places-sidebar.c: Fix regression with using the icon-name property in GtkCellRendererPixbuf.
* nemo-directory: Improve visual performance in smaller folders.
-- Clement Lefebvre <[email protected]> Sun, 21 Jun 2020 13:39:41 +0100
nemo (4.6.3) ulyana; urgency=medium
[ Michael Webster ]
* icon view: Fix additional line calculation for labels, and tweak spacing between icons.
* nemo-icon-canvas-item.c: Only show full label text when an item is hovered over, but not if it is merely selected.
* nemo-file-management-properties.glade: Add the modal flag to the window and increase vertical size slightly.
[ Soapux ]
* meson: Remove a workaround for old meson versions
[ Fabio Fantoni ]
* use debhelper 11 for integrated meson support
[ Clement Lefebvre ]
* CI: Use explicit tags
-- Clement Lefebvre <[email protected]> Sat, 06 Jun 2020 14:52:58 +0100
nemo (4.6.2) ulyana; urgency=medium
[ Michael Webster ]
* nemo-bookmarks-window.c: Refactor to improve reliability.
* Defer extension-provided file attributes until the file is made visible in a view.
* nemo-progress-ui-handler.c: Use XAppStatusIcon.
* nemo-list-view.c: Cancel the visible files callback when the view is cleared or destroyed.
* nemo-file.c: Only show the 'icon loading' icon when an icon is actually loading.
-- Clement Lefebvre <[email protected]> Wed, 27 May 2020 12:34:09 +0100
nemo (4.6.1) ulyana; urgency=medium
[ Michael Webster ]
* nemo-file.c: Fix refresh removing existing thumbnails.
* Fix new build warnings.
* i18n: Localize the mimetype definitions.
* debian/control: Add itstool build dependency.
* nemo-icon-container.c: Set a transient parent on the interactive search popup.
[ Clement Lefebvre ]
* l10n: Update POT
[ Michael Webster ]
* all: Fix some memory leaks
* icon view: Use a fixed vertical spacing in the normal icon view.
* nemo-thumbnails.c: Use the default idle priority for starting the thumbnail thread.
* thumbnails: generate/load thumbnails on visible items only, and drop background loading.
[ Clement Lefebvre ]
* CI: Target Mint 20 and LMDE 4
-- Clement Lefebvre <[email protected]> Thu, 21 May 2020 11:19:42 +0100
nemo (4.6.0) ulyana; urgency=medium
[ Michael Webster ]
* nemo-window.c: Monitor and react to scale-factor changes.
* nemo-icon-container.c: clear any existing drag info when the icon view's location changes.
[ Leigh Scott ]
* nemo-file-operations.c: Copy file and keep timestamps of original file including remotes
[ Michael Webster ]
* control: Remove python2 dependencies
[ leigh123linux ]
* nemo-global-preferences: use 'extern' properly
[ Michael Webster ]
* meson.build: Don't be confusing when pango 1.44.0 isn't found.
[ worldofpeace ]
* build: use define_variable for typelib directory
[ Michael Webster ]
* Fix mistake in --help output.
[ Daniel Clarke ]
* Fallback to uri when path is null in title
[ Luke Scott ]
* Sort nemo actions menu alphabetically
[ J. Luke Scott [thinkpad] ]
* linter fix for previous
[ sidorsett ]
* Update nemo-view.c
[ JosephMcc ]
* nemo-notebook: Add a minimum width for the tab labels
[ Kamil Chojnowski ]
* Add %e action token
[ Michael Webster ]
* nemo-global-preferences.c: Fix base-2-full size format display.
[ Timothy Arceri ]
* Remove .hidden file code now that gio does if for us
[ NikoKrause ]
* nemo action: use different icons for pin/unpin
[ Michael Webster ]
* nemo-tree-sidebar.c: Allow using separate icons for pin and unpin, and use the new xapp icons from the previous commit.
[ JosephMcc ]
* settings: Set the default width of the sidebar to 170
[ Ján Jančár ]
* Add tracker support (#2334)
[ Clement Lefebvre ]
* l10n: Update POT
* l10n: Generate files
-- Clement Lefebvre <[email protected]> Wed, 13 May 2020 14:00:42 +0100
nemo (4.4.2) tricia; urgency=medium
[ leigh123linux ]
* meson.build: Disable GLib deprecation warnings
[ Leigh Scott ]
* file-operations: fix copying from the trash
[ Michael Webster ]
* list view: Don't remove the dummy (Loading) entry except during post-loading updates.
* nemo-tree-sidebar.c: Don't free the NemoFile after setting up the context menu for showing, it is owned by the tree model.
[ leigh123linux ]
* Remove tracker
[ Leigh Scott ]
* nemo-icon-canvas-item.c: Don't hyphenate long filenames
* eel-editable-label.c: Don't hyphenate long filenames
[ Michael Webster ]
* nemo-program-choosing.c: Remove unused variable that was causing a warning during the build.
[ Leigh Scott ]
* Use meson for pango-1.44 check
-- Clement Lefebvre <[email protected]> Thu, 12 Dec 2019 11:43:40 +0000
nemo (4.4.1) tricia; urgency=medium
[ Michael Webster ]
* nemo-desktop-metadata.c: Remove a key when the metadata string is null instead of attempting to set the key to null (which doesn't work for GKeyfiles).
* nemo-window.c: Disconnect thumbnail settings handlers when the window is destroyed.
-- Clement Lefebvre <[email protected]> Thu, 28 Nov 2019 20:00:39 +0000
nemo (4.4.0) tricia; urgency=medium
[ Michael Webster ]
* nemo-query-editor.c: Don't allow activation when there is no valid search string.
* nemo-window-slot.c: Don't try to set anything on query if it's NULL.
* nemo-main-application.c: when parsing options, don't try to use part of an array that has already been freed, make a copy instead.
* nemo-main-application.c: Fix variable name for consistency and spelling.
* nemo-program-choosing.c: Update how desktop files are launched - launch_uris_as_manager does a better job, and this also replaces a previous patch for a pkexec issue in desktop files, and is a more complete fix.
* preferences: Reveal the default sort direction setting.
[ AO-LocLab ]
* Correction to the French translations (#2228)
[ Michael Webster ]
* context menu: Make individual menu item visibility configurable in preferences, and eliminate the simple/complex menu option.
* gsettings: re-add old context menu entry to prevent crashes with old nemo-fileroller verions.
[ Clement Lefebvre ]
* l10n: Fix some msgids
* l10n: Update POT
* l10n: Generate files
-- Clement Lefebvre <[email protected]> Sat, 16 Nov 2019 15:34:24 +0100
nemo (4.2.2) tina; urgency=medium
[ Clement Lefebvre ]
* l10n: Update POT
[ Michael Webster ]
* nemo-desktop-link.c: Don't allow an attempt to rename mounts.
-- Clement Lefebvre <[email protected]> Thu, 25 Jul 2019 10:28:21 +0200
nemo (4.2.1) tina; urgency=medium
[ Clement Lefebvre ]
* l10n: Fix msgid
* l10n: Fix msgids
[ gm10 ]
* Fix nemo_global_preferences_get_size_prefix_preference getting set to the wrong value (#2165)
[ Michael Webster ]
* nemo-file-operations.c: Add comment for unused singular translation, make the string obviously unused.
* nemo-view.c: Always show the pin/unpin actions.
* various: Fix a couple leaks
* nemo-list-model.c: When the last child of a node is removed, Handle re-adding a dummy row (or not) in the file removed handler, instead of always adding one, then removing it on parent's subsequent changed call.
* nemo-list-view.c: When triggering a rename using the 'slow double click' trigger, check whether the file is a folder to determine whether to select all or only non-extension text.
* nemo-view.c: Use the stack for running the action visiblity cycle.
* nemo-*-view.c: Update the selection info when a view has finished loading.
[ Clement Lefebvre ]
* Toolbar: Don't show thumbnail button by default
-- Clement Lefebvre <[email protected]> Wed, 10 Jul 2019 12:10:27 +0200
nemo (4.2.0) tina; urgency=medium
[ Michael Webster ]
* nemo-view.c: Don't ignore non-symbolic extension menu icons.
* nemo-icon-view.c: Don't apply the 'ignore metadata' mode to the desktop, this prevents the icon size from loading or saving properly when that setting is active.
* nemo-icon-info: Use different text widths for the desktop than for windowed mode.
[ Leigh Scott ]
* Update URL (#2045)
[ Michael Webster ]
* nemo-query-editor.c: Ignore leading and trailing whitespace in search query text.
* misc: Fix some memory leaks revealed by valgrind.
* Add keyboard shortcuts page
* nemo-bookmarks-window.c: Fix support for Computer/Bookmarks section separator.
* nemo-bookmarks-window: Remove help button, fix some breakpoint accounting during dnd.
* nemo-view.c: Never have more than one connection to an action's 'activate' signal.
* actions: Monitor gsettings condition changes and trigger menu updates when these or any dbus conditions change.
* application: Add debug flag to command line options, remove environment variable-based verbose mode for actions.
* nemo-action: Cleanup
* nemo-blank-desktop-window.c: Fix initial popup menu failure due to a not-fully-initialized action manager.
* nemo-action.c: Allow discovery of tokens in any order in an action line.
* nemo-action.c: Queue gsettings condition updates (same as dbus updates). This should have been done in 92c58403f12436c65a1c.
[ JosephMcc ]
* Update nemo-style-fallback-mandatory.css
[ devlearner ]
* Add Move to Trash confirmation option
[ Michael Webster ]
* nemo-file-operations.c: Remove unused translatable string.
[ Max Sistemich ]
* nemo-window-manage-views.c: ignore cache when thumbnails are disabled
[ Michael Webster ]
* nemo-window-manage-views.c: add a weak pointer to the window slot's bad cache bar when spawned.
* preferences: Finalize our settings instances using the eel_call_at_shutdown function. This occurs at a point closer to exit, and allows handlers to disconnect cleanly.
[ Lars Mueller ]
* Reimplement thumbnailing-per-folder and add inheritance for view type
* A couple of bugfixes
[ Michael Webster ]
* nemo-main-application.c: Make sure any command-line geometry option takes precedence over the saved window geometry.
[ Clement Lefebvre ]
* nemo-window-slot: Remove trailing spaces
* Navigation: Fix go to parent action for Samba
[ Michael Webster ]
* nemo-window-slot.c: Use GString for manipulating samba uris, it makes what's being done to the uri a bit more explicit.
* nemo-window-slot.c: (samba) When navigating up from a host, load network:/// instead of smb:///.
* nemo-icon-container.c: Wait to un-freeze canvas updates until the renaming operation has completed.
* nemo-file.c: Check for NULL when converting the raw file timestamp to a GDateTime.
[ JosephMcc ]
* desktop-prefs: Change to match the new cinnamon settings style
[ Michael Webster ]
* nemo-desktop-overlay.glade: Update to match new settings format. (mostly)
[ steve ]
* Nemo desktop entry - ensure caret-color matches text color
[ okaestne ]
* nemo-mime-application-chooser.c: escape file names in Open With tab
[ Tcc100 ]
* nemo-view.c: Open Terminal in parent if a file is selected
[ Clement Lefebvre ]
* Start implementing exec support
* Optimize nemo_action_get_visibility()
[ Michael Webster ]
* nemo-action.c: Support multiple selection and action path for exec condition checks.
* nemo-action.c: Support tokens in exec condition calls.
* sample action: Update to include exec conditions, new correct method to enable debugging.
* Revert "nemo-file-operations.c: Remove unused translatable string."
* Remove some unused code, optimize some frequently-used settings.
* nemo-view.c: Clear a source id at the end of the rename delay callback.
* Remove the context menu toggle (the +/- button) for displaying additional menu items.
* Add a mechanism for pinning a file to the top of a view.
* Improve pin icon.
* pinned emblem: try to improve (again)
* icon view: Use bold text instead of an emblem for pinned files.
* nemo-places-sidebar.c: Workaround incorrectly-sized popup menus when right- clicking on a currently-unselected item.
[ Simon Brown ]
* move code after early return statements where possible (#2149)
[ Clement Lefebvre ]
* l10n: Update POT
* l10n: Generate additional files
[ Clement Masci ]
* Option to open uri in tabs at startup
[ Clement Lefebvre ]
* l10n: Update POT
-- Clement Lefebvre <[email protected]> Sun, 23 Jun 2019 17:20:47 +0200
nemo (4.0.6) tessa; urgency=medium
[ Clement Lefebvre ]
* Packaging: Depend on cinnamon-l10n
[ Michael Webster ]
* nemo-program-choosing.c: add a wrapper for simple .desktop files that invoke pkexec.
* nemo-desktop-overlay.c: Don't respond to slider value-changed signals when syncing *from* the view.
* nemo-list-view.c: Always display at the default list view zoom level during a search.
* nemo-icon-view.c: Don't rely on the default icon zoom level for the grid desktop, hardcode to normal instead.
-- Clement Lefebvre <[email protected]> Sat, 15 Dec 2018 14:00:23 +0000
nemo (4.0.5) tessa; urgency=medium
[ Michael Webster ]
* nemo-icon-view.c: Correctly initialize to the default view zoom level when ignore-metadata mode is active.
* per-folder thumbnails: Remove toolbar thumbnail button preference, instead base visibility on the show-image-thumbnails preference.
-- Clement Lefebvre <[email protected]> Tue, 11 Dec 2018 11:26:20 +0000
nemo (4.0.4) tessa; urgency=medium
[ Michael Webster ]
* nemo-window.c: Fix hidden menu alt-key activation.
* nemo-places-sidebar.c: Keep the selected bookmark scrolled into view when a selection is made on a bookmark.
* nemo-list-view.c: Ignore triple-clicks and reset the double-click last_click_time when the current double-click succeeds.
* nemo-extension-config-widget.c: Allow description to be multi-line instead of reverting to a horizontal scroll bar.
* nemo-list-view.c: Don't use fixed-height mode, it does not work well with zoom changes.
-- Clement Lefebvre <[email protected]> Thu, 06 Dec 2018 13:18:32 +0000
nemo (4.0.3) tessa; urgency=medium
[ Michael Webster ]
* nemo-action.c: Don't include previously inserted characters/text in subsequent token matching - skip ahead based on the inserted text length, so we avoid potentially parsing escape codes that are part of a file's uri.
* places and tree sidebars: Listen for action manager reloads, rebuild popup menus when needed.
* places sidebar: Enable actions to work properly even when the item being right-clicked/context-menu'd is not the currently loaded view.
* nemo-tree-sidebar.c: Fix memory leak.
-- Clement Lefebvre <[email protected]> Tue, 27 Nov 2018 17:20:40 +0000
nemo (4.0.2) tessa; urgency=medium
[ Michael Webster ]
* nemo-file-management-properties.c: Don't drop builder object ref until the window is closed, as callbacks to setting changes refer to it still.
[ itzexor ]
* desktop/extension config: remove incorrect tooltips
[ Michael Webster ]
* nemo-desktop-overlay.c: Don't use g_clear_pointer to destroy a widget, this causes build warnings in newer glib.
* nemo-properties-window.c: If the icon picker is spawned on a file that has an existing custom icon name or path, display it initially in the picker.
* nemo-window-manage-views.c: When clearing thumbnails for a view refresh, drop the NemoIconInfo cache as well.
-- Clement Lefebvre <[email protected]> Mon, 19 Nov 2018 09:51:30 +0000
nemo (4.0.1) tessa; urgency=medium
[ Michael Webster ]
* nemo-application.c: Check for "nemo" in the current theme, instead of "nemo-window". Remove unintentional additions to nemo-style- application.css which were made in 21a960712bf4d7688.
* nemo-desktop: Simplify view layout preferences, other changes.
* desktop overlay: Use normal window hints instead of hidden. Allow resizing, assign an icon (and use XAppGtkWindow so the icon isn't blurry). Make sure all the action names are not marked as translate. Show the monitor plug name and dimensions when displaying view settings.
[ Clement Lefebvre ]
* l10n: Update POT
-- Clement Lefebvre <[email protected]> Mon, 12 Nov 2018 15:10:50 +0000
nemo (4.0.0) tessa; urgency=medium
[ Michael Webster ]
* Version bump for dev.
* libnemo-extension: Refactor a bit, replace a lot of boilerplate with macros, simplify doc generation. Documentation needs more work at some point.
* nemo-file.c: Do a better job of figuring out the mimetype for empty files.
* Add creation time (btime) support.
* preferences window: Add toggle for creation date in tooltips.
* nemo-file-info.h: Don't use G_DECLARE_INTERFACE - it doesn't allow us to properly use NemoFile for its vtable - it works but throws a ton of build warnings and isn't safe.
* misc: Clean up build warnings
* icon view: remove some deprecated paths (gtk doesn't return anything useful anymore.)
* nemo-icon-canvas-item.c: Insert some space between the icon and label bounds in compact view.
* nemo-statusbar.c: Remove custom scroll handler. The gtk one works correctly now.
* menus: Respect the gtk-menu-images preference for the primary 'open/ open-with' menu item.
* meson.build: Add option to disable omit-frame-pointers from build (useful for perf profiling.)
* icon container: Generate tooltips for icon items on-demand, instead of when the view loads.
* meson.build: show profiling flag status in config summary.
* nemo-icon-info: Optimize icon lookups by GIcon.
* search: Respect the current state of the 'show hidden files' setting when calculating results.
* nemo-query-editor.c: don't intercept keys when hidden.
* nemo-view.c: Decrease minimum update interval.
* nemo-view: Optimize *_get_selection(), don't create deep copies when not necessary.
* nemo-file: Remove pixbuf cached in NemoFile.
* nemo-list-model.c: Improve accounting for dummy expander row, so it more reliably removes the expander for empty folders.
* nemo-file.c: Cache some heavily used values from date construction, particularly caching of the GTimeZone object for use in GDateTime construction.
* icon view: Remove "tighter layout" option.
* nemo-icon-info: don't implement as a gobject.
* nemo-mime-actions.c: Don't offer the 'Make executable and run' option by default.
* nemo-mime-application-chooser.c: Remove hacks for file-picker button.
* nemo-icon-canvas-item: Remove some unused code for embedded text
* Icon containers: Improve spacing, increase icon sizes.
* nemo-icon-view-container.c: Connect the tooltip signal per container instance, rather than once overall.
* nemo-icon-info.h: Tweak text width a bit for the zoom levels.
* nemo-icon-container.c: Turn on hover prelight by default. This helps label text overlapping adjacent items (during hover) to have a clean background for better legibility.
* emblems: Use cached parent pointers when checking for can't-write emblem condition, instead of looking it up for each file.
* nemo-file.c: Load file-roller mimetype cache upon first demand, instead of at startup. This has a noticeable impact on startup time.
* nemo-list-model.c: Reduce number of icon info lookups when creating icon surfaces for the model.
* preferences: Use the new XApp sidebar switcher, and use an ordinary GtkWindow instead of a GtkDialog to clean up the look. This includes removing the close button as well (we already don't use one in the plugins window.)
* preferences: Add the plugin manager as a preferences page. Refactor to remove unnecessary code and allow the prefs window to open on a particular page.
* preferences: Use togglebuttons instead of checkbuttons for toolbar button switches, and show the action's icon in the button.
* nemo-icon-container: Remove some unused code.
* eel-graphic-effects.c: Lessen the effect eel_create_spotlight_pixbuf.
[ JosephMcc ]
* prefs: Restyle the visible buttons page a bit
* prefs: Move the custom icons to xapps
[ Michael Webster ]
* meson_update_icon_cache.py: Print the icon cache folder when running.