-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-20041029
23845 lines (18176 loc) · 843 KB
/
ChangeLog-20041029
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
2004-10-29 Alexander Larsson <[email protected]>
* src/file-manager/fm-list-view.c: (fm_list_view_reveal_selection),
(fm_list_view_start_renaming_file):
Don't scroll to top if file already visible when renaming and
revealing selection on alt-up.
Patch from Jimmy Do.
2004-10-28 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump
=== nautilus 2.8.2 ===
2004-10-28 Alexander Larsson <[email protected]>
* NEWS:
Update for release.
* configure.in:
Require eel 2.8.2
2004-10-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-utilities.c:
(nautilus_get_uri_shortname_for_display):
* libnautilus-private/nautilus-file-utilities.h:
* libnautilus-private/nautilus-file.c: (nautilus_file_rename),
(nautilus_file_get_display_name_nocopy):
* src/nautilus-location-entry.c: (try_to_expand_path):
Use eel_get_filename_charset to handle the new filename
charset env vars.
2004-10-28 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-global-preferences.c:
* src/nautilus-window-manage-views.c:
Fix warning due to NULL default string.
2004-10-26 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-global-preferences.[ch]:
Add saved geometry pref
* src/nautilus-navigation-window.c:
(nautilus_navigation_window_save_geometry), (real_window_close),
(nautilus_navigation_window_class_init):
Save geometry on window close
* src/nautilus-window-manage-views.c:
(another_navigation_window_already_showing),
(load_directory_metadata_callback):
load geometry on open
2004-10-26 Alexander Larsson <[email protected]>
* src/file-manager/fm-tree-model.[ch]:
Handle volumes for root nodes
* src/file-manager/fm-tree-view.c:
Add eject on volume toplevel roots.
* src/nautilus-application.c:
Don't close nav windows when unmounting, just go to home.
Patch from Colin Leroy <[email protected]>
2004-10-25 Alexander Larsson <[email protected]>
* libnautilus/nautilus-scroll-positionable.h:
Add missing G_END_DECLS.
Patch from Jimmy Do <[email protected]>
2004-10-22 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-canvas-item.c:
(nautilus_icon_canvas_item_get_image), (draw_frame),
(draw_or_measure_label_text), (measure_label_text),
(draw_label_text), (draw_mask), (nautilus_icon_canvas_item_draw):
Make the nautilus_icon_canvas_item_get_image return an image containing
icon + text. The image "start" changed to being from the item position to
from the item boundary.
* libnautilus-private/nautilus-icon-dnd.c:
(nautilus_icon_dnd_begin_drag):
Calculate icon offset from the boundary instead of icon position.
2004-10-22 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (rename_file):
Add ugly hack to make renames work on newly created files
in the list view. Don't look, you might go blind.
2004-10-22 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-container.c (icon_set_position):
Fix moving of unpositioned icons, the canvas items start at
<0, 0>, not <-1,-1>
2004-10-21 Alexander Larsson <[email protected]>
* src/nautilus-spatial-window.c:
(location_menu_item_activated_callback),
(location_button_clicked_callback):
Select parent item when going up via parent menu.
Patch from Jimmy Do <[email protected]>
2004-10-21 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-dnd.[ch]:
(auto_scroll_timeout_callback), (drag_leave_callback),
(drag_highlight_expose), (dnd_highlight_queue_redraw),
(start_dnd_highlight), (stop_dnd_highlight),
(drag_motion_callback):
Display frame when we're accepting a DnD drop.
2004-10-18 Dave Camp <[email protected]>
* src/file-manager/fm-directory-view.c:
(selection_changed_callback):
* src/nautilus-application.c:
(nautilus_application_present_spatial_window),
(nautilus_application_present_spatial_window_with_selection):
* src/nautilus-application.h:
* src/nautilus-window-manage-views.c: (open_location),
(load_directory_metadata_callback):
* src/nautilus-window.c: (nautilus_window_go_to_with_selection):
* src/nautilus-window.h: Show the directory as a selection in
spatial mode when Alt+Up is selected.
Patch from Jimmy Do <[email protected]>
2004-10-18 Marco Pesenti Gritti <[email protected]>
reviewed by: Alexander Larsson <[email protected]>
* src/nautilus-navigation-window-ui.xml:
* src/nautilus-window-toolbars.c:
(nautilus_navigation_window_initialize_toolbars):
Work around pack-ends no more working in libbonoboui
by putting an expanded event box before the
throbber
2004-10-15 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-program-choosing.c (nautilus_launch_show_file):
Slightly better error when there is no handler for a file type.
Not ideal, needs fixing when we're not string frozen anymore.
2004-10-14 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c: (load_directory),
(finish_loading):
We need to set "loading" as soon as we get the load_directory
call, otherwise we don't correctly handle the selection being
set.
* src/file-manager/fm-icon-view.c: (fm_icon_view_begin_loading),
(fm_icon_view_end_loading):
No need for this to touch loading.
Patch from Jimmy Do <[email protected]>
2004-10-13 Alexander Larsson <[email protected]>
* src/nautilus-navigation-window-ui.xml:
* src/nautilus-navigation-window.c:
(file_menu_new_window_callback), (real_merge_menus):
Add Open New Window menu item in browser
Patch from Michael Henson <[email protected]>
2004-10-13 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-directory-async.c:
(read_dot_hidden_file):
Only read .hidden files if they are regular files.
* src/file-manager/fm-tree-view.c:
Delay activation when keyboard navigating the tree.
Patches from Danny Milosavljevic <[email protected]>
2004-10-12 Anders Carlsson <[email protected]>
* src/nautilus-file-management-properties.glade:
Set the dialog's "visible" property to FALSE, we show it
ourselves.
2004-10-12 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-link-desktop-file.[ch]:
Make nautilus_link_desktop_file_local_create take both
display name and file name.
* libnautilus-private/nautilus-link.[ch]:
Make nautilus_link_local_create take both
display name and file name.
* src/file-manager/fm-icon-view.c: (icon_view_handle_uri_list):
Create desktop file ending in ".desktop".
2004-10-12 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (activate_check_mime_types):
On mime mismatch, don't use the default app for "open".
2004-10-11 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump
=== nautilus 2.8.1 ===
2004-10-11 Alexander Larsson <[email protected]>
* NEWS:
Update for 2.8.1
2004-10-11 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-utilities.[ch]:
* libnautilus-private/nautilus-file.[ch]:
* libnautilus-private/nautilus-icon-factory.c:
Use home icon for homedir.
Patch from Anders Carlsson <[email protected]>
2004-10-11 Alexander Larsson <[email protected]>
* src/file-manager/fm-list-view.c (fm_list_view_start_renaming_file):
Set up clipboard when renaming.
2004-10-11 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-directory.[ch]:
Make nautilus_directory_get_file_list virtual
* libnautilus-private/nautilus-desktop-directory.c:
* libnautilus-private/nautilus-merged-directory.c:
Override virtual to return all files. Fixes bug #149096.
Patch from Jimmy Do <[email protected]>
* src/file-manager/fm-directory-view.c
(fm_directory_view_init_show_hidden_files):
Don't set up hidden files prefs if ignoring them
* src/file-manager/fm-icon-view.c (should_show_file_on_screen):
Check if file should be visible.
2004-10-11 Anders Carlsson <[email protected]>
* libnautilus-private/nautilus-metadata.h:
* libnautilus-private/nautilus-mime-actions.c:
(nautilus_mime_get_default_application_for_file),
(nautilus_mime_get_open_with_applications_for_file),
(nautilus_mime_get_applications_for_file),
(gnome_vfs_mime_application_has_id):
* libnautilus-private/nautilus-view-query.c:
(nautilus_view_query_get_default_component_for_file_internal),
(nautilus_view_query_get_components_for_file),
(make_bonobo_activation_query_with_known_mime_type),
(make_bonobo_activation_query_with_uri_scheme_only),
(server_matches_content_requirements),
(nautilus_do_component_query),
(nautilus_view_query_get_popup_components_for_file),
(nautilus_view_query_get_property_components_for_file):
Remove a couple of unused keys from nautilus-metadata.h
2004-10-08 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (extension_action_slow_mime_types_ready_callback):
Correct strcmp typo. (#142530)
Patch from Simon Hart
2004-10-08 Anders Carlsson <[email protected]>
* src/file-manager/fm-directory-view.c:
(convert_file_list_to_string), (get_clipboard_callback),
(clear_clipboard_callback), (convert_file_list_to_uri_list),
(copy_or_cut_files), (fm_directory_view_class_init):
Add support for pasting the clipboard contents as a string.
2004-10-06 Martin Wehner <[email protected]>
* src/file-manager/fm-directory-view.c:
(process_new_files):
* src/file-manager/fm-list-view.c:
(fm_list_view_sort_files), (fm_list_view_class_init):
* src/file-manager/fm-list-model.[ch]:
(fm_list_model_sort_files):
Implement sort_files for list view and sort old changed files.
2004-10-06 Martin Wehner <[email protected]>
* src/file-manager/fm-directory-view.c: (split_off_first_n),
(display_pending_files), (display_pending_idle_callback):
Process unlimited files at once instead of 300 each time.
2004-10-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-canvas-item.c (draw_or_measure_label_text):
Readjust padding from last change.
2004-10-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-container.c (start_rubberbanding):
Use guint, not uint (#150359)
Patch from Gustavo Carneiro.
2004-10-06 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-directory-async.c (directory_load_one):
Don't crash if info->name == NULL. (Not valid, but happened with
smb backend.)
2004-10-05 Martin Wehner <[email protected]>
* src/file-manager/fm-list-view.c (fm_list_view_set_selection):
Notify about selection change only once per call.
2004-10-04 Alexander Larsson <[email protected]>
* configure.in:
Don't need to detect libjpeg anymore.
2004-10-04 Alexander Larsson <[email protected]>
* configure.in (EXIF_LIBS):
* libnautilus-private/nautilus-file.c:
(nautilus_file_compare_for_sort):
Make sort-by-emblem not crash.
2004-10-04 Alexander Larsson <[email protected]>
* src/file-manager/nautilus-directory-view-ui.xml:
* src/nautilus-shell-ui.xml:
* src/nautilus-spatial-window-ui.xml:
Allow keynav on desktop by adding accel entries (#135399).
2004-10-01 Martin Wehner <[email protected]>
* src/file-manager/fm-directory-view.c:
(fm_directory_view_notify_selection_changed):
Only sniff ahead attributes needed for activation
when selecting a single file.
2004-10-01 Alexander Larsson <[email protected]>
* src/file-manager/fm-list-model.c (fm_list_model_sort):
Fix reordering on resort (#144803)
Patch from Jimmy Do <[email protected]>
2004-10-01 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-dnd.c (nautilus_drag_default_drop_action_for_icons):
Allow move to non-same-fs. (#120052)
2004-10-01 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-icon-canvas-item.c:
Correct centering of text when icon is selected (#154088)
Patch from Vincent Noel <[email protected]>
2004-10-01 Alexander Larsson <[email protected]>
* src/nautilus-connect-server-dialog.c (connect_to_server):
Escape created uris.
Patch from Michael Henson <[email protected]>
2004-09-25 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (paste_clipboard_data):
Clear clipboard after cut. Fixes #134420.
Patch from Glenn Pierce.
2004-09-20 Kjartan Maraas <[email protected]>
* libnautilus-private/nautilus-file.c:
(nautilus_file_get_volume_free_space): Plug a possible
leak if vfs_uri is NULL. Closes bug #152985.
2004-09-20 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-directory.c (nautilus_directory_schedule_position_set):
Don't reference screen when removing.
2004-09-17 Kjartan Maraas <[email protected]>
* src/file-manager/fm-directory-view.c: (get_activation_action),
(real_update_menus_volumes), (fm_directory_view_activate_files):
Plug a couple of leaks. Closes bug #152769.
2004-09-17 Alexander Larsson <[email protected]>
* cut-n-paste-code/libegg/egg-recent-model.c:
(egg_recent_model_monitor):
Update to latest egg-recent.
2004-09-13 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump.
=== nautilus 2.8.0 ===
2004-09-13 Alexander Larsson <[email protected]>
* NEWS:
Update for 2.8.0
* configure.in:
Bump version to 2.8.0
Require eel 2.8.0
2004-09-11 Abel Cheung <[email protected]>
* configure.in: Added "ta" to ALL_LINGUAS.
2004-09-06 Alexander Larsson <[email protected]>
* src/file-manager/fm-list-view.c: (fm_list_view_clear):
Don't call gtk_cell_editable_editing_done when model is NULL.
Patch by Martin Wehner (#151493)
2004-09-03 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-metafile.c (remove_file_metadata):
Destroy the changes hash table in the right way (#48299)
=== nautilus 2.7.92 ===
2004-08-30 Alexander Larsson <[email protected]>
* NEWS:
Update for 2.7.92
* configure.in:
Require new eel
2004-08-27 Narayana Pattipati <[email protected]>
* libnautilus-private/nautilus-file.c
(compare_directories_by_count), (compare_files_by_size):
Fix nautilus crash when sort is done by Size in computer view.
Fixes bugzilla bug#151228
2004-08-30 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(create_transfer_dialog):
* src/nautilus-desktop-window.c:
(nautilus_desktop_window_instance_init):
Don't make progress dialogs transient for the desktop.
2004-08-27 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file.c (nautilus_get_group_names_including):
Faster way to get list of groups.
Patch from Dave Lehman ([email protected])
2004-08-27 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-mime-actions.c (nautilus_mime_get_default_application_for_file_internal):
Make this handle uri scheme limits.
2004-08-27 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c:
(can_use_component_for_file), (reset_bonobo_open_with_menu):
Don't show the open with menus for folders, nautilus links or
when there are multiple items selected.
2004-08-26 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-directory-async.c (mime_db_changed_callback):
Invalidate more files when the mime db changes.
2004-08-26 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file.c:
Make nautilus_file_is_mime_type handle inherited types too.
Make nautilus_file_contains_text work again.
2004-08-17 Dennis Cranston <dennis_cranston at yahoo com>
* src/nautilus-connect-server-dialog.c:
HIGify widget padding.
2004-08-23 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file.c: (get_description):
Avoid multiple x-directory/normal warnings
* libnautilus-private/nautilus-program-chooser.[ch]:
cvs remove old code
* libnautilus-private/nautilus-global-preferences.[ch]:
* libnautilus-private/nautilus-view-query.c:
* src/nautilus-applicable-views.c:
* src/nautilus-main.c:
Make default component for folders just use the gconf setting instead
of the short list (which is essentially random).
Remove component picking for non-folders.
Remove unused code.
2004-08-19 Martin Wehner <[email protected]>
* src/file-manager/fm-directory-view.c:
(fm_directory_view_destroy), (fm_directory_view_finalize):
Move eel_preferences_remove_callback() calls into finalize()
to prevent them from being called twice on shutdown.
2004-08-19 Martin Wehner <[email protected]>
* libnautilus-private/nautilus-file-operations-progress.c (time_remaining_callback):
Don't crash over a division by zero when the transfer rate approaches zero.
Fixes bug #148791.
2004-08-19 Martin Wehner <[email protected]>
* src/file-manager/fm-list-view.c (fm_list_view_clear):
Stop cell editing mode when changing directories.
Fixes bug #143830.
2004-08-17 Mark McLoughlin <[email protected]>
* cut-n-paste-code/libegg/egg-recent-item.c: sync with latest
libegg.
2004-08-17 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (fm_directory_view_launch_application):
Don't add recent files for non-gnome-vfs uris (such as x-nautilus-desktop://)
2004-08-16 Christian Rose <[email protected]>
* configure.in: Added "bs" to ALL_LINGUAS.
2004-08-16 Kjartan Maraas <[email protected]>
* configure.in: Add nb to ALL_LINGUAS.
2004-08-16 Alexander Larsson <[email protected]>
* configure.in:
Post release version bump (to 2.7.92)
=== nautilus 2.7.4 ===
2004-08-16 Alexander Larsson <[email protected]>
* configure.in:
Bump version to 2.7.4 (to sync with eel)
* NEWS:
Update
2004-08-16 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file.c (nautilus_file_is_mime_type):
Compare types using gnome_vfs_mime_type_is_equal to catch aliases.
Fixes bug #147811
2004-08-16 Alexander Larsson <[email protected]>
* src/nautilus-property-browser.c:
(nautilus_property_browser_init), (nautilus_property_browser_new),
(nautilus_emblem_dialog_new),
(nautilus_color_selection_dialog_new), (make_category_link),
(nautilus_property_browser_update_contents):
Fix property browser spacing.
Fixes bug #144249.
Patch from Jorn Baayen.
2004-08-16 Alexander Larsson <[email protected]>
* libnautilus-extension/nautilus-extension-types.h:
Remove extra comma in enum. Fixes bug #142351
Patch from Christian Neumair.
* libnautilus-private/apps_nautilus_preferences.schemas.in:
Add computer_icon_name schema entry. Fixes bug #144728.
Patch from Christian Neumair.
Remove add_to_session schema entry.
* src/nautilus-application.c: (update_session), (init_session):
* libnautilus-private/nautilus-global-preferences.c:
* libnautilus-private/nautilus-global-preferences.h:
Remove add_to_session preference. Fixes bug #91543
Patch from Havoc Pennington
* nautilus.desktop.in:
Rename file browser entry. Fixes bug #131272.
Patch from Michael Terry.
* src/file-manager/fm-directory-view.c:
(warn_mismatched_mime_types):
Don't show (null) for mimetypes with no description.
Fixes bug #141509.
Patch from Christian Neumair.
* src/file-manager/fm-properties-window.c:
(create_properties_window):
Allow properties dialog to be resized.
Fixed bug #147918
Patch from Christian Neumair.
* src/nautilus-window-menus.c:
(help_menu_nautilus_manual_callback):
Fix help link. Fixes bug #143927
Patch from Kaushal Kumar
2004-08-16 Alexander Larsson <[email protected]>
* src/nautilus-connect-server-dialog.c:
(nautilus_connect_server_dialog_finalize), (connect_to_server),
(response_callback), (setup_for_type), (combo_changed_callback),
(port_insert_text), (nautilus_connect_server_dialog_init),
(nautilus_connect_server_dialog_new):
Make the connect to server dialog a bit nicer.
2004-08-12 Christian Neumair <[email protected]>
* src/file-manager/fm-directory-view.c:
(reset_bonobo_open_with_menu):
* src/file-manager/nautilus-directory-view-ui.xml:
Revert my last commit, as discussed on nautilus-list.
2004-08-12 Thomas Cataldo <[email protected]>
Some memory leak fixes
* libnautilus-private/nautilus-icon-factory.c:
(nautilus_icon_factory_instance_init), (create_normal_cache_icon):
* libnautilus-private/nautilus-module.c: (load_module_dir):
2004-08-12 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations-progress.c:
(time_remaining_callback):
Fix time reporting. Patch by [email protected] (Baris Cicek)
2004-08-12 Alexander Larsson <[email protected]>
* src/nautilus-location-dialog.c (nautilus_location_dialog_new):
Close dialog if parent is destroyed.
Patch from Victor I. <[email protected]>
2004-08-11 Alexander Larsson <[email protected]>
* cut-n-paste-code/libegg/egg-recent-item.c: (egg_recent_item_new),
(make_valid_utf8), (egg_recent_item_get_short_name),
(egg_recent_item_set_private), (egg_recent_item_get_private):
* cut-n-paste-code/libegg/egg-recent-item.h:
* cut-n-paste-code/libegg/egg-recent-model.c:
(egg_recent_model_open_file), (egg_recent_model_lock_file),
(egg_recent_model_unlock_file):
Update to latest libegg code.
2004-07-29 Bastien Nocera <[email protected]>
* libnautilus-private/nautilus-file-utilities.c:
(nautilus_get_vfs_method_display_name):
* src/nautilus-navigation-window-ui.xml:
* src/nautilus-shell-ui.xml:
* src/nautilus-spatial-window-ui.xml: change the name "CD Creator" to
"CD/DVD Creator" following changes in nautilus-cd-burner
2004-07-24 Christian Neumair <[email protected]>
* src/file-manager/fm-directory-view.c:
* src/file-manager/nautilus-directory-view-ui.xml: Use different label
for OtherApplication command, depending on whether we show the
submenu.
2004-07-23 Dafydd Harries <[email protected]>
* src/nautilus-main.c: Apply patch submitted for #117572 to make
strings slightly easier to translate.
2004-07-22 Dave Camp <[email protected]>
* configure.in: Post-release verson bump
=== nautilus 2.7.2 ===
2004-07-22 Dave Camp <[email protected]>
* configure.in: Updated eel requirement
* NEWS: 2.7.2
2004-07-21 Dave Camp <[email protected]>
* Merged the nautilus-new-mime branch.
2004-07-21 Dave Camp <[email protected]>
* src/file-manager/fm-properties-window.c: (should_show_open_with),
(create_open_with_page), (create_properties_window): Show
the Open With tab in the properties window.
2004-07-19 Dave Camp <[email protected]>
* libnautilus-private/nautilus-mime-actions.c:
(nautilus_mime_get_default_application_for_file_internal):
* src/file-manager/fm-directory-view.c: (application_selected_cb),
(choose_program), (file_is_launchable): Use the new eel
open with dialog.
Mon Jul 19 12:52:04 2004 Jonathan Blandford <[email protected]>
* src/file-manager/fm-directory-view.c
(get_default_executable_text_file_action): default to ASK
2004-07-12 Dave Camp <[email protected]>
* libnautilus-private/nautilus-mime-actions.c:
(nautilus_mime_actions_get_open_with_file_attributes),
(nautilus_mime_actions_check_if_open_with_attributes_ready),
(nautilus_mime_get_default_application_for_file_internal),
(get_open_with_mime_applications),
(nautilus_mime_get_open_with_applications_for_file):
* libnautilus-private/nautilus-program-choosing.c:
(nautilus_launch_show_file):
* src/file-manager/fm-directory-view.c:
(add_application_to_bonobo_menu),
(get_default_executable_text_file_action),
(get_executable_text_file_action), (can_use_component_for_file),
(get_activation_action), (reset_bonobo_open_with_menu),
(real_update_menus), (fm_directory_view_notify_selection_changed),
(activate_callback):
* src/file-manager/nautilus-directory-view-ui.xml:
MIME overhaul, part 2.
Show the application that will be executed in the Open menu
item. If there are < 4 applications, show them in the main
context menu, otherwise show them in the Open With menu.
2004-07-09 Dave Camp <[email protected]>
* test/Makefile.am (noinst_PROGRAMS):
* libnautilus-private/Makefile.am:
* libnautilus-private/nautilus-mime-actions.c:
(nautilus_mime_get_applications_for_file),
(application_supports_uri_scheme_strcmp_style),
(nautilus_mime_has_any_applications_for_file),
(nautilus_mime_set_default_application_for_file),
(gnome_vfs_mime_application_has_id),
(gnome_vfs_mime_id_matches_application),
(gnome_vfs_mime_application_has_id_not_in_list):
* libnautilus-private/nautilus-mime-actions.h:
* libnautilus-private/nautilus-program-choosing.c:
(application_cannot_open_location), (nautilus_launch_show_file),
(nautilus_launch_application):
* libnautilus-private/nautilus-program-choosing.h:
* libnautilus-private/nautilus-view-query.c: (is_known_mime_type),
(nautilus_view_query_check_if_minimum_attributes_ready),
(nautilus_view_query_check_if_full_attributes_ready),
(nautilus_view_query_get_popup_file_attributes),
(nautilus_view_query_check_if_popup_attributes_ready),
(nautilus_view_query_get_default_component_sort_conditions),
(nautilus_view_query_get_default_component_for_file_internal),
(nautilus_view_query_get_default_component_for_file),
(nautilus_view_query_get_fallback_component_for_file),
(nautilus_view_query_get_components_for_file_extended),
(nautilus_view_query_get_components_for_file),
(nautilus_view_query_has_any_components_for_file_extended),
(nautilus_view_query_has_any_components_for_file),
(mime_get_components_for_uri_scheme),
(nautilus_view_query_has_any_components_for_uri_scheme),
(nautilus_view_query_set_default_component_for_file),
(extract_prefix_add_suffix), (mime_type_get_supertype),
(get_explicit_content_view_iids_from_metafile),
(make_bonobo_activation_query_for_explicit_content_view_iids),
(make_bonobo_activation_query_with_known_mime_type),
(make_bonobo_activation_query_with_uri_scheme_only),
(mime_type_list_to_hash_table), (free_key),
(mime_type_hash_table_destroy), (server_has_content_requirements),
(server_matches_content_requirements),
(nautilus_do_component_query), (strv_length), (strv_concat),
(nautilus_view_query_get_popup_components_for_file),
(nautilus_view_query_get_property_components_for_file),
(has_server_info_in_list), (server_info_list_intersection),
(nautilus_view_query_get_property_components_for_files),
(nautilus_view_query_get_popup_components_for_files):
* libnautilus-private/nautilus-view-query.h:
* src/file-manager/fm-directory-view.c: (choose_program),
(open_with_other_program), (other_application_callback),
(can_use_component_for_file), (activate_callback):
* src/nautilus-applicable-views.c: (got_file_info_callback):
* src/nautilus-information-panel.c: (open_with_callback),
(nautilus_information_panel_update_buttons):
* src/nautilus-navigation-window.c: (load_view_as_menu):
* src/nautilus-shell-ui.xml:
* src/nautilus-window-manage-views.c:
(nautilus_window_set_content_view):
* src/nautilus-window-menus.c:
(nautilus_window_initialize_menus_part_1):
* src/nautilus-window.c: (refresh_stored_viewers),
(nautilus_window_set_viewed_file): MIME overhaul, part 1.
Separated gnome-vfs application mime mapping from view querying,
put them in different files.
Got rid of the short list/all application distinction.
Got rid of "View As...", all appropriate views are shown.
Only ever show folders in nautilus - everything else should be
opened in an app.
2004-07-16 Alexander Larsson <[email protected]>
* data/Makefile.am:
* data/preferences.desktop.in:
* data/serverconfig.desktop.in:
* data/serverconfig.directory.in:
* data/starthere-link.desktop.in:
* data/starthere.desktop.in:
* data/starthere.directory.in:
* data/sysconfig.desktop.in:
* data/sysconfig.directory.in:
* src/nautilus-application.c: (nautilus_application_startup),
(desktop_changed_callback):
* src/nautilus-window-menus.c:
(nautilus_window_initialize_menus_part_1):
Kill start-here.
2004-07-15 Jürg Billeter <[email protected]>
* libnautilus-private/apps_nautilus_preferences.schemas.in:
* libnautilus-private/nautilus-directory.c: (add_preferences_callbacks):
* libnautilus-private/nautilus-file.c: (date_format_changed_callback),
(nautilus_file_fit_date_as_string):
* libnautilus-private/nautilus-global-preferences.c:
* libnautilus-private/nautilus-global-preferences.h:
* src/nautilus-file-management-properties.c: (create_date_format_menu),
(nautilus_file_management_properties_dialog_setup):
* src/nautilus-file-management-properties.glade:
Add preference to choose date format. Set default date format to '%c',
'the preferred representation for the current locale'.
2004-07-09 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c (activate_check_mime_types):
Check for more NULL cases.
2004-07-07 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-operations.c (handle_transfer_overwrite):
Better warnings on folder merge overwrite.
2004-07-07 Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c:
(connect_to_server_response_callback), (entry_activate_callback),
(connect_to_server_link_callback), (real_merge_menus),
(real_update_menus_volumes):
* src/file-manager/nautilus-directory-view-ui.xml:
Allow right-click connect to server on server links.
2004-07-07 Alexander Larsson <[email protected]>
* src/file-manager/fm-ditem-page.c:
Fix up some issues that made this not work.
2004-07-02 Bastien Nocera <[email protected]>
* src/file-manager/fm-directory-view.c:
(activate_check_mime_types): Don't warn about mime-type mismatches
if the handler is the same for both mime-types (Closes: #145086)
2004-06-24 Narayana Pattipati <[email protected]>
* src/nautilus-window-manage-views.c (determined_initial_view_callback):
Make sure host name is present before trying to show it in the
error message. Fixes bugzilla bug#144906.
2004-06-25 Sebastien Bacher <[email protected]>
* libnautilus-private/nautilus-icon-container.c:
(nautilus_icon_container_update_icon):
Removed debugging output for thumbnails of small images.
(Closes: #141078).
2004-06-24 Alexander Larsson <[email protected]>
Patch from Elijah Newren
* libnautilus-private/nautilus-program-choosing.c:
(slowly_and_stupidly_obtain_timestamp),
(nautilus_launch_show_file), (nautilus_launch_application):
Pass some event time to startup notify.
This is the wrong approach, and should be replaced eventually.
2004-06-21 Alexander Larsson <[email protected]>
Based on patch by Jamie McCracken <[email protected]>
* libnautilus-private/nautilus-metadata.h:
Add show hidden files metadata name
* libnautilus/nautilus-view-component.idl:
* libnautilus/nautilus-view.[ch]:
* src/file-manager/fm-directory-view.c:
* src/file-manager/fm-tree-view.c:
* src/file-manager/nautilus-directory-view-ui.xml:
* src/nautilus-spatial-window.[ch]:
* src/nautilus-view-frame-corba.c:
* src/nautilus-view-frame.[ch]:
* src/nautilus-window-manage-views.c:
* src/nautilus-window-private.h:
* src/nautilus-window.[ch]:
Add per-window show hidden files setting, saved per folder
in spatial mode.
2004-06-21 Alexander Larsson <[email protected]>
* libnautilus-private/nautilus-file-utilities.c (nautilus_get_vfs_method_display_name):
Handle dns-sd name
2004-06-17 Bastien Nocera <[email protected]>
reviewed by: Alexander Larsson <[email protected]>
* src/file-manager/fm-directory-view.c:
(can_delete_uri_without_confirm), (trash_or_delete_files_common):
do not ask for deletion confirmation when the files are in the burn:
scheme (Closes: #114340)
2004-06-14 Martin Wehner <[email protected]>
* libnautilus-private/nautilus-file-operations-progress.c:
(nautilus_file_operations_progress_init):
Prevent a resizing of the progress bar when the remaining
time is inserted after the timeout.
2004-06-09 Dave Camp <[email protected]>
* libnautilus-private/nautilus-file-operations.c:
(get_next_duplicate_name): Try to convert from the locale
if G_BROKEN_FILENAMES isn't set and the filename isn't valid
utf8.
2004-06-08 Dave Camp <[email protected]>
* src/file-manager/fm-list-view.c (fm_list_view_dispose): NULL
the ui component after unreffing it.
2004-06-08 Dave Camp <[email protected]>
* src/file-manager/fm-desktop-icon-view.c:
(fm_desktop_icon_view_destroy), (fm_desktop_icon_view_finalize),
(fm_desktop_icon_view_class_init):
* src/file-manager/fm-directory-view.c:
(fm_directory_view_destroy), (fm_directory_view_finalize):
* src/file-manager/fm-icon-view.c: (fm_icon_view_destroy),
(fm_icon_view_finalize), (fm_icon_view_class_init):
* src/file-manager/fm-list-model.c: (fm_list_model_dispose),
(fm_list_model_finalize), (fm_list_model_class_init):
* src/file-manager/fm-list-view.c: (fm_list_view_dispose),
(fm_list_view_finalize): Fixed up dispose/destroy/finalize
usage in src/file-manager.
2004-06-07 Anders Carlsson <[email protected]>
* libnautilus-private/nautilus-file-operations-progress.c:
(nautilus_file_operations_progress_destroy),
(time_remaining_callback),
(nautilus_file_operations_progress_new_file),
(nautilus_file_operations_progress_update_sizes):
Show estimated time remaining in the progress dialog.
* src/nautilus-spatial-window.c:
(location_button_clicked_callback):
Select the current folder menu item.
2004-06-02 Martin Wehner <[email protected]>
* src/file-manager/fm-directory-view.c:
(disconnect_model_handlers):
Remove directory monitor after cancelling the callbacks.
Fixes a rare crash during list view destruction (#143561).
2004-06-01 Dave Camp <[email protected]>
* src/nautilus-file-management-properties.c:
(nautilus_file_management_properties_dialog_setup):
* src/nautilus-file-management-properties.glade: Add an
"always open in browser windows" option to the prefs dialog.
Please stop yelling at me.
2004-06-01 Dave Camp <[email protected]>
* src/nautilus-window-manage-views.c: (open_location): If
always_use_browser is set and the window is a spatial window,