-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog-2011
2913 lines (2163 loc) · 96.5 KB
/
ChangeLog-2011
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
2011-12-31 Pierre Wieser <[email protected]>
* src/core/na-importer.c:
* src/core/na-importer.h (na_importer_free_ask_mode): Removed function.
2011-12-30 Pierre Wieser <[email protected]>
* src/core/na-import-mode.c:
* src/core/na-import-mode.h: Implement NAImportMode object class.
* src/core/na-importer.c:
* src/core/na-importer.h
(na_importer_get_modes, na_importer_get_ask_mode): New functions.
* src/core/na-ioptions-list.c:
* src/core/na-ioptions-list.h (free_options, free_ask_option):
Add 'container_parent' as an argument of the methods.
* src/nact/nact-assistant-export.c:
* src/nact/nact-export-ask.c: Updated accordingly.
* src/nact/nact-preferences-editor.c:
Implement NAIOptionsList interface for Import mode tab.
* src/nact/nact-preferences.ui: Updated accordingly.
2011-12-29 Pierre Wieser <[email protected]>
* src/core/na-import-mode.c (instance_finalize): Free private structure.
* src/nact/nact-preferences-editor.c (on_base_initialize_gtk_toplevel):
Remove unused variables.
2011-12-28 Pierre Wieser <[email protected]>
* src/nact/base-application.c (class_init): Property labels are not translatable.
* src/nact/base-application.h: Review comments.
* src/nact/main.c (main): Set command-line arguments here.
* src/nact/nact-application.c (class_init): Remove "updater" property.
* src/nact/nact-application.c:
* src/nact/nact-application.h (nact_application_new): Have an empty constructor.
2011-12-27 Pierre Wieser <[email protected]>
* src/io-desktop/export-desktop.png: New file.
* src/io-desktop/nadp-formats.c (nadp_formats_get_formats): Define an icon
for desktop export format.
* src/io-desktop/Makefile.am: Updated accordingly.
* src/io-xml/export-dump.png:
* src/io-xml/export-schemas-v1.png:
* src/io-xml/export-schemas-v2.png: New files.
* src/io-xml/naxml-formats.c (naxml_formats_get_formats): Define icons for
XML export formats.
* src/io-xml/Makefile.am: Updated accordingly.
* src/core/na-import-mode.c:
* src/core/na-import-mode.h:
* src/core/na-ioption.c:
* src/core/na-ioption.h:
* src/core/na-ioptions-list.c:
* src/core/na-ioptions-list.h: New files.
* src/core/Makefile.am: Updated accordingly.
* src/core/na-gtk-utils.c:
* src/core/na-gtk-utils.h:
* src/nact/base-gtk-utils.c:
* src/nact/base-gtk-utils.h (base_gtk_utils_set_editable,
base_gtk_utils_radio_set_initial_state,
base_gtk_utils_radio_reset_initial_state): Move functions to na-gtk-utils.
* src/nact/nact-export-ask.c:
* src/nact/nact-preferences-editor.c: Updated accordingly.
2011-12-25 Pierre Wieser <[email protected]>
* src/core/na-gtk-utils.c:
* src/core/na-gtk-utils.h
(na_gtk_utils_search_for_child_widget): Renamed as na_gtk_utils_find_widget_by_name().
* src/core/na-importer-ask.c:
* src/nact/base-window.c:
* src/nact/nact-assistant-export.c:
* src/nact/nact-assistant-import.c:
* src/nact/nact-icon-chooser.c:
* src/nact/nact-tree-view.c: Updated accordingly.
2011-12-23 Pierre Wieser <[email protected]>
* src/core/na-gtk-utils.c:
* src/core/na-gtk-utils.h (na_gtk_utils_find_widget_by_type): New function.
2011-12-22 Pierre Wieser <[email protected]>
* src/core/na-export-format.c: Remove superfluous gdk-pixbuf.h include.
* src/core/na-settings.c:
* src/core/na-settings.h: New "export-assistant-paned-width" preference.
* src/nact/nact-assistant-export.c
(instance_dispose, on_base_initialize_base_window):
Keep the position of the horizontal pane as a user preference.
* src/nact/nact-assistant-export.ui: Give a more kind name to the pane.
* src/nact/nact-assistant-export.c:
* src/nact/nact-assistant-export.ui: Whole refactoring.
* src/nact/nact-export-format.c:
* src/nact/nact-export-format.h: Refactor to display in a GtkTreeView.
* src/nact/base-assistant.c (do_run): Destroy the assistant when quitting.
* src/core/na-export-format.c:
* src/core/na-export-format.h
(na_export_format_get_exporter): Renamed as na_export_format_get_provider().
(na_export_format_get_pixbuf): New function.
* src/core/na-exporter.c
(exporter_free_formats): Fix the test.
(find_exporter_for_format): Updated accordingly.
2011-12-21 Pierre Wieser <[email protected]>
NAIExporter interface upgrade.
* src/api/na-iexporter.h:
Define a new NAIExporterFormatExt structure, which embeds a GdkPixbuf.
* src/core/na-export-format.c:
* src/core/na-export-format.h (na_export_format_new):
Updated to new NAIExporterFormatExt structure.
* src/core/na-exporter.c (na_exporter_get_formats):
Take into account the new NAIExporter interface version.
* src/io-desktop/nadp-desktop-provider.c: Updated to new NAIExporter
interface version.
* src/io-desktop/nadp-formats.c
(nadp_formats_get_formats, nadp_formats_free_formats): New functions.
* src/io-xml/naxml-formats.c: Updated to the new NAIExporter interface
version.
* src/io-xml/naxml-formats.c:
* src/io-xml/naxml-formats.h
(naxml_formats_get_formats, naxml_formats_free_formats): New functions.
2011-12-20 Pierre Wieser <[email protected]>
* src/nact/nact-menubar.c: Do not talk about XML files on import/export.
* src/nact/nact-assistant-import.c
(prepare_confirm, prepare_importdone):
Force immediate redraw with Gtk2.
(prepare_importdone): Color the URI depending of the status.
* src/nact/nact-assistant-import.ui:
Display the import mode in only one GtkLabel.
2011-12-19 Pierre Wieser <[email protected]>
Review import assistant.
- File selection: enable to forward if at least one loadable file.
- Import mode: replace the radio button group with a list view.
- Confirm and Summary pages: fully review the layout.
* src/nact/Makefile.am:
* src/nact/nact-assistant-import.c:
* src/nact/nact-assistant-import.ui: Updated accordingly.
* src/nact/base-gtk-utils.c
(base_gtk_utils_get_pixbuf, base_gtk_utils_render): Fix typos in a comment.
2011-12-14 Pierre Wieser <[email protected]>
* src/nact/nact-match-list.c (nact_match_list_on_selection_changed):
Fix typo in the comment.
* src/nact/nact-export-format.c (draw_in_vbox): Increment spacing.
2011-12-13 Pierre Wieser <[email protected]>
* docs/reference/Makefile.am: Fix (one more time) the build.
* docs/reference/nautilus-actions-sections.txt: Add new functions.
Have a distinct interface definition for import assistant.
* src/nact/nact-assistant-import.ui: New file.
* po/POTFILES.in:
* src/nact/Makefile.am:
* src/nact/nact-assistant-import.c:
* src/nact/nautilus-actions-config-tool.ui: Updated accordingly.
* src/nact/nautilus-actions-config-tool.ui:
* src/nact/nact-assistant-export.ui: Add a padding to GtkFileChoosers.
* src/nact/nautilus-actions-config-tool.ui: Let a page be scrolled.
* src/nact/nact-assistant-export.ui: Remove useless placeholder.
2011-12-12 Pierre Wieser <[email protected]>
* src/nact/nact-preferences.ui:
Fix vertical expand in runtime execution tab and auto-save frame.
* src/nact/nact-assistant-export.ui:
* src/nact/nautilus-actions-config-tool.ui:
* src/nact/nact-export-format.c (draw_in_vbox): Make assistant labels wrappable.
* src/io-desktop/nadp-formats.c:
* src/io-xml/naxml-formats.c: Review the description of the export formats.
* configure.ac:
* src/core/na-gtk-utils.c:
* src/core/na-importer-ask.ui:
* src/nact/nact-add-capability-dialog.c:
* src/nact/nact-add-capability.ui:
* src/nact/nact-add-scheme-dialog.c:
* src/nact/nact-add-scheme.ui:
* src/nact/nact-assistant-export.ui:
* src/nact/nact-clipboard.c:
* src/nact/nact-icon-chooser.ui:
* src/nact/nact-main-tab.c:
* src/nact/nact-menubar.c:
* src/nact/nact-preferences.ui:
* src/nact/nact-schemes-list.c:
* src/nact/nact-tree-model-dnd.c:
* src/nact/nautilus-actions-config-tool.ui: Now requires Gtk 2.20.
* tools/release-tarball.sh: Automatically installs manuals on the website
when releasing a new stable version.
2011-12-09 Pierre Wieser <[email protected]>
* tools/release-tarball.sh: Take _build builddir into account.
* configure.ac: Post release bump version.
* NEWS:
* TODO: Update before release.
* src/core/na-gconf-migration.c (na_gconf_migration_run):
Run verbosely.
* src/utils/na-gconf2key.sh.in: Fix unset variable.
* src/nact/nact-match-list.c (insert_new_row):
New rows now default to be 'matched'.
* src/core/na-updater.c (na_updater_delete_item):
Do not try to remove from the backend an item which has never been written.
* src/nact/nact-menubar-file.c:
Fix typo in translatable message.
(nact_menubar_file_save_items): Reinitialize messages pointer.
* src/nact/nact-tree-ieditable.c (add_to_deleted_rec):
Only count as deleted items which were read from the backend.
Compute level zero status.
* src/core/na-importer-ask.c (na_importer_ask_user):
* src/core/na-settings.h:
Change import default mode and export default format to 'Ask'.
* src/io-xml/naxml-writer.c
(write_data_schema_v2, write_data_dump):
String and uint lists have the GConf format (between square brackets).
* src/io-xml/naxml-reader.c (read_done_action_read_profiles):
Make sure we have at least one profile attached to the action.
* src/io-gconf/nagp-reader.c (read_done_action_read_profiles):
Make sure we have at least one profile attached to the action.
* src/io-desktop/nadp-desktop-file.c:
* src/io-desktop/nadp-desktop-file.h (nadp_desktop_file_has_profile):
New function.
* src/io-desktop/nadp-reader.c
(item_from_desktop_path):
Replace the warning with an error message to be returned to the caller.
(read_done_action_read_profiles):
Attach at least a default profile to the action.
(read_done_action_load_profile):
Define a default profile if not found in .desktop file.
* src/core/na-icontext-factory.c: Fix mimetypes and schemes default values.
* src/core/na-icontext.c (is_compatible_scheme): Fix scheme test.
2011-12-06 Pierre Wieser <[email protected]>
* src/utils/na-gconf2key.sh.in:
Fix permissions when creating the configuration directory.
* src/core/na-settings.c (settings_new):
* src/io-desktop/nadp-writer.c
(nadp_iio_provider_is_able_to_write, nadp_iio_provider_write_item):
Fix permissions when creating the configuration directory.
* src/api/na-core-utils.h:
* src/core/na-core-utils.c (na_core_utils_dir_list_perms): New function.
* src/nact/nact-tree-model-dnd.c (drop_uri_list):
Fix and improve error messages during drop operations.
Fix a coredump when trying to import an empty file by DnD.
Extend the fix by checking the size and the type of the candidate.
* src/api/na-core-utils.h:
* src/core/na-core-utils.c (na_core_utils_file_is_loadable): New function.
* src/api/na-iimporter.h (IMPORTER_CODE_NOT_LOADABLE): New return code.
* src/core/na-importer.c (import_from_uri):
Do not try other modules one the first detects that a file is not loadable.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_new_from_uri):
* src/io-desktop/nadp-reader.c (nadp_reader_iimporter_import_from_uri):
* src/io-xml/naxml-reader.c (naxml_reader_import_from_uri):
Check whether the file is loadable before trying to import it.
* src/nact/nact-main-tab.h:
* src/nact/nact-main-window.h: Fix comments.
* src/nact/nact-main-window.c: Fix typo.
* src/nact/nact-tree-model.c (nact_tree_model_new):
No more connect to base-window-initialize-gtk signal.
Initialize model without waiting for signal triggering.
* src/nact/nact-tree-view.c (instance_constructed):
No more connect to base-window-initialize-gtk signal.
2011-12-05 Pierre Wieser <[email protected]>
* src/core/na-importer-ask.c (import_ask_new):
* src/nact/nact-add-capability-dialog.c (on_base_initialize_gtk_toplevel):
* src/nact/nact-add-capability.ui:
* src/nact/nact-add-scheme-dialog.c (on_base_initialize_gtk_toplevel):
* src/nact/nact-add-scheme.ui:
* src/nact/nact-export-ask.c (on_base_initialize_gtk_toplevel):
* src/nact/nact-icon-chooser.c (on_base_initialize_gtk_toplevel):
* src/nact/nact-icon-chooser.ui:
* src/nact/nact-preferences-editor.c (on_base_initialize_gtk_toplevel):
Remove (deprecated since 2.22) 'has_separator' property from GtkDialog.
* src/io-xml/naxml-reader.c (naxml_reader_import_from_uri):
Display an synthetic error message if cannot handle the file.
* src/io-desktop/nadp-reader.c (nadp_reader_iimporter_import_from_uri):
Display an synthetic error message if cannot handle the file.
* po/POTFILES.in: Updated accordingly.
* src/core/na-importer.c (import_from_uri): Only display error messages
of the interface which has eventually successfully imported the item.
* src/core/na-importer.c (import_from_uri):
Make sure of the population against which we check for existance.
* src/core/na-iimporter.h: Improve comment.
2011-12-04 Pierre Wieser <[email protected]>
* docs/nact/Makefile.am: Work-around against #664768.
When a bug is detected in dblatex, we re-run it in debug mode, so that
we may be able to get the .pdf from temp directory.
* docs/nact/Makefile.am: Fix User's Manual generation.
* docs/reference/nautilus-actions-docs.xml: API only changes on minor versions.
* run-autogen.sh: Do not automatically make && make install after configure.
* run-distcheck.sh: Fix cleanup before making distcheck.
2011-12-03 Pierre Wieser <[email protected]>
* tools/check-headers.sh: Fix when builddir not equal to srcdir.
* run-distcheck.sh: Make sure that the document wil be rebuilt.
* m4/na-enable-manuals.m4:
Fix the test as possible values are 'gdt', 'db2html' and 'no.
* docs/reference/Makefile.am: Fix when builddir not equal to srcdir.
2011-12-02 Pierre Wieser <[email protected]>
Do not build the documentation at all if not asked for.
* m4/na-enable-manuals.m4: new ENABLE_MANUALS conditional.
* docs/nact/Makefile.am:
Make use of new ENABLE_MANUALS conditional.
Also test for conditionals when installing.
* run-autogen.sh: Yet improve the build script.
2011-12-01 Pierre Wieser <[email protected]>
* src/core/na-importer-ask.c (na_importer_ask_user):
Save window size and position when quitting, restoring it on next init.
2011-11-30 Pierre Wieser <[email protected]>
* src/core/na-gtk-utils.c:
* src/core/na-gtk-utils.h
(na_gtk_utils_restore_position_window, na_gtk_utils_save_window_position):
New functions.
* src/nact/base-gtk-utils.c
(base_gtk_utils_restore_window_position, base_gtk_utils_save_window_position):
Updated accordingly.
* src/nact/base-gtk-utils.h: Fix a comment.
* src/core/na-importer-ask.c:
* src/core/na-importer-ask.h: Now derives from GObject.
* src/core/na-importer-ask.c (import_ask_new):
All one-time initialization is made here, being able to return NULL if failed.
* src/core/na-importer-ask.c (on_destroy_toplevel):
NAImporterAsk is now attached to its parent, and destroyed with it.
* src/nact/nact-assistant-import.c (assistant_apply):
Make the assistant the parent of NAImporterAsk (instead of main window).
2011-11-29 Pierre Wieser <[email protected]>
* src/core/na-object-item-factory.c:
Do not let a read or imported item go until the UI with an empty label.
* src/io-xml/naxml-reader.c (schema_parse_schema_content):
Only search for identifier in <applyto> schema key.
2011-11-28 Pierre Wieser <[email protected]>
* src/io-desktop/nadp-desktop-file.c (check_key_file):
- Do not even try to read zero byte length files.
- Check Type key before trying to import the file.
* src/core/na-importer-ask.c:
* src/core/na-importer-ask.ui: Make NAImporterAsk normally answer to
response codes, and quit on Esc.
* nact/nact-export-format.c (draw_in_vbox): Use gtk_misc functions.
* run-autogen.sh:
* run-distcheck.sh: Review in order to be able to build several guests
from a common single source tree.
* src/nact/nact-assistant-export.c (assist_initial_load_target_folder):
Get ride of the superfluous 'name' entry field when selecting the folder.
* src/nact/nact-export-ask.c (nact_export_ask_user):
Actually do not export the item if the user cancels the operation.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_new_from_uri):
Only display debug messages (try to minimize warnings on import).
* src/io-xml/naxml-reader.c
(publish_undealt_nodes): Removed useless (and buggy) function.
(manage_import_mode): Returns all messages to the caller.
* src/io-desktop/nadp-reader.c (nadp_reader_iimporter_import_from_uri):
Returns all messages to the caller.
2011-11-27 Pierre Wieser <[email protected]>
* src/nact/base-gtk-utils.c (base_gtk_utils_restore_window_position):
Limit the window size, maximizing with the screen size.
* nact/nact-tree-view.h:
* nact/nact-tree-view.c: Define parent property.
* nact/nact-tree-view.c (on_tree_view_realized):
Delay all signal connection until the widget be actually realized.
* src/nact/nact-sort-buttons.c (on_base_initialize_buttons):
Delay the connection to the NactTreeView signal until we are sure the
widget is realized.
* src/nact/nact-main-window.c (on_base_initialize_gtk_toplevel):
Delay the initialization of the NactTreeView until the Gtk toplevel has
been loaded from XML Glade file.
* src/nact/nact-assistant-export.c: Adapt to gtk3.
* src/nact/nact-export-format.c (nact_export_format_init_display):
Remove the useless intermediate GtkGrid.
* src/nact/nact-assistant-export.ui: Let the format selection be scrolled.
* src/core/na-gtk-utils.c (dump_children):
Also dump the address of the child widget.
Also dump children which do not have a name (dynamically allocated).
2011-11-26 Pierre Wieser <[email protected]>
* src/nact/nact-tree-ieditable.c (do_insert_before): Re-reverse the list
before returning so that the list returns as unchanged to the caller.
* src/io-desktop/nadp-desktop-file.c (nadp_desktop_file_new_from_uri):
Slightly optimize code.
* src/core/na-importer.c (na_importer_import_from_list): Fix comments.
* src/io-xml/naxml-reader.c (naxml_reader_import_from_uri): Do not return
any error message if we do not identify at least a well-formed document
with a known root node.
* src/api/na-boxed.h:
* src/api/na-timeout.h:
* src/core/na-boxed.c:
* src/core/na-data-boxed.c:
* src/core/na-gconf-migration.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-iprefs.c:
* src/core/na-object-item.c:
* src/core/na-object.c:
* src/core/na-settings.c:
* src/core/na-updater.c: Only reference minor version in 'Since:' and
'Deprecated' comments.
* run-autogen.sh: Change development installation directory to _install.
* configure.ac: gtk-doc and gnome-doc-utils are no more mandatory packages.
m4_ifdef is not a good way to test if these packages are available, as the
m4 files default ot be distributed.
* Makefile.am: Explicitely disable scrollkeeper here when making distcheck.
2011-11-25 Pierre Wieser <[email protected]>
* docs/nact/Makefile.am: Fully review the NACT User's Manual build.
* configure.ac: gtk-doc and gnome-doc-utils are no more mandatory packages.
* Makefile.am:
No more try to rebuild manuals when making distcheck.
Move gnome-doc-utils.make and gtk-doc.make to MAINTAINERCLEANFILES target.
* run-autogen.sh:
Rename 'autogen_target' variable to 'target'.
Remove distcheck target as doc is enough to build manuals.
* run-distcheck.sh: Update to new 'target' variable and 'doc' target.
* docs/reference/Makefile.am:
gtk-doc is no more a mandatory package.
Requires gtk-doc 1.15 to take advantage of new source option.
* docs/reference/nautilus-actions-docs.xml: Bump copyright year.
2011-11-21 Pierre Wieser <[email protected]>
* src/nact/nautilus-actions-config-tool.ui:
Remove empty children from GtkAssistant container.
* src/nact/nact-assistant-import.c:
Adapt to the new way Gtk+ 3.2 builds the assistant.
* src/nact/base-application.c (appli_initialize_gtk): Fix a typo.
* src/core/na-gtk-utils.c (na_gtk_utils_dump_children):
Increment the level of the first child of the hierarchy.
* run-autogen.sh: Be able to run from another directory.
2011-11-16 Pierre Wieser <[email protected]>
* src/nact/base-window.c:
* src/nact/base-window.h (base_window_dump_children): New function.
* src/core/na-gtk-utils.c:
* src/core/na-gtk-utils.h (na_gtk_utils_dump_children): New function.
* docs/nact/C/nact-conditions.xml:
* docs/nact/C/nact-edit.xml:
* docs/nact/C/nact-execution.xml:
* docs/nact/C/nact-profiles.xml:
* docs/nact/C/nact-sorting.xml:
* src/nact/nact-assistant-import.c:
Fix with advices of Christian Kirbach.
Fix #660399, reported by Christian Kirbach.
2011-11-15 Pierre Wieser <[email protected]>
* src/nact/nact-export-format.c:
* src/nact/nact-main-toolbar.c:
Get ride of deprecated GtkHBox and GtkVBox.
2011-11-05 Pierre Wieser <[email protected]>
* run-autogen.sh, run-distcheck.sh: Defines a special 'distcheck' mode.
2011-11-02 Pierre Wieser <[email protected]>
* docs/nact/C/nact-conditions.xml:
* docs/nact/C/nact-edit.xml:
* docs/nact/C/nact-execution.xml:
* docs/nact/C/nact-menus.xml:
* docs/nact/C/nact-profiles.xml:
Apply patch provided by Christian Kirbach.
Fix #661498 reported by Christian Kirbach.
* docs/nact/C/nact-conditions.xml: Replace 'regarding' with
'regardless'.
From #660399, reported by Gabor Karsay.
2011-11-02 Pierre Wieser <[email protected]>
* src/io-desktop/nadp-writer.c (nadp_iio_provider_is_able_to_write):
* src/nact/base-gtk-utils.c (base_gtk_utils_select_file_with_preview):
* src/nact/nact-assistant-import.c (prepare_confirm):
* src/nact/nact-clipboard.c (nact_clipboard_dnd_set):
* src/nact/nact-main-statusbar.c (nact_main_statusbar_set_locked):
* src/nact/nact-preferences-editor.c (desktop_setup):
* src/nact/nact-providers-list.c (on_selection_changed):
* src/test/test-virtuals-without-test.c (first_instance_dispose):
Remove set but unused variables.
2011-07-25 Pierre Wieser <[email protected]>
* configure.ac: Fix test for nautilus_menu_provider_get_toolbar_items().
Fix #655237 - Toolbar icons are not created.
2011-07-03 Pierre Wieser <[email protected]>
* configure.ac: Post-release version bump.
* NEWS: Update before releasing.
* TODO: Update before releasing.
* src/utils/na-gconf2key.sh.in: Update comment.
* docs/nact/C/nact-conditions.xml:
* docs/nact/C/nact-execution.xml:
* docs/nact/C/nact-where.xml:
Fix #652664 - [doc] couple of spelling and improvement suggestions;
patch provided by Christian Kirbach.
2011-06-10 Pierre Wieser <[email protected]>
* src/core/na-boxed.c (string_to_array):
Accepts now both semi-comma-separated list of strings and
comma-separated between square brackets (à la GConf) from string lists.
* src/io-xml/naxml-reader.c (slist_to_string):
Formats string list as a semi-comma-separated list of strings for NABoxed.
* src/utils/na-gconf2key.sh.in: No more obsolete the GConf reading,
as it may sometimes be needed to re-migrate a newly inserted item.
* src/io-gconf/nagp-reader.c (get_boxed_from_path):
Only allocate a new box when a non-null value has been read.
* src/core/na-settings.c (read_key_value_from_key_file):
Also dump the value read from a key file.
* src/core/na-gconf-utils.c (dump_entry): Also dump list values.
2011-06-08 Pierre Wieser <[email protected]>
* src/api/na-object-api.h:
* docs/reference/nautilus-actions-sections.txt
(na_object_is_file, na_object_is_dir, na_object_is_multiple):
Macros are moved from the official API as deprecated.
* src/core/na-icontext-factory.c
(ISFILE, ISDIR): No more declare properties for deprecated data.
(SCHEMES): Declare 'file' as the default.
* src/core/na-factory-object.c:
* src/core/na-factory-object.h (na_factory_object_is_set): New function.
* src/core/na-object-action.c (ifactory_object_read_done):
Dump the rough read data.
First create a v2 profile before converting it to last version.
* src/core/na-object-menu.c (ifactory_object_read_done):
Dump the rough read data.
* src/core/na-object-profile.c
(ifactory_object_read_done): Dump the rough read data.
(convert_pre_v3_isfiledir): Test if 'isfile' is set before using it.
* src/io-desktop/nadp-reader.c (nadp_iio_provider_read_items):
* src/io-gconf/nagp-reader.c (nagp_iio_provider_read_items):
* src/io-xml/naxml-reader.c (naxml_reader_import_from_uri):
Dump the whole read item, maybe after conversion.
2011-05-22 Pierre Wieser <[email protected]>
* src/core/na-iimporter.c (na_iimporter_manage_import_mode):
Setup default values.
* src/io-desktop/nadp-reader.c (nadp_reader_iimporter_import_from_uri):
Add trace message before unreffing the imported object.
* src/nact/nact-assistant-import.c (assistant_apply):
Do not try to import an empty list.
* src/nact/nact-tree-ieditable.c (nact_tree_ieditable_insert_items):
Check for non empty list.
2011-05-20 Pierre Wieser <[email protected]>
* tools/release-tarball.sh: Use new Gnome release script ftpadmin.
* nautilus-actions.doap: Update download page and mailing list infos.
* configure.ac: Post release version bump.
2011-05-19 Pierre Wieser <[email protected]>
* docs/nact/figures: Update screenshots.
* docs/nact/C/nact-properties.xml: New file.
2011-05-18 Pierre Wieser <[email protected]>
* src/core/na-selected-info.c: Extract filename for a GFile location.
* src/utils/na-gconf2keys.sh: Requires ksh.
* src/core/na-settings.c: Create the configuration directory if
doesn't exist yet.
2011-03-14 Pierre Wieser <[email protected]>
* src/test/Makefile.am: Do not build test programs in release mode.
* docs/nact/C/nact-sorting.xml:
* docs/nact/C/nautilus-actions-config-tool.xml: Fix some typos.
* docs/nact/C/articleinfo.xml:
Convert to *nix-like file.
Update manual copyright.
* docs/nact/C/figures/nact-desktop-environment-frame.png:
* docs/nact/C/figures/nact-execution-environment-frame.png:
* docs/nact/C/figures/nact-preferences-export.png:
* docs/nact/C/figures/nact-preferences-import.png:
* docs/nact/C/figures/nact-preferences-io-providers.png:
* docs/nact/C/figures/nact-preferences-runtime.png:
* docs/nact/C/figures/nact-preferences-schemes.png:
* docs/nact/C/figures/nact-preferences-ui.png:
* docs/nact/C/figures/nact-schemes-tab.png:
* docs/nact/C/figures/nact-target-location.png:
* docs/nact/C/figures/nact-working-directory-frame.png:
* docs/nact/C/figures/nact-export-done.png:
* docs/nact/C/figures/nact-export-format.png:
* docs/nact/C/figures/nact-export-home.png:
* docs/nact/C/figures/nact-export-items.png:
* docs/nact/C/figures/nact-export-summary.png:
* docs/nact/C/figures/nact-export-target.png:
* docs/nact/C/figures/nact-import-done.png:
* docs/nact/C/figures/nact-import-files.png:
* docs/nact/C/figures/nact-import-home.png:
* docs/nact/C/figures/nact-import-mode.png:
* docs/nact/C/figures/nact-import-resultat.png:
* docs/nact/C/figures/nact-import-summary.png:
* docs/nact/C/figures/nact-preferences-desktop.png:
* docs/nact/C/figures/nact-preferences-execution.png:
Updated and new screenshots for version 3.1.
2011-03-13 Pierre Wieser <[email protected]>
* configure.ac: Post-release version bump.
2011-03-11 Pierre Wieser <[email protected]>
* NEWS: Pre-release update.
* src/core/na-tokens.c (execute_action_command):
Only use g_spawn_async_with_pipes when required by execution mode
(work-around for #644289).
Do not close child pid before the end of the child process.
2011-02-26 Pierre Wieser <[email protected]>
* configure.ac: Post-release bump version.
* NEWS: Pre-release udate.
* src/core/na-settings.c:
* src/core/na-settings.h: NA_IPREFS_PLUGIN_MENU_LOG user preference renamed.
* src/plugin-menu/nautilus-module.c (set_log_handler):
Test if log are enabled before installing the log handler.
* src/plugin-menu/nautilus-actions.c:
* src/plugin-menu/nautilus-actions.h (nautilus_action_is_log_enabled):
Removed function. Fix #643359.
* configure.ac: Post-release bump version.
2011-02-25 Pierre Wieser <[email protected]>
* NEWS:
* README:
* README-GCONF: Update before releasing.
* src/api/na-core-utils.h:
* src/core/na-core-utils.c (na_core_utils_str_subst): New function.
* src/core/na-settings.c:
* src/core/na-settings.h:
Rename "terminal-prefix" user preference as "terminal-pattern".
* src/core/na-tokens.c:
* src/core/na-tokens.h (na_tokens_command_from_terminal_prefix):
Renamed as na_tokens_command_for_terminal().
* docs/reference/nautilus-actions-sections.txt:
* src/nact/nact-preferences-editor.c:
* src/nact/nact-preferences.ui: Updated accordingly.
* src/nact/nact-iexecution-tab.c (on_main_selection_changed):
Disable not implemented frames.
* src/nact/nautilus-actions-config-tool.ui:
Add a tooltip comment on not yet implemented fields.
* src/core/na-icontext.c (is_candidate_for_show_in):
First try desktop from user preferences.
NASettings is now a private singleton which allocates itself when needed.
Preference are so available anywhere without requiring an object.
* src/core/na-importer-ask.c (na_importer_ask_user):
* src/core/na-importer.c (import_from_uri):
* src/core/na-io-provider.c (na_io_provider_is_conf_readable):
* src/core/na-iprefs.c:
* src/core/na-iprefs.h:
* src/core/na-pivot.c (instance_constructed, instance_dispose):
* src/core/na-pivot.h (na_pivot_get_settings):
* src/core/na-settings.c:
* src/core/na-settings.h:
* src/core/na-tokens.c:
* src/core/na-tokens.h(na_tokens_execute_action):
* src/core/na-updater.c (are_preferences_locked):
* src/nact/base-gtk-utils.c:
* src/nact/nact-assistant-export.c (nact_assistant_export_run):
* src/nact/nact-assistant-import.c (nact_assistant_import_run):
* src/nact/nact-clipboard.c (export_row_object):
* src/nact/nact-export-ask.c (nact_export_ask_user):
* src/nact/nact-icon-chooser.c:
* src/nact/nact-ifolders-tab.c (on_browse_folder_clicked):
* src/nact/nact-main-toolbar.c (nact_main_toolbar_init):
* src/nact/nact-main-window.c (on_base_initialize_base_window):
* src/nact/nact-menubar-file.c (nact_menubar_file_save_items):
* src/nact/nact-preferences-editor.c:
* src/nact/nact-providers-list.c (nact_providers_list_save):
* src/nact/nact-schemes-list.c (init_view_get_default_list):
* src/nact/nact-sort-buttons.c (on_base_initialize_buttons):
* src/nact/nact-tree-model-dnd.c (drop_uri_list):
* src/nact/nact-tree-model.c (nact_tree_model_new):
* src/plugin-menu/nautilus-actions.c:
* src/utils/nautilus-actions-run.c: Updated accordingly.
Current desktop environment can be a user preference
* src/core/na-desktop-environment.c:
* src/core/na-desktop-environment.h: New files.
* po/POTFILES.in:
* src/core/Makefile.am:
* src/core/na-icontext.c (is_candidate_for_show_in):
* nact/nact-ienvironment-tab.c
(nact_ienvironment_tab_runtime_init_toplevel): Updated accordingly.
* src/core/na-settings.c:
* src/core/na-settings.h:
Define new NA_IPREFS_DESKTOP_ENVIRONMENT user preference.
(set_key_value): Setting a NULL string actually removes the key.
* src/nact/nact-preferences-editor.c:
* src/nact/nact-preferences.ui: Let the user choose his desktop.
* src/core/na-iabout.c: Renamed as src/core/na-about.c.
* src/core/na-iabout.h: Renamed as src/core/na-about.h.
NAIAbout is no more an interface, but just a set of functions.
* src/core/Makefile.am:
* src/core/na-core-utils.c (na_core_utils_print_version):
* src/nact/nact-application.c (nact_application_new_with_args):
* src/nact/nact-main-window.c:
* src/nact/nact-menubar-help.c (nact_menubar_help_on_about):
* src/plugin-menu/nautilus-actions.c (execute_about): Updated accordingly.
2011-02-24 Pierre Wieser <[email protected]>
Improve ExecutionMode implementation by defining a new user preference
* src/core/na-settings.c:
* src/core/na-settings.h: Define new NA_IPREFS_TERMINAL_PREFIX user preference.
* src/core/na-tokens.c:
* src/core/na-tokens.h
(na_tokens_command_from_terminal_prefix): New function.
(na_tokens_execute_action): New NASettings parameter.
* src/nact/nact-preferences-editor.c:
* src/nact/nact-preferences.ui: Let the user edit the preference.
* src/utils/nautilus-actions-run.c:
* po/POTFILES.in: Updated accordingly.
2011-02-23 Pierre Wieser <[email protected]>
* src/core/na-settings.c:
* src/core/na-settings.h: Define a new NA_IPREFS_PLUGIN_LOG user preference.
* src/plugin-menu/nautilus-actions.c:
* src/plugin-menu/nautilus-actions.h (nautilus_action_is_log_enabled):
New function.
* src/plugin-menu/nautilus-module.c (log_handler): Send debug trace to
syslog if the NA_IPREFS_PLUGIN_LOG preference is set.
* configure.ac: Bump Nautilus required version to 2.16
for having nautilus_menu_provider_emit_items_updated_signal() function.
* configure.ac:
* src/plugin-menu/nautilus-actions.c:
Check for nautilus_menu_provider_get_toolbar_items() function.
* src/core/na-selected-info.c (instance_init, instance_finalize):
Improve debug messages.
* src/core/na-icontext.c:
* src/nact/nact-ienvironment-tab.c: Improve list of desktop environments
(see http://standards.freedesktop.org/menu-spec/latest/apb.html).
Move Nautilus-Actions configuration files to nautilus-actions/ subdir
* src/core/na-settings.c (na_settings_new):
* src/utils/na-gconf2key.sh.in: Updated accordingly.
Implement execution mode property
* m4/na-check-for-gtk.m4: Check for Gio-unix.
* src/core/na-object-profile-factory.c: Improve translation comment.
* src/core/na-tokens.c (execute_action_command): Display output.
2011-02-21 Pierre Wieser <[email protected]>
* src/api/na-object.h:
* src/core/na-object.c (na_object_get_hierarchy, na_object_free_hierarchy):
Deprecated functions.
* src/core/na-object-id.c (v_new_id): No more call na_object_get_hierarchy().
Rewrite copy stack to get ride of iteration on class hierarchy
* src/api/na-object-api.h
(na_object_copy, na_object_get_hierarchy): Removed macros.
* src/api/na-icontext.h:
* src/core/na-icontext.c (na_icontext_copy): New function.
* src/core/na-object.c (object_copy_iter, iter_on_class_hierarchy):
* src/core/na-object-item.c (object_copy):
* src/core/na-object-action.c (object_copy):
* src/core/na-object-profile.c (object_copy):
* src/core/na-object-menu.c (object_copy): Updated accordingly.
Rewrite validity status check stack
* src/api/na-icontext.h:
* src/core/na-icontext.c (na_icontext_are_equal): New function.
* src/core/na-factory-object.c (na_factory_object_is_valid):
* src/core/na-object.c (iduplicable_is_valid):