-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
13253 lines (9607 loc) · 433 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
2008-05-03 Hans Petter Jansson <[email protected]>
* src/nautilus-image-properties-page.c (append_exifdata_string):
If we get a NULL exifdata, don't try to dereference it. Fixes
BGO #530851.
2008-05-03 Christian Neumair <[email protected]>
* src/nautilus-file-management-properties.glade:
Use 12 pixels of list column page indentation. Fixes #514415. Thanks
to Marcin Galazka.
2008-05-01 Claude Paroz <[email protected]>
* libnautilus-private/apps_nautilus_preferences.schemas.in: Removed
duplicate "and" in description. Fixes #516906.
2008-04-30 Cosimo Cecchi <[email protected]>
* src/nautilus-property-browser.c: (ensure_file_is_image):
Do not unref the file info before checking the mime type,
otherwise the mime_type string will be invalidated. (#530549).
2008-04-30 A. Walton <[email protected]>
* configure.in:
* src/file-manager/fm-icon-view.c:
Remove false dependency for ESound. Closes bug #311445.
2008-04-30 A. Walton <[email protected]>
* libnautilus-private/nautilus-clipboard.c:
* libnautilus-private/nautilus-directory-async.c:
* libnautilus-private/nautilus-directory.c:
* libnautilus-private/nautilus-entry.c:
* libnautilus-private/nautilus-file.c:
* libnautilus-private/nautilus-horizontal-splitter.c:
* libnautilus-private/nautilus-icon-canvas-item.c:
* libnautilus-private/nautilus-icon-container.c:
* libnautilus-private/nautilus-metafile.c:
* libnautilus-private/nautilus-users-groups-cache.c:
* libnautilus-private/nautilus-vfs-directory.c:
* src/nautilus-emblem-sidebar.c:
* src/nautilus-file-management-properties.c:
* src/nautilus-window-manage-views.c:
* src/nautilus-window.c:
* src/nautilus-zoom-control.c:
Replace g_return_*() with g_assert() in private, internal
functions. Closes #530321.
2008-04-29 David Zeuthen <[email protected]>
* libnautilus-private/nautilus-autorun.c:
* libnautilus-private/nautilus-autorun.h:
* libnautilus-private/nautilus-file-operations.c:
(volume_mount_cb), (nautilus_file_operations_mount_volume):
* libnautilus-private/nautilus-file-operations.h:
* libnautilus-private/nautilus-mime-actions.c:
(activation_mount_not_mounted_callback):
* libnautilus-private/nautilus-vfs-file.c:
(vfs_file_mount_callback):
* src/nautilus-application.c: (startup_volume_mount_cb),
(volume_added_callback):
* src/nautilus-places-sidebar.c: (open_selected_bookmark),
(mount_shortcut_cb):
* src/nautilus-window-manage-views.c: (mount_not_mounted_callback):
Fix how autorunning works. Instead of inhibiting autorunning
every time we run something, we turn things around and instead
allow automounting only in the instance where Nautilus automounted
something itself. So in essence this patch is s/inhibit/allow/.
This fixes an annoying problem where Nautilus would do autorun
everytime something was mounted even from the command line. A
consequence of this are windows popping up and other annoyances.
This patch fixes that problem.
* src/nautilus-x-content-bar.c: (nautilus_x_content_bar_init):
Make sure the label is ellipsized.
2008-04-27 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-file-operations.c: (delete_files),
(trash_files), (delete_job):
Report user cancel when all the files we're about to trash or delete
are skipped in the operation. This allows to use the same selection for
requesting another deletion from the view. (#519746).
2008-04-27 Christian Neumair <[email protected]>
* src/nautilus-window-manage-views.c
(display_view_selection_failure):
Quote schema. Fixes #522029.
2008-04-27 Cosimo Cecchi <[email protected]>
* src/nautilus-places-sidebar.c: (nautilus_places_sidebar_init):
Always use single click policy in the Places sidebar. (#355760).
2008-04-27 Cosimo Cecchi <[email protected]>
* src/nautilus-navigation-window.c:
(nautilus_navigation_window_save_geometry):
Always properly remember window size, also in the case the window is
closed being maximized. (#385176).
2008-04-27 Cosimo Cecchi <[email protected]>
* src/nautilus-window.c: (nautilus_window_key_press_event):
Reverse the order in which the keybindings are processed by the
NautilusWindow, and use the same approach as GEdit.
This fixes some bugs where the GtkWindow accelerators were executed
before the focused widget one. (#314431).
2008-04-27 Christian Neumair <[email protected]>
* src/file-manager/fm-list-view.c (button_press_callback):
Do not activate twice if the activated paths are already selected.
Always expand when an expander is clicked, even when the activation
paths are already selected. Add 4 to the GtkTreeView's claimed
expander size, which accounts for hard coded internal GtkTreeView
expander padding. Fixes #448562. Thanks to Paweł Paprota.
2008-04-26 A. Walton <[email protected]>
reviewed by: Christian Neumair
* libnautilus-private/nautilus-file-private.h:
* libnautilus-private/nautilus-file-utilities.c
(nautilus_compute_title_for_location):
* libnautilus-private/nautilus-file.c (update_info_internal),
(nautilus_file_get_description):
* libnautilus-private/nautilus-file.h:
Use standard::description in the window title when it's available.
Closes bug #516007.
2008-04-27 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-icon-container.c
(emit_atk_focus_tracker_notify), (set_keyboard_focus),
(select_range), (select_one_unselect_others), (rubberband_select),
(keyboard_move_to):
Properly handle selection changes when using keyboard navigation. We
did not emit a "selection-change" signal when keyboard rubberbanding
was used, and all except one icon were deselected. Fixes #509432.
Thanks to Paweł Paprota.
2008-04-24 Cosimo Cecchi <[email protected]>
* src/file-manager/fm-list-view.c: (key_press_callback):
Properly handle Ctrl+F10 keybinding in List View.
Patch by Paweł Paprota. (#385896).
2008-04-23 Michael J. Chudobiak <[email protected]>
* libnautilus-private/apps_nautilus_preferences.schemas.in:
* libnautilus-private/nautilus-global-preferences.c:
Bump default thumbnailing size limit from 5 MB to 10 MB (#421342).
2008-04-21 Christian Neumair <[email protected]>
* configure.in:
Post release version bump.
=== nautilus 2.23.1 ===
2008-04-21 Christian Neumair <[email protected]>
* Makefile.am:
* configure.in:
Entirely move DISTCHECK_CONFIGURE_FLAGS to Makefile.am to fix
distcheck.
2008-04-21 Christian Neumair <[email protected]>
* NEWS:
Update for release.
2008-04-21 Christian Neumair <[email protected]>
* nautilus.desktop.in.in:
* src/nautilus-main.c (main):
Support new gnome-session autostart semantics (#525056). Thanks to
Lucas Rocha.
2008-04-15 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-file.c: (compare_by_time):
Initialize two vars to get rid of a warning with gcc 4.3.
Patch by Paweł Paprota. (#528081).
2008-04-10 A. Walton <[email protected]>
Remove GSequence directory and files (for real this time).
2008-04-10 A. Walton <[email protected]>
* configure.in:
* cut-n-paste-code/Makefile.am:
* cut-n-paste-code/gsequence/Makefile.am:
* cut-n-paste-code/gsequence/gsequence.c:
* cut-n-paste-code/gsequence/gsequence.h:
* src/Makefile.am:
* src/file-manager/fm-list-model.c:
Remove GSequence hack as it is no longer necessary;
we require a newer GLib in order to support GIO.
More work towards bug #520773.
2008-04-10 A. Walton <[email protected]>
* src/Makefile.am:
* src/nautilus-application.c: (nautilus_application_startup):
* src/nautilus-application.h:
* src/nautilus-first-time-druid.c:
* src/nautilus-first-time-druid.h:
* src/nautilus-main.c: (main):
Remove the first-time-druid dead code (#520773).
2008-04-10 Cosimo Cecchi <[email protected]>
* configure.in: Add a missing comma to fix build with
Autoconf 2.62. (#527315).
2008-04-08 Martin Wehner <[email protected]>
* src/file-manager/fm-list-view.c: (fm_list_view_finalize):
Destroy column editor dialog with its parent list view. (#439097)
2008-04-07 Christian Neumair <[email protected]>
* src/nautilus-application.c (nautilus_application_destroy),
(automount_all_volumes_idle_cb), (finish_startup):
* src/nautilus-application.h:
Automount volumes in idle callback rather than during startup
(#526471).
2008-04-07 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-column-chooser.c (update_buttons),
(add_buttons):
Remove show/hide buttons. The entries can be toggled directly using
mouse or keyboard. Do not remove buttons to move entries, since
list DND may not be obvious for some users (#514394). Thanks to Marcin
Galazka.
2008-04-05 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-autorun.c:
(_g_mount_guess_content_type):
Disable autorun when detecting autorun.exe and autorun.inf,
as we do not support those yet (part of bug #524270).
* src/nautilus-autorun-software.c: (autorun), (main):
Plug some minor leaks.
2008-04-04 A. Walton <[email protected]>
* configure.in:
* docs/Makefile.am:
* docs/reference/Makefile.am:
* docs/reference/libnautilus-extension/Makefile.am:
* docs/reference/libnautilus-extension/libnautilus-extension-docs.xml:
* docs/reference/libnautilus-extension/libnautilus-extension.types:
* docs/reference/libnautilus-extension/version.xml.in:
Adds initial Gtk-doc support infrastructure for libnautilus-extension.
(Progress towards bug #526193).
2008-04-04 Christian Neumair <[email protected]>
* src/nautilus-places-sidebar.c (nautilus_places_sidebar_init),
(nautilus_places_sidebar_dispose),
(nautilus_places_sidebar_class_init):
Move finalize to dispose, unset pointers to window/tree_view, use
eel_preferences_add_callback_while_alive().
2008-04-04 Cosimo Cecchi <[email protected]>
* libnautilus-extension/nautilus-file-info.c:
(nautilus_file_info_get_parent_info),
(nautilus_file_info_get_mount), (nautilus_file_info_can_write):
* libnautilus-extension/nautilus-file-info.h:
* libnautilus-private/nautilus-file.c:
(nautilus_file_info_iface_init):
Add new APIs for extensions to NautilusFileInfo (can_write, get_mount
and get_parent_info). (#521612).
2008-04-04 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-file-operations.c (volume_mount_cb),
(nautilus_file_operations_mount_volume):
* libnautilus-private/nautilus-file-operations.h:
* libnautilus-private/nautilus-mime-actions.c
(activation_mount_not_mounted_callback),
(activation_mount_not_mounted):
* src/nautilus-application.c (startup_volume_mount_cb),
(automount_all_volumes), (volume_added_callback):
* src/nautilus-places-sidebar.c (open_selected_bookmark),
(mount_shortcut_cb):
* src/nautilus-window-manage-views.c (mount_not_mounted_callback),
(got_file_info_for_view_selection_callback):
Inhibit autorun in mount callbacks after finishing mounts rather than
before mounting.
It is neccessary because the mount may take a very long time (floppy,
password prompt), which may take longer than the inhibition timeout.
This approach works because with the current HAL volume monitor
implementation, GVolumeMonitor signal emission is scheduled, while the
mount callbacks are invoked synchronously.
This should also fix the not working inhibition on startup, which
could happen because parallel mounts in the background and the rest of
the startup process eat resources, so the mounts may also take longer
than the inhibition timeout.
2008-04-03 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-bookmark.c
(nautilus_bookmark_icon_is_different):
Fix icon comparison if icon has not yet been set.
* libnautilus-private/nautilus-bookmark.c
(nautilus_bookmark_update_icon):
Never update icon if a file has not yet been confirmed.
2008-04-03 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-icon-container.c
(nautilus_icon_container_update_scroll_region):
Do not make x2/y2 smaller than x1/y2. Fixes flashing scrollbar
for empty container.
2008-04-03 Tomas Bzatek <[email protected]>
* libnautilus-private/nautilus-file.c: (update_info_internal):
Fix SELinux:context attribute display issue
2008-04-02 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-icon-container.c
(nautilus_icon_container_update_scroll_region),
(lay_down_icons_horizontal), (get_max_icon_dimensions),
(lay_down_icons_vertical),
(nautilus_icon_container_start_renaming_selected_item),
(nautilus_icon_container_is_layout_vertical):
* libnautilus-private/nautilus-icon-container.h:
* src/nautilus-window.c
(nautilus_window_set_initial_window_geometry):
Subtract 1 from icon rectangle's x2/y2 positions before setting scroll
area since the entire canvas codes requests 1 px more than it needs.
Wrap when the icon hits the canvas, rather than wrapping to late.
Fixes most of the "text besides icons" glitches.
Add container padding on the RHS for vertical layout, and consider
max. emblem rectangles when deciding whether to wrap. This may wrap
slightly to early in some (high zoom level) situations, but we will
never get scroll glitches.
2008-04-01 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-view-factory.h:
* src/file-manager/fm-desktop-icon-view.c
(fm_desktop_icon_view_register):
* src/file-manager/fm-icon-view.c:
* src/file-manager/fm-list-view.c (fm_list_view_register):
* src/nautilus-navigation-window.c (load_view_as_menu):
* src/nautilus-window-manage-views.c:
* src/nautilus-window-manage-views.h:
* src/nautilus-window.c (add_view_as_menu_item):
Remove unused "label" field of NautilusViewInfo and
nautilus_window_get_view_label().
Rename two other fields of NautilusViewInfo and make their use
more explicit. Remove redundand "View" from view menu label.
2008-04-01 Michael J. Chudobiak <[email protected]>
* libnautilus-private/nautilus-file.c: (nautilus_file_get_icon):
Skip the thumbnailing of unreadable files. This is more efficient
than relying on failed thumbnails. (#525594).
2008-04-01 A. Walton <[email protected]>
reviewed by: Cosimo Cecchi
* HACKING:
Add advice about patches adding strings to Nautilus.
2008-04-01 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-file-operations.c: (delete_dir),
(prompt_empty_trash), (verify_destination), (copy_move_directory),
(remove_target_recursively), (copy_move_file):
* libnautilus-private/nautilus-mime-actions.c:
(report_broken_symbolic_link), (activate_files):
* libnautilus-private/nautilus-program-choosing.c:
(application_cannot_open_location), (nautilus_launch_application),
(nautilus_launch_desktop_file):
* src/file-manager/fm-error-reporting.c:
(fm_report_error_loading_directory),
(fm_report_error_renaming_file), (fm_report_error_setting_group),
(fm_report_error_setting_owner),
(fm_report_error_setting_permissions):
* src/file-manager/fm-properties-window.c:
(fm_properties_window_drag_data_received),
(create_permissions_page):
* src/nautilus-application.c: (nautilus_application_startup):
* src/nautilus-connect-server-dialog-main.c:
(display_error_dialog):
* src/nautilus-connect-server-dialog.c: (connect_to_server):
* src/nautilus-emblem-sidebar.c:
(nautilus_emblem_sidebar_delete_cb), (rename_dialog_response_cb):
* src/nautilus-information-panel.c: (receive_dropped_uri_list):
* src/nautilus-property-browser.c: (remove_pattern),
(remove_emblem), (add_pattern_to_browser):
* src/nautilus-window-manage-views.c:
(display_view_selection_failure):
Do not use contractions in strings. (#145356).
2008-04-01 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(nautilus_file_operations_unmount_mount), (empty_trash_job),
(nautilus_file_operations_empty_trash):
Do not ask twice if we want to empty the trash when unmounting
a volume. (#525269).
2008-03-31 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-autorun.c
(should_skip_native_mount_root), (should_autorun_mount):
Do not automount mount points inside hidden hierarchies (#524075).
2008-03-31 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-icon-container.c
(lay_down_icons_vertical):
Reduce vertical space between icons, do not request space at the
bottom of a column.
2008-03-31 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-icon-canvas-item.c
(create_label_layout),
(nautilus_icon_canvas_item_get_max_text_width):
* libnautilus-private/nautilus-icon-container.c
(nautilus_icon_container_start_renaming_selected_item):
For column layout, do not limit text width if each columns determines
its own width.
2008-03-30 Christian Neumair <[email protected]>
* src/file-manager/fm-icon-view.c
(fm_icon_view_real_get_directory_tighter_layout):
Return FALSE if view does not support tighter layout.
2008-03-30 Christian Neumair <[email protected]>
* src/file-manager/fm-desktop-icon-view.c
(fm_desktop_icon_view_register):
Do not translate unused desktop icon view labels.
* src/file-manager/fm-icon-view.c:
* src/file-manager/fm-list-view.c:
Use "... View" instead of "View as ..." for view menu and dropdown.
This makes the labels consistent with the preference dialog and with
the compact view.
2008-03-30 Christian Neumair <[email protected]>
* src/file-manager/fm-properties-window.c
(get_image_for_properties_window), (update_properties_window_icon),
(create_image_widget):
Use icon name for window instead of pixbuf, if available (#519041).
2008-03-29 Christian Neumair <[email protected]>
* libnautilus-private/apps_nautilus_preferences.schemas.in:
* libnautilus-private/nautilus-global-preferences.c
(nautilus_global_preferences_get_default_folder_viewer_preference_a
s_iid):
* libnautilus-private/nautilus-global-preferences.h:
* libnautilus-private/nautilus-icon-canvas-item.c
(create_label_layout),
(nautilus_icon_canvas_item_get_max_text_width):
* libnautilus-private/nautilus-icon-container.c
(lay_down_one_column), (get_max_icon_dimensions),
(lay_down_icons_vertical), (lay_down_icons_vertical_desktop),
(lay_down_icons), (size_allocate),
(nautilus_icon_container_update_icon),
(nautilus_icon_container_set_layout_mode),
(nautilus_icon_container_start_renaming_selected_item),
(nautilus_icon_container_set_forced_icon_size),
(nautilus_icon_container_set_all_columns_same_width):
* libnautilus-private/nautilus-icon-container.h:
* libnautilus-private/nautilus-icon-private.h:
* libnautilus-private/nautilus-metadata.h:
* src/file-manager/fm-icon-container.c
(fm_icon_container_get_icon_images),
(fm_icon_container_get_icon_text):
* src/file-manager/fm-icon-view.c
(get_stored_icon_position_callback),
(fm_icon_view_supports_manual_layout),
(fm_icon_view_supports_tighter_layout), (update_layout_menus),
(fm_icon_view_real_set_directory_sort_reversed),
(fm_icon_view_get_directory_auto_layout),
(fm_icon_view_real_get_directory_auto_layout),
(fm_icon_view_set_directory_auto_layout),
(fm_icon_view_real_set_directory_auto_layout),
(fm_icon_view_real_set_directory_tighter_layout),
(real_supports_manual_layout), (get_default_zoom_level),
(set_labels_beside_icons), (set_columns_same_width),
(fm_icon_view_begin_loading), (fm_icon_view_set_zoom_level),
(fm_icon_view_zoom_to_level),
(fm_icon_view_restore_default_zoom_level),
(default_zoom_level_changed_callback),
(all_columns_same_width_changed_callback),
(fm_icon_view_set_property), (fm_icon_view_class_init),
(fm_icon_view_get_id), (fm_icon_view_init), (fm_icon_view_create),
(fm_compact_view_create), (fm_icon_view_is_compact),
(fm_icon_view_register):
* src/file-manager/fm-icon-view.h:
* src/nautilus-file-management-properties.c
(nautilus_file_management_properties_dialog_setup):
* src/nautilus-file-management-properties.glade:
Added compact view.
2008-03-29 Cosimo Cecchi <[email protected]>
* src/nautilus-window-manage-views.c:
(display_view_selection_failure):
Fix a typo in a string. (#521199).
2008-03-29 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-progress-info.c:
(get_progress_window):
Use title capitalization for the File Operations dialog. (#516353).
2008-03-29 Cosimo Cecchi <[email protected]>
* src/nautilus-places-sidebar.c: (update_places):
Show network servers in Places sidebar. Patch by Vincent Untz.
(#350974).
2008-03-29 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-icon-container.c:
(nautilus_icon_container_invert_selection):
* libnautilus-private/nautilus-icon-container.h:
* libnautilus-private/nautilus-view.c:
(nautilus_view_invert_selection):
* libnautilus-private/nautilus-view.h:
* src/file-manager/fm-actions.h:
* src/file-manager/fm-directory-view.c:
(action_invert_selection_callback),
(fm_directory_view_invert_selection), (real_update_menus),
(fm_directory_view_class_init):
* src/file-manager/fm-directory-view.h:
* src/file-manager/fm-icon-view.c: (fm_icon_view_invert_selection),
(fm_icon_view_class_init):
* src/file-manager/fm-list-view.c: (fm_list_view_invert_selection),
(fm_list_view_class_init):
* src/file-manager/nautilus-directory-view-ui.xml:
Add support for "Invert Selection". Patch by Amos Brocco
<[email protected]>. (#305295).
2008-03-29 Christian Neumair <[email protected]>
* src/nautilus-application.c
(nautilus_application_save_session_to_file), (save_session):
* src/nautilus-application.h:
* src/nautilus-main.c (main):
* src/nautilus-shell.c (open_windows_at_idle), (restart_at_idle):
When restarting with "nautilus --restart", use XML file session
save / load mechanism, instead of writing to / reading from GConf.
2008-03-29 Christian Neumair <[email protected]>
* src/nautilus-bookmarks-window.c (create_bookmarks_window),
(on_button_pressed), (on_key_pressed), (repopulate):
Write back changes to selected bookmark before changing
selection (#318278).
2008-03-28 Alexander Larsson <[email protected]>
* configure.in:
Bump version to 2.23.1
Gnome 2.22 work continues on gnome-2-22 branch
2008-03-28 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump
=== nautilus 2.22.1 ===
2008-03-28 Alexander Larsson <[email protected]>
* NEWS:
Update for release
2008-03-28 A. Walton <[email protected]>
* libnautilus-private/nautilus-progress-info.c:
(get_progress_window):
Fix annoying behavior of the file progress info dialog jumping
to the center of the screen when new file operations begin.
Closes #524241.
2008-03-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(copy_move_file):
Make sure to queue a move even if the op was a move,
not just an added event.
2008-03-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(move_job):
Don't leak dest_fs_id by requesting it twice.
2008-03-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(copy_move_file):
During the merge part of a recursive move/copy always
disable same_fs to make sure we transcode filenames
correctly, as the target directory may be on another
filesystem.
2008-03-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
When prepare move fails and we didn't select overwrite
do not silently overwrite. Instead we remember for each
file if overwrite was already specified or not.
2008-03-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(move_file_prepare):
Actually handle the move-file-over-directory case.
2008-03-26 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-monitor.c:
(nautilus_monitor_directory):
Avoid constantly trying to create directory monitors
if it fails once by returning an "empty"
NautilusMonitor instead of NULL.
2008-03-24 Christian Neumair <[email protected]>
* src/file-manager/fm-directory-view.c
(delayed_rename_file_hack_callback),
(delayed_rename_file_hack_removed), (rename_file):
Ensure that the rename file callback data is destroyed. We leaked it
in case of cancellation.
2008-03-23 Christian Neumair <[email protected]>
* src/file-manager/fm-directory-view.c
(directory_list_lookup_file), (fm_directory_view_new_folder),
(paste_clipboard_received_callback),
(paste_into_clipboard_received_callback),
(action_paste_files_callback), (action_paste_files_into_callback):
Ref/unref view before/after receiving clipboard data, and check
whether it has been disposed. Should fix most of the clipboard crashers.
* src/file-manager/fm-tree-view.c
(clipboard_contents_received_callback), (button_pressed_callback),
(create_popup_menu), (fm_tree_view_init), (fm_tree_view_dispose),
(fm_tree_view_finalize):
Cancel activation and destroy popup in dispose() and not in finalize().
Create popup menu on demand.
Unref popup file in dispose() instead of leaking a reference.
Use eel_preferences_add_callback_while_alive() for preferences
callbacks.
Also ref/unref before/after requesting clipboard data, and check for
previous disposal in callback. Should fix rest of clipboard crashers.
2008-03-23 Christian Neumair <[email protected]>
* src/file-manager/fm-icon-view.c (play_file):
Use playbin for playback, but keep video playback disabled. (#523959).
2008-03-23 Paolo Borelli <[email protected]>
* src/nautilus-location-entry.c: do not leak the
location string when autocompleting.
2008-03-23 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-directory-async.c
(directory_count_start), (deep_count_load):
Do not follow symlinks. (#504980).
2008-03-23 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-file-operations.c
(custom_full_name_skip), (custom_basename_skip),
(custom_size_skip), (custom_time_skip), (custom_mount_skip):
Fix compiler warnings about unused value by casting va_arg calls with
unused return values to void. (#523908).
2008-03-22 Christian Neumair <[email protected]>
* src/file-manager/fm-directory-view.c
(delayed_rename_file_hack_callback):
Only start renaming if we have not yet been destroyed.
2008-03-20 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-program-choosing.c:
Use GDesktopAppInfos for launching desktop files. (#342084)
Patch from Cosimo Cecchi.
* src/file-manager/fm-directory-view.c:
(paste_clipboard_data):
Fix leak
2008-03-19 Frederic Crozat <[email protected]>
* libnautilus-private/nautilus-link.c:
Only strip icon name when it ends with a know
icon extension.
2008-03-19 Alexander Larsson <[email protected]>
* MAINTAINERS:
Add Christian Neumair as new maintainer
2008-03-19 Sebastian Dröge <[email protected]>
* libnautilus-private/nautilus-search-engine-tracker.c:
(nautilus_search_engine_tracker_new): Check that tracker is
actually running before using it (#386512).
Patch by Josselin Mouette.
2008-03-19 Sebastian Dröge <[email protected]>
* src/file-manager/fm-directory-view.c:
(action_show_hidden_files_callback): Show backup files too if the
option for it is set. Showing hidden files and backup files is
handled exactly the same in nautilus nowadays (#327361).
Patch by Stephen Cook.
2008-03-19 Sebastian Dröge <[email protected]>
* src/file-manager/fm-directory-view.c: (file_should_show_foreach):
Allow "Connect to server" for sftp and ssh shares too (#385608).
Patch from Mike Hommey.
2008-03-18 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-file.c:
(nautilus_file_should_show_thumbnail):
* libnautilus-private/nautilus-thumbnails.c: (get_types_table),
(nautilus_thumbnail_is_mimetype_limited_by_size):
* libnautilus-private/nautilus-thumbnails.h:
Always use the thumbnails regardless of the original file size if
it has been already generated (#501268).
Also, reimplement image mimetypes table to determine if we have
to check for file size limit.
2008-03-17 A. Walton <[email protected]>
* libnautilus-private/nautilus-icon-info.h:
Trivial build fix for users with Gtk+ SVN trunk (#522835),
caused by recent changes in Gtk+'s file includes.
Patch from Marc-Andre Lureau.
2008-03-17 Alexander Larsson <[email protected]>
* src/nautilus-connect-server-dialog-main.c:
* src/nautilus-connect-server-dialog-nonmain.c:
* src/nautilus-connect-server-dialog.c:
Mount location when using the external connect
to server dialog app. (#520390)
Patch from Cosimo Cecchi <[email protected]>
2008-03-14 A. Walton <[email protected]>
* src/nautilus-connect-server-dialog.c
(bookmark_checkmark_toggled),
(nautilus_connect_server_dialog_init):
Set the bookmark name widget in the connect server dialog insensitive
if the user doesn't check the add bookmark check button.
2008-03-14 A. Walton <[email protected]>
* libnautilus-private/nautilus-bookmark.c
(nautilus_bookmark_compare_with):
Fixes crash if the user doesn't set a name for the bookmark (#522446).
2008-03-14 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-column-chooser.c:
(button_new_with_mnemonic):
respect gtk-button-images property for buttons (#514130)
Patch from Marcin Galazka
2008-03-13 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-mime-application-chooser.c:
(set_extension_and_description):
Don't create application/x-ext-<extension> types for known mimetypes
2008-03-12 Cosimo Cecchi <[email protected]>
* src/nautilus-property-browser.c:
(make_properties_from_directories):
Use the correct string to lookup the icons for the emblems.
(#505111).
2008-03-12 Tomas Bzatek <[email protected]>
* src/file-manager/fm-properties-window.c:
Fix a crash while changing owner
2008-03-11 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump
=== nautilus 2.22.0 ===
2008-03-11 Alexander Larsson <[email protected]>
* configure.in:
Bump to 2.22.0
* AUTHORS:
* NEWS:
* THANKS:
* check-THANKS.pl:
Update for release.
2008-03-07 Cosimo Cecchi <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(callback_for_move_to_trash):
Fix a crash due to a missing NULL check (#520947).
2008-03-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-bookmark.c:
(nautilus_bookmark_uri_known_not_to_exist):
Fix this check to actually only access local
files, not fuse-based gvfs paths.
2008-03-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-container.c:
(nautilus_icon_container_update_icon):
Remove dead code
* libnautilus-private/nautilus-icon-info.c:
(nautilus_icon_info_lookup):
Resize custom icons (#513102)
2008-03-06 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (add_template_to_templates_menus):
Avoid crashing if no pixbuf for menu icon. (#513719)
2008-03-06 Alexander Larsson <[email protected]>
* src/nautilus-file-management-properties.c:
Avoid showing broken icons for the media type list (#519880)
2008-03-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(trash_files):
Fix delete all button (#518616)
Patch from Rached Ben Mustapha
2008-03-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file.c:
(nautilus_file_can_set_permissions):
Try to set permissions on remote shares. (#520572)
2008-03-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-autorun.c (_g_mount_guess_content_type):
Only look for autorun stuff for local files.
We can't generally exec stuff for non-local files anyway,
and is a performance hit to do the check.
2008-03-05 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-autorun.[ch]:
Add async x-content type getter, change sync one
to only read the cached value
* src/file-manager/fm-directory-view.c:
* src/nautilus-window-manage-views.c:
Get x-content type async
2008-03-04 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file.c (nautilus_file_set_display_name):
Handle the case of empty display name as if it wasn't specified.
2008-02-29 Cosimo Cecchi <[email protected]>
* nautilus-computer.desktop.in.in:
* nautilus-folder-handler.desktop.in.in:
* nautilus-home.desktop.in.in:
Computer, Home and Open Folder .desktop files should only show in
GNOME. Patch from Federico Mena Quintero. (#350947)
2008-02-29 Cosimo Cecchi <[email protected]>
* src/nautilus-file-management-properties.c:
(update_icon_captions_from_gconf):
Fix a crasher when reading NULL values from GConf. (#518974)
2008-02-28 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-file.c: (nautilus_file_get_gicon):
Handle NULL file.
* src/nautilus-bookmark-list.c: (nautilus_bookmark_list_load_file):
Ignore lines beginning with a space (#512593).
2008-02-28 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c:
(file_should_show_foreach):
Add mount entry for mountables, not unmount (#519056)
2008-02-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-progress-info.c:
Use better icon for system tray. (#518644)
Patch from Michael Monreal
2008-02-07 Christian Neumair <[email protected]>
* libnautilus-private/nautilus-metafile.c: (metafile_read_state_free):
Handle NULL state (#512042).
* src/nautilus-pathbar.c: (nautilus_path_bar_finalize): Disconnect
trash monitor signal (#519050).
2008-02-26 Alexander Larsson <[email protected]>
* src/nautilus-autorun-software.c (autorun):
Fix typo in string
2008-02-25 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump
=== nautilus 2.21.92 ===
2008-02-25 Alexander Larsson <[email protected]>
* configure.in:
Require glib 2.15.6
* NEWS:
Update for release
2008-02-25 Alexander Larsson <[email protected]>
* src/nautilus-autorun-software.c:
Show dialog on autorun errors
2008-02-25 Alexander Larsson <[email protected]>
* src/file-manager/fm-properties-window.c:
Don't show permissions for computer.
Make "open with tab" consistent for computer and trash.
Patch from Cosimo Cecchi (#518131)
2008-02-25 Alexander Larsson <[email protected]>
* src/nautilus-window-manage-views.c:
(got_file_info_for_view_selection_callback):
Fix NautilusFile leak.
Patch from Christian Neumair
2008-02-25 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-container.[ch]:
* src/file-manager/fm-directory-view.[ch]:
* src/file-manager/fm-icon-view.c:
Fixes the icon position when creating a new folder,
and the view is zoomed.
Patch from Christian Neumair
2008-02-25 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-info.c (nautilus_icon_info_new_for_icon_info):
Fix s/display_name/filename/ typo (#515903)
Fixes blurry window icons
Patch from Christian Neumair