-
Notifications
You must be signed in to change notification settings - Fork 6
/
ChangeLog-2010
4644 lines (3423 loc) · 148 KB
/
ChangeLog-2010
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
2010-12-30 Pierre Wieser <[email protected]>
* NEWS: Update NEWS before release.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_write):
Use returned data length instead of trying to computer a (false) another.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_set_locale_string):
Improve the writing of locale strings for other languages.
* configure.ac: Check for gtk-doc >= 1.15.
* docs/reference/Makefile.am:
Handle multiple source directories when gtk-doc >= 1.15.
* src/core/na-icontext.c: Fix documentation comment.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_set_locale_string):
No more write the encoding part of the locale in the .desktop file.
* src/nact/nact-main-window.c (setup_dialog_title):
Setup item label before application name in window title.
* src/core/na-icontext.c (na_icontext_read_done):
Convert 'all/allfiles' mimetype to 'all/all' + 'file' scheme.
* src/core/na-object-id.c (na_object_id_prepare_for_paste):
Set data provider to NULL when duplicating a desktop file item.
This fixed the 'unable to save a copied item' bug.
2010-12-29 Pierre Wieser <[email protected]>
* src/core/na-selected-info.c:
* src/core/na-selected-info.h:
No more keep GFile location nor NAGnomeVFSURI parsed URI.
(na_selected_info_get_location): Removed function.
(na_selected_info_get_uri_host, na_selected_info_get_uri_user,
na_selected_info_get_uri_port): New functions.
* src/core/na-tokens.c (na_tokens_new_from_selection):
Make use of new na_selected_info functions.
Quote the filename elements.
Fix #638278.
* src/core/na-tokens.c (build_string_lists):
Keep the same order than Nautilus. Fix #638272.
* src/core/na-selected-info.c (new_from_nautilus_file_info):
* src/plugin-menu/nautilus-actions.c (menu_provider_get_file_items):
Add debug messages to trace order and names in the selection.
* src/plugin-menu/nautilus-module.c (set_log_handler):
Remove obsolete TODO.
2010-12-26 Pierre Wieser <[email protected]>
* src/core/Makefile.am:
Add -fPIC parameter
Get ride of 'relocation R_X86_64_32 against .rodata.str1.8' message.
2010-12-22 Pierre Wieser <[email protected]>
* src/io-desktop/Makefile.am:
* src/io-gconf/Makefile.am:
* src/io-xml/Makefile.am:
Also compile dynamic plugins with needed dependancies
(get ride of #637797 when loaded from PcManFm)
* src/nact/egg-sm-client-private.h:
* src/nact/egg-sm-client-xsmp.c:
Apply Mathias Clasen patch to build against Gtk+ 2.91.7.
* doc/reference/Makefile.am: include auto created files in
content_files, so that they are build before XML generation.
* Makefile.am: Enable '-Wl,--as-needed' link option at make distcheck.
* configure.ac:
* m4/na-compiler-flags.m4: Define --enable-as-needed configure option.
* src/core/Makefile.am: Build core library against its dependancies.
Fix #637797 - -Wl,--as-needed bug.
* run-autogen.sh: No more enable silent rules in development.
* tools/release-tarball.sh: Fix remote install of the tarball.
2010-12-20 Pierre Wieser <[email protected]>
* configure.ac: Post-release bump version.
* NEWS: Update before release.
* README: Add some words about importer/exporter plugins.
* m4/na-check-for-gtk.m4: New file.
* configure.ac: Add check for building against Gtk+ 3.0.
* m4/na-check-module.m4:
* m4/na-nautilus-extdir.m4:
* run-autogen.sh: Updated accordingly.
* src/nact/base-keysyms.h: New file which holds defines for Gdk keys.
* src/nact/Makefile.am:
* src/nact/base-assistant.c (on_key_pressed_event):
* src/nact/nact-iactions-list.c (on_key_pressed_event):
* src/nact/nact-match-list.c (on_key_pressed_event):
* src/nact/nact-schemes-list.c (on_key_pressed_event):
Updated accordingly.
* src/nact/nact-iaction-tab.c
(nact_iaction_tab_initial_load_toplevel):
Fix arguments when building against Gtk+ 2.0.
* src/nact/nact-icommand-tab.c (update_example_label):
Replace 'e.g.,' with 'Ex.:'.
* src/nact/nautilus-actions-config-tool.ui: Review the widget layout.
2010-12-16 Pierre Wieser <[email protected]>
* m4/na-check-module.m4: Fix variable substitution.
* run-autogen.sh: Re-enable silent rules in Gtk+-3 build.
* src/nact/nact-gtk-utils.c:
* src/nact/nact-gtk-utils.h (nact_gtk_utils_set_editable):
* src/nact/nact-iaction-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ibasenames-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-icommand-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ienvironment-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-iexecution-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ifolders-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-iproperties-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ischemes-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-match-list.c (nact_match_list_on_selection_changed):
* src/nact/nact-schemes-list.c (nact_schemes_list_create_model):
Use GObject instead of GtkWidget parameter.
* src/nact/nact-iaction-tab.c
(nact_iaction_tab_runtime_init_toplevel):
Dynamicallu allocates the GtkComboBox or the GtkComboBoxEntry.
* configure.ac: Build with Gtk+ 3.0 if first found by pkg-config.
* run-autogen.sh: Setup PKG_CONFIG_PATH and LD_LIBRARY_PATH
to be able to build against Gtk+ 3.0.
* src/core/na-importer-ask.c (na_importer_ask_user):
* src/nact/base-window.c (instance_dispose):
Replace deprecated gtk_widget_hide_all() with gtk_widget_hide().
* src/nact/base-assistant.c (on_key_pressed_event):
* src/nact/nact-iactions-list.c (on_key_pressed_event):
* src/nact/nact-match-list.c (on_key_pressed_event):
* src/nact/nact-schemes-list.c (on_key_pressed_event):
Replace deprecated GDK_xxxx symbols keys with GDK_KEY_xxxx.
* src/nact/nact-clipboard.c
(nact_clipboard_dnd_get_data,get_from_dnd_clipboard_callback,
nact_clipboard_primary_get,get_from_primary_clipboard_callback):
* src/nact/nact-tree-model-dnd.c
(nact_tree_model_dnd_idrag_dest_drag_data_received,
nact_tree_model_dnd_imulti_drag_source_drag_data_get,
nact_tree_model_dnd_on_drag_begin,nact_tree_model_dnd_on_drag_end,
drop_uri_list,get_xds_atom_value):
Use gtk_selection_data_get_xxx accessors, available since Gtk+ 2.14.
Use gdk_drag_context_get_xxx accessors, available since Gtk+ 2.22.
* src/nact/nact-gtk-utils.c (nact_gtk_utils_set_editable):
* src/nact/nact-gtk-utils.h:
* src/nact/nact-iaction-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ibasenames-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-icommand-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ienvironment-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-iexecution-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ifolders-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-iproperties-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-ischemes-tab.c (on_tab_updatable_selection_changed):
* src/nact/nact-match-list.c (nact_match_list_on_selection_changed):
* src/nact/nact-schemes-list.c (nact_schemes_list_create_model):
Replace deprecated GtkObject with GtkWidget.
Replace deprecated GtkComboboxEntry with GtkCombobox starting with
Gtk+ 2.24.
* src/nact/nact-gtk-utils.c (nact_gtk_utils_get_pixbuf):
Replace deprecated gtk_widget_render_icon() with gtk_widget_render_icon_pixbuf().
* src/nact/nact-main-statusbar.c (nact_main_statusbar_initial_load_toplevel):
Replace deprecated gtk_widget_size_request() with gtk_widget_get_preferred_size().
2010-12-14 Pierre Wieser <[email protected]>
* configure.ac:
- make silent rules available, disabling by default
- individualize modules cheks.
* run-autogen.sh: Enable silent rules.
* src/core/na-pivot.c (na_pivot_write_level_zero): Improve comment.
* src/nact/nact-main-menubar-file.c (nact_main_menubar_file_save_items):
Improve delete process, restoring items which cannot have been deleted.
* src/nact/nact-main-window.c:
* src/nact/nact-main-window.h (nact_main_window_remove_deleted):
* src/nact/nact-window.c:
* src/nact/nact-window.h (nact_window_delete_item):
Improve delete process, returning a status and an error message.
2010-12-13 Pierre Wieser <[email protected]>
* src/nact/nact-main-menubar-file.c (nact_main_menubar_file_save_items):
Display a warning summary when items may not have been saved.
* src/core/na-pivot.c:
* src/core/na-pivot.h (na_pivot_write_level_zero):
Let the function returns error messages.
* src/core/na-io-provider.c (na_io_provider_get_writable_provider):
* src/nact/nact-main-menubar-file.c (nact_main_menubar_file_save_items):
Updated accordingly.
* src/core/na-iprefs.c:
* src/core/na-iprefs.h (na_iprefs_write_string_list):
Returns a writing status.
* Makefile.am:
* run-autogen.sh: Ask for PDF generation of the reference manual.
Fix API index reference.
* docs/reference/nautilus-actions-docs.xml:
* src/api/na-core-utils.h:
* src/api/na-extension.h:
* src/api/na-gconf-utils.h:
* src/api/na-icontext.h:
* src/api/na-iduplicable.h:
* src/api/na-iexporter.h:
* src/api/na-ifactory-object.h:
* src/api/na-ifactory-provider.h:
* src/api/na-iimporter.h:
* src/api/na-iio-provider.h:
* src/api/na-object-id.h:
* src/api/na-object.h:
* src/core/na-core-utils.c:
* src/core/na-data-boxed.c:
* src/core/na-data-def.c:
* src/core/na-data-types.c:
* src/core/na-gconf-monitor.c:
* src/core/na-gconf-utils.c:
* src/core/na-icontext.c:
* src/core/na-iduplicable.c:
* src/core/na-ifactory-object.c:
* src/core/na-ifactory-provider.c:
* src/core/na-iimporter.c:
* src/core/na-iio-provider.c:
* src/core/na-object-action.c:
* src/core/na-object-id.c:
* src/core/na-object-item.c:
* src/core/na-object-menu.c:
* src/core/na-object-profile.c:
* src/core/na-object.c: Updated accordingly.
* docs/nact/C/nact-conditions.xml: Review 'note' vs. 'tip' usage.
* docs/reference/Makefile.am:
Remove call to GTKDOC_CHECK macro which makes 'make distcheck' fail.
2010-12-11 Pierre Wieser <[email protected]>
* docs/nact/Makefile.am: Fix user's manual generation.
Fic Miscellaneous API documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-core-utils.h:
* src/api/na-gconf-monitor.h:
* src/api/na-gconf-utils.h:
* src/core/na-core-utils.c:
* src/core/na-gconf-monitor.c:
* src/core/na-gconf-utils.c: Updated accordingly.
Fix NAObject API documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-icontext.h:
* src/api/na-object-api.h:
* src/core/na-icontext.c: Updated accordingly.
Fix NAIDuplicable Interface documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-iduplicable.h:
* src/api/na-object-menu.h:
* src/api/na-object-profile.h:
* src/core/na-iduplicable.c:
* src/core/na-object-menu.c:
* src/core/na-object-profile.c: Updated accordingly.
Fix NAObjectAction documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-object-action.h:
* src/core/na-icontext-factory.c:
* src/core/na-object-action.c: Updated accordingly.
Fix NAObjectItem documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-object-id.h:
* src/api/na-object-item.h:
* src/core/na-object-item.c: Updated accordingly.
Fix NAObjectId documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-object-id.h:
* src/api/na-object.h:
* src/core/na-object-id.c: Updated accordingly.
Fix NAObject documentation.
* docs/reference/nautilus-actions-docs.xml
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-data-boxed.h:
* src/api/na-data-def.h:
* src/api/na-data-types.h:
* src/api/na-iexporter.h:
* src/api/na-ifactory-object.h:
* src/api/na-ifactory-provider.h:
* src/api/na-iimporter.h:
* src/api/na-iio-provider.h:
* src/api/na-object.h:
* src/core/na-data-boxed.c:
* src/core/na-data-def.c:
* src/core/na-data-types.c:
* src/core/na-export-format.c:
* src/core/na-export-format.h:
* src/core/na-exporter.h:
* src/core/na-factory-object.h:
* src/core/na-factory-provider.c:
* src/core/na-factory-provider.h:
* src/core/na-gnome-vfs-uri.c:
* src/core/na-gnome-vfs-uri.h:
* src/core/na-gtk-utils.c:
* src/core/na-gtk-utils.h:
* src/core/na-iabout.c:
* src/core/na-iabout.h:
* src/core/na-iexporter.c:
* src/core/na-ifactory-object.c:
* src/core/na-ifactory-provider.c:
* src/core/na-iimporter.c:
* src/core/na-iio-provider.c:
* src/core/na-importer-ask.c:
* src/core/na-importer-ask.h:
* src/core/na-importer.h:
* src/core/na-io-provider.c:
* src/core/na-io-provider.h:
* src/core/na-ipivot-consumer.c:
* src/core/na-ipivot-consumer.h:
* src/core/na-iprefs.c:
* src/core/na-iprefs.h:
* src/core/na-module.c:
* src/core/na-module.h:
* src/core/na-object.c:
* src/core/na-pivot.c:
* src/core/na-pivot.h:
* src/core/na-selected-info.c:
* src/core/na-selected-info.h:
* src/core/na-tokens.c:
* src/core/na-tokens.h:
* src/core/na-updater.c:
* src/core/na-updater.h: Updated accordingly.
Fix D-Bus Services documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-dbus.h:
* src/plugin-tracker/na-tracker-dbus.h:
* src/plugin-tracker/na-tracker.c:
* src/utils/nautilus-actions-run.c:
* tools/dbus-introspect.sh: Updated accordingly.
2010-12-10 Pierre Wieser <[email protected]>
Fix Data Factory Management System documentation.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-extension.h:
* src/api/na-iexporter.h:
* src/api/na-ifactory-object-data.h:
* src/core/na-data-boxed.c:
* src/core/na-data-def.c:
* src/core/na-data-types.c:
* src/core/na-iexporter.c:
* src/core/na-ifactory-object.c:
* src/core/na-ifactory-provider.c:
* src/core/na-iimporter.c:
* src/core/na-iio-provider.c: Updated accordingly.
2010-12-09 Pierre Wieser <[email protected]>
Document NADataBoxed class.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-data-boxed.h:
* src/api/na-data-types.h:
* src/core/na-data-boxed.c:
* src/core/na-data-types.c: Updated accordingly.
Document NADataDef and NADataGroup structures.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-data-def.h:
* src/api/na-ifactory-object-data.h:
* src/api/na-ifactory-object.h:
* src/core/na-data-def.c:
* src/core/na-factory-object.c:
* src/core/na-factory-object.h:
* src/core/na-ifactory-object.c:
* src/core/na-ifactory-provider.c: Updated accordingly.
Document NAIFactoryObject interface.
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-ifactory-object.h:
* src/core/na-ifactory-object.c:
* src/core/na-ifactory-provider.c: Updated accordingly.
Document NAIFactoryProvider interface.
* docs/reference/nautilus-actions-docs.xml:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-ifactory-provider-provider.h:
* src/api/na-ifactory-provider.h:
* src/core/na-factory-provider.h:
* src/core/na-ifactory-provider.c: Updated accordingly.
Fix NAIExporter reference manual.
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-iexporter.h:
* src/api/na-iimporter.h:
* src/api/na-iio-provider.h:
* src/core/na-exporter.c:
* src/core/na-exporter.h:
* src/core/na-iexporter.c: Updated accordingly.
Fix NAIImporter reference manual.
* docs/reference/.gitignore:
* docs/reference/nautilus-actions-sections.txt:
* src/api/na-iimporter.h:
* src/api/na-iio-provider.h:
* src/core/na-iimporter.c:
* src/core/na-iio-provider.c:
* src/core/na-importer-ask.c:
* src/core/na-importer-ask.h:
* src/core/na-importer.c:
* src/core/na-importer.h: Updated accordingly.
* docs/reference/nautilus-actions-sections.txt: New file.
2010-12-08 Pierre Wieser <[email protected]>
Update reference manual for extensions.
Update reference manual for NAIIOProvider interface.
* docs/reference/na-about.xml: New file.
2010-12-06 Pierre Wieser <[email protected]>
* docs/reference/na-compiling.xml:
* docs/reference/na-dist-content.xml:
* docs/reference/na-getting.xml:
* docs/reference/na-plugin.xml:
* docs/reference/na-what-is-it.xml:
* docs/reference/version_dir.xml: New files.
* data/actions/my-first-na-action.desktop:
* data/actions/my-first-na-menu.desktop:
* data/actions/open-terminal-here.desktop:
* data/actions/show-na-parameters.desktop:
- Actually disabled actions and menus as stated in the doc and the README.
- Remove character encodings from localizable strings.
2010-12-03 Pierre Wieser <[email protected]>
* docs/nact/Makefile.am:
Automatically build DOC_ENTITIES and DOC_FIGURES lists.
Rename doc/ subdirectory to docs/.
* Makefile.am:
* configure.ac:
* docs/nact/Makefile.am: Updated accordingly.
* configure.ac: Post release version bump.
Releasing 3.0.2
* NEWS:
* README: Update before release.
2010-12-02 Pierre Wieser <[email protected]>
* src/nact/nautilus-actions-config-tool.ui:
Do not allow actions list to fully disappeared.
* src/nact/nact-gtk-utils.c:
* src/nact/nact-gtk-utils.h (nact_gtk_utils_select_file_with_preview):
New function.
* src/nact/nact-iaction-tab.c (on_icon_browse):
Add a preview when selecting an icon.
Factorize help description.
* po/POTFILES.in: add src/utils/console-utils.c file.
* src/utils/console-utils.c:
* src/utils/console-utils.h (console_cmdline_get_description):
New function.
* src/utils/nautilus-actions-new.c (init_options):
* src/utils/nautilus-actions-run.c (init_options):
* src/utils/nautilus-actions-schemas.c (init_options):
Updated to take advantage of new function.
* configure.ac: Display a summary of configuration options.
* m4/na-enable-manuals.m4:
* m4/na-maintainer-mode.m4:
* m4/na-nautilus-extdir.m4: Define displayable variables.
2010-12-01 Pierre Wieser <[email protected]>
* src/nact/nact-assistant-export.c
(assist_runtime_init_target_folder, on_folder_selection_changed):
Set/get current folder URI. Fix #616532.
* src/nact/nact-ifolders-tab.c (on_browse_folder_clicked):
Set/get current folder. Fix #616532.
* src/api/na-object-item.h: Define new ITEM_TARGET_ANY target.
* src/core/na-icontext.c (is_candidate_for_target):
Unconditionnally accepts any target.
* src/utils/nautilus-actions-run.c (main, get_profile_for_targets):
Ask there is no selection on the target. Fix #634056.
* configure.ac: call new NA_SET_DEFAULT_IO_PROVIDER macro.
* m4/na-default-io-provider.m4: New file.
* src/core/na-io-provider.c (na_io_provider_get_providers_list):
Used the configured default I/O provider when no preference has been
yet registered.
* configure.ac:
- Pre-release bump version number.
- Define NAUTILUS_ACTIONS_DEBUG variable.
* src/nact/nact-main.c (log_handler),
* src/plugin-menu/nautilus-module.c (log_handler),
* src/plugin-tracker/na-tracker-plugin.c (log_handler),
* src/utils/console-utils.c (log_handler):
Display debug information when NAUTILUS_ACTIONS_DEBUG variable is set.
* doc/nact/Makefile.am:
Distribute admon-* icons with html docs (workaround for #636175).
2010-11-30 Pierre Wieser <[email protected]>
* doc/nact/Makefile.am: Only rebuild manuals when needed.
* src/plugin-menu/nautilus-actions.c (create_menu_item):
Set a unique name per target menu so that icons are displayed even
when both toolbar and location context menu are targeted.
2010-11-25 Pierre Wieser <[email protected]>
Add %o/%O no-op parameters.
* doc/nact/C/figures/nact-legend.png: Update legend screenshot.
* doc/nact/C/nact-execution.xml: Update parameters description.
* src/core/na-object-profile-factory.c:
* src/core/na-tokens.h: Update comments.
* src/core/na-tokens.c
(is_singular_exec, parse_singular): Update with new parameters.
* src/nact/nautilus-actions-config-tool.ui:
Update legend dialog.
2010-11-24 Pierre Wieser <[email protected]>
* doc/des-ema/des-ema-0.12:
* doc/des-ema/des-ema-0.13:
* doc/des-ema/des-ema-0.14:
* doc/des-ema/des-ema-0.15: New files.
* doc/nact/Makefile.am:
Do not distribute non translated figures in xx/ subdirectories.
2010-11-23 Pierre Wieser <[email protected]>
* doc/nact/C/nact-starting.xml:
Work-around in order to be able to build sl pdf.
* doc/nact/Makefile.am:
Include non-translated figures in translated pdf.
2010-11-22 Pierre Wieser <[email protected]>
* doc/nact/Makefile.am:
Be tolerant about not buildable pdf.
* po/POTFILES.in:
Fix #635521: translatable sentences of the *.ui files don't appear in .po file.
* run-autogen.sh:
Clean up aborted make distcheck before running autogen.
* doc/nact/C/nact-execution.xml:
Fix typo in NACT user's manual.
* src/core/na-icontext-factory.c:
Fix #632992: add comment about default value translation.
2010-09-23 Pierre Wieser <[email protected]>
* configure.ac: Pre-release version bump.
* doc/api/Makefile.am: Fix the warning when overriding GTKDOC_RUN.
* m4/na-enable-manuals.m4:
* run-autogen.sh:
Update --enable-html-manuals and --enable-pdf-manuals options.
* doc/nact/Makefile.am:
Do not rebuild pdf files each time make is run.
Have figures available when pdf are built.
Install figures with html documents.
2010-09-04 Pierre Wieser <[email protected]>
* doc/nact/Makefile.am: Fix make distcheck.
2010-09-03 Pierre Wieser <[email protected]>
Declare --with-db2html and --with-gdt options.
* Makefile.am:
Defaut distribution includes PDF and gnome-doc-tool HTML manuals.
* doc/nact/Makefile.am:
* m4/na-enable-manuals.m4:
Define --with-db2html and --with-gdt options.
* doc/nact/Makefile.am:
HTML and PDF installations honor --htmldir= and --pdfdir= options.
* doc/nact/Makefile.am:
Fix make distcheck when distributing tranlations of NACT user's manual.
* configure.ac:
Revert inversion of AC_CANONICAL_TARGET and AM_INIT_AUTOMAKE.
* src/io-desktop/nadp-writer.c (write_done_write_subitems_list):
Improve debug messages.
* src/nact/nact-icommand-tab.c
(on_tab_updatable_selection_changed): Update example label.
(parse_parameters): Cleanup code.
2010-09-02 Pierre Wieser <[email protected]>
* src/io-desktop/nadp-reader.c (nadp_reader_iimporter_import_from_uri):
Do not keep the imported desktop file.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_write):
Do not return TRUE if file has not been written due to dispose state.
* configure.ac: Setup the package URL.
2010-08-30 Pierre Wieser <[email protected]>
* doc/nact/C/nact-starting.xml: Update manual.
* doc/nact/C/figures/read-only.png: New file.
* doc/nact/Makefile.am: Remove '$(NULL)' expressions.
* configure.ac: Bump version number after unstable release.
2010-08-23 Pierre Wieser <[email protected]>
* NEWS: Update NEWS before unstable release.
* src/core/na-selected-info.c
(na_selected_info_get_list_from_item, na_selected_info_get_list_from_list):
Returns a null list when NASelectedInfo object is null.
* src/plugin-menu/nautilus-actions.c
(menu_provider_get_background_items, menu_provider_get_file_items,
menu_provider_get_toolbar_items):
Do not try to build a menu for Nautilus when NASelectedInfo list is empty.
* configure.ac: Bump version number after unstable release.
* NEWS: Update NEWS before unstable release.
* po/POTFILES.in: Add src/core/na-selected-info.c file.
* src/core/na-selected-info.c (query_file_attributes):
Make the error message translatable.
* src/core/na-tokens.c
(na_tokens_new_from_selection): Do not get dirname of a null filename.
(parse_singular): Take care of possibly null data or over-indexing.
* src/core/na-selected-info.c:
* src/core/na-selected-info.h (na_selected_info_create_for_uri):
Add errmsg parameter to check for incorrect URIs.
* src/utils/nautilus-actions-run.c (get_selection_from_strv):
Do not try to deal with malformed URIs.
* src/utils/nautilus-actions-schemas.c: Include glib-object.h.
* src/api/na-data-boxed.h: Revert to glib-object.h.
2010-08-22 Pierre Wieser <[email protected]>
* src/core/na-icontext.c (is_candidate_for_mimetypes):
* src/core/na-selected-info.c (na_selected_info_get_mime_type):
Take care of possibly NULL mimetype.
2010-08-21 Pierre Wieser <[email protected]>
* src/api/na-dbus.h
* src/api/na-ifactory-provider-provider.h
* src/core/na-importer-ask.h
* src/io-desktop/nadp-formats.h
* src/io-desktop/nadp-reader.h
* src/io-desktop/nadp-utils.h
* src/io-desktop/nadp-writer.h
* src/io-gconf/nagp-reader.h
* src/io-gconf/nagp-writer.h
* src/io-xml/naxml-formats.h
* src/io-xml/naxml-reader.h
* src/io-xml/naxml-writer.h
* src/nact/nact-tree-model-priv.h: Fix single inclusion.
* src/core/na-icontext.c
(is_candidate_for_schemes, is_candidate_for_folders):
Address each ocurrence of file instead of just the first one.
* doc/nact/Makefile.am: Fix PDF distribution.
2010-08-19 Pierre Wieser <[email protected]>
* src/nact/nautilus-actions-config-tool.ui:
Do not overexpand the example label.
* src/core/na-object-profile.c (convert_pre_v3_parameters_str):
Fix conversion of '%d/%f' to '%f' when there are other parameters.
* src/core/na-icontext.c
(is_candidate_for_mimetypes): Improve debug messages.
(is_candidate_for_basenames): Take care of matchcase.
* src/core/na-icontext.c
(is_mimetype_of): Take care of wildcard expressions.
(is_candidate_for_folders): Only try to g_pattern_match() if has pattern.
* src/plugin-menu/nautilus-actions.c
(build_nautilus_menus): Add debug messages.
* data/actions/open-terminal-here.desktop:
* data/actions/show-na-parameters.desktop: Fix typo.
* src/api/na-object-item.h:
* src/core/na-object-item.c
(na_object_item_deals_with_version): New function.
* src/api/na-object-profile.h:
* src/core/na-object-profile.c
(na_object_profile_convert_v2_to_last): New function.
* src/core/na-object-action.c:
* src/core/na-object-menu.c
(ifactory_object_read_start): Removed (unused) function.
* src/io-xml/naxml-reader.c (naxml_reader_read_done): Cleanup code.
* src/nact/nact-ibasenames-tab.c (on_tab_updatable_selection_changed):
Display matchcase status for the current context.
2010-08-18 Pierre Wieser <[email protected]>
* src/core/na-object-profile.c (convert_pre_v3_parameters_str):
As a special optimization, converts '%d/%f' to '%f'.
* src/io-xml/naxml-reader.c (naxml_reader_read_data):
Let a node available for a second reading in case of a multiple-defined
data (e.g. icon which exists in localized and unlocalized forms).
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_new_from_uri):
Do not warn about malformed .desktop file when importing an URI.
Path+parameters are splitted whatever be the I/O importer.
* src/io-desktop/nadp-reader.c (read_done_profile_split_exec): Removed function.
* src/core/na-object-profile.c (split_path_parameters): New function.
* src/core/na-data-boxed.c (uint_set_from_string):
Fix default uint value when reading null string.
* src/nact/nact-assistant-import.c (assistant_apply): Cleanup code.
2010-08-17 Pierre Wieser <[email protected]>
* Replace GtkLable with GtkTextView in import and export assistants.
* src/nact/nact-assistant-export.c (assist_prepare_exportdone):
* src/nact/nact-assistant-import.c (prepare_importdone):
* src/nact/nact-assistant-export.ui:
* src/nact/nautilus-actions-config-tool.ui: Updated accordingly.
* src/core/na-core-utils.c (na_core_utils_str_split_first_word):
Accepts null or empty input string or output pointers.
* src/io-desktop/nadp-reader.c (read_done_profile_split_exec):
Only try to split a non-null command.
2010-08-16 Pierre Wieser <[email protected]>
* doc/nact/Makefile.am: Fix PDF build.
* configure.ac: Bump version number after unstable release.
* doc/nact/Makefile.am: Fix manuals cleanup.
* src/core/na-icontext.c (is_candidate_for_schemes):
Remove wrong variable override.
* configure.ac: Bump version number after unstable release.
2010-08-15 Pierre Wieser <[email protected]>
* data/actions/Makefile.am:
* data/actions/my-first-na-action.desktop:
* data/actions/my-first-na-menu.desktop:
* data/actions/open-terminal-here.desktop:
* data/actions/show-na-parameters.desktop: New files.
* data/gconf-schemas/Makefile.am:
Install GConf schemas in PKGDATADIR/gconf-schemas.
* NEWS: Update NEWS before unstable release.
Create a new data/actions subdirectory.
* configure.ac:
* data/Makefile.am: Updated accordingly.
* data/actions/Makefile.am:
* data/actions/README: New files.
Move schemas into a new subdirectory data/gconf-schemas.
* configure.ac:
* data/Makefile.am: Updated accordingly.
Move exports/ subdirectory into data/ tree.
* configure.ac:
* data/Makefile.am: Updated accordingly.
* data/exports/Makefile.am:
* data/exports/README: New files.
* doc/nact/Makefile.am: Fix PDF installation.
* src/core/na-object-profile.c (convert_pre_v3_parameters_str):
%f used to be the name of the file (a basename), converts it to %b.
2010-08-13 Pierre Wieser <[email protected]>
* doc/api/nautilus-actions-sections.txt:
* doc/api/nautilus-actions-docs.xml: New files.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_set_locale_string):
Write all available locales to have a chance another locale can get it.
* Makefile.am:
Build doc after src so that libraries are available when documenting them.
* autogen.sh:
* configure.ac: Implement gtk-doc and manuals generation.
* doc/api/Makefile.am: Build gtk-doc for public API.
* doc/nact/C/nact-conditions.xml:
* doc/nact/C/nact-execution.xml:
* doc/nact/C/nact-menus.xml:
* doc/nact/C/nact-profiles.xml:
* doc/nact/C/nact-sorting.xml:
* doc/nact/C/nact-starting.xml:
* doc/nact/C/nact-where.xml:
* doc/nact/C/nautilus-actions-config-tool.xml:
Update NACT user's manual.
* doc/nact/Makefile.am: Implement manuals generation.
* src/api/na-core-utils.h:
* src/api/na-data-boxed.h:
* src/api/na-data-types.h:
* src/api/na-gconf-utils.h:
* src/api/na-icontext.h:
* src/api/na-iduplicable.h:
* src/api/na-iimporter.h:
* src/api/na-object-api.h:
* src/api/na-object-id.h:
* src/api/na-object-item.h:
* src/core/na-core-utils.c:
* src/core/na-data-boxed.c:
* src/core/na-export-format.c:
* src/core/na-export-format.h:
* src/core/na-exporter.c:
* src/core/na-exporter.h:
* src/core/na-factory-object.c:
* src/core/na-factory-object.h:
* src/core/na-gconf-monitor.c:
* src/core/na-gconf-utils.c:
* src/core/na-iabout.h:
* src/core/na-icontext.c:
* src/core/na-ifactory-provider.c:
* src/core/na-importer-ask.c:
* src/core/na-io-provider.c:
* src/core/na-iprefs.c:
* src/core/na-object-id.c:
* src/core/na-object-item.c:
* src/core/na-object.c:
* src/core/na-selected-info.c:
* src/core/na-selected-info.h:
Update comments to suits gtk-doc requirements.
* COPYING-DOCS:
* doc/nact/C/figures/nact-desktop-environment-frame.png:
* doc/nact/C/figures/nact-exec-mode-frame.png:
* doc/nact/C/figures/nact-execute-as-frame.png:
* doc/nact/C/figures/nact-execution-environment-frame.png:
* doc/nact/C/figures/nact-selection-count-frame.png:
* doc/nact/C/figures/nact-startup-mode-frame.png:
* doc/nact/C/figures/nact-target-location.png:
* doc/nact/C/figures/nact-working-directory-frame.png:
* doc/nact/C/figures/sort-asc.png doc/nact/C/figures/sort-desc.png:
* doc/nact/C/figures/sort-manual.png:
* m4/na-enable-manuals.m4: New files.
2010-08-10 Pierre Wieser <[email protected]>
* src/nact/nact-icommand-tab.c: No more check for a non-empty profile name.
Allow writing of empty data.
* src/api/na-data-boxed.h:
* src/core/na-data-boxed.c
(na_data_boxed_is_set): Removed function.
(na_data_boxed_is_default): New function.
* src/io-desktop/nadp-writer.c (nadp_writer_ifactory_provider_write_data):
* src/io-gconf/nagp-writer.c (nagp_writer_write_data):
* src/io-xml/naxml-writer.c (naxml_writer_write_data):
Updated accordingly.
* src/core/na-object-item-factory.c:
* src/core/na-object-profile-factory.c:
Remove useless log description for a fake data.