-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog-2008
1422 lines (1042 loc) · 50.6 KB
/
ChangeLog-2008
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
2007-09-21 Olav Vitters <[email protected]>
* MAINTAINERS: correct userid.
2007-09-05 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
Fix a crash when trying to import a config without "Main" profile
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
Fix problem with the profile parsing check.
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
Add an error message when trying to import a config file more
recent than the current version of n-a can deal with.
2007-09-02 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-gconf-reader.h:
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* libnautilus-actions/nautilus-actions-config-gconf.h:
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config.c: Fix and cleaned
the GConf and internal signal callbacks notification system.
* utils/nautilus-actions-check-actions-change.c:
* utils/Makefile.am: Add an utility tool to check the functionnality
and ease debug of the GConf Reader system used in the Nautilus
extension.
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* plugin/nautilus-actions.c: Fix the function to get hash keys
from profiles hash table.
2007-08-26 Frederic Ruaudel <[email protected]>
* nact/nact-import-export.c: Remove the import option for
old xml config file format.
* nact/nautilus-actions-config.glade: Fix bug when clicking the About
button for the first time, both the about and the edit action dialog
appears.
* nact/nautilus-actions-config.glade: Remove the import option for
old xml config file format.
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c:
* nact/nact.c: Fix grammar and syntax error in translatable string.
Make GnomeVFS syntax homogeneous. Remove formating string in glade
from translation (space only strings). Add some i18n notes.
2007-05-30 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
* libnautilus-actions/nautilus-actions-config.h:
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* nact/nact-profile-editor.c:
* nact/nact-editor.c:
* nact/nact-editor.h:
* nact/nact.c: Change the way the profile names are managed to add
the existence of a description name for better readability in Nact.
It allows the use of UTF8 names in the profiles list.
* nact/nact-editor.c:
* nact/nact.c: Fix some missing/buggy resources freeing.
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
Fix action profile saving in GConf.
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c: Replace the "duplicate" profile button by
a "copy" and a "paste" button, so it is now possible to copy a
profile from one action to another.
* nact/nact-editor.c: Update the "save action" code
2007-05-25 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade:
* nact/nact-profile-editor.c: Fix the problem which make the legend
dialog modal (Bug #337542) by changing the Legend button into a
toggle button. The Legend dialog can't be closed directly.
* nact/nact-editor.c: Implement renaming of a profile
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h: Add func
to rename a profile.
* nact/nact-editor.c: implement deletion of a profile
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* nact/nact-editor.c: Change the definition of the function
nautilus_actions_config_action_add_profile () to manage error
when the profile name already exists.
* nact/nact-profile-editor.c: Implement duplication of a profile
2007-05-24 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade: Update the callbacks of all
the profile editor dialog field.
* nact/nact-profile-editor.c:
* nact/nact-profile-editor.h:
* nact/nact-editor.c:
* nact/nact-utils.c:
* nact/nact-utils.h: Implement addition and edition of the profile
in Nact.
* libnautilus-actions/nautilus-actions-config.h:
* libnautilus-actions/nautilus-actions-config.c: Add functions to
manage profiles more easily.
2007-05-23 Frederic Ruaudel <[email protected]>
* nact/nact-editor.c: Move profile edition code to the new files
nact/nact-profile-editor.[ch].
* nact/nact-profile-editor.c:
* nact/nact-profile-editor.h: Create these new files to manage
profile edition code.
* nact/Makefile.am: Add nact/nact-profile-editor.[ch] to the list of
file to compile for nact.
2007-05-22 Frederic Ruaudel <[email protected]>
* nact/nact-editor.h:
* nact/nact-editor.c: Try to set the legend dialog as non-modal (Bug
#337542). Start to implement the profile management gui part.
Comment obsolete code to make Nact run for the tests.
2007-05-17 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade: Update callback func names of the
profiles edition button.
* libnautilus-actions/nautilus-actions-config.c: Fix a bug when trying
to add a new profile to an uninitialized actions'profiles hash.
2007-05-16 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade: Update About dialog info
and refactor the interface to take care of the future "profiles"
feature.
* nact/nact-utils.h:
* nact/nact.c: Add about dialog when compiling with GTK+ >= 2.6
* po/POTFILES.in: Remove obsolete convertion program code file
from pot files.
* libnautilus-actions/nautilus-actions-config.c: Change the get
profile function to get the default one when NULL is passed as
parameter to profile_name.
* nact/nact-import-export.c: Remove import code to make Nact
compile (due to XML format backward compatibility removal).
* nact/nact-editor.c:
* utils/nautilus-actions-new-config.c: Fix code to deal with the
new profile support (only default profile supported)
* utils/Makefile.am:
* utils/nautilus-actions-convert.c: Remove this useless program
since backward compat with 0.x xml config file format is not supported
anymore.
2007-05-15 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-schema-reader.c: Fix bad
plural forms by using ngettext to ease i18n (Bug #436375).
2007-04-24 Brian Pepple <[email protected]>
* icons/Makefile.am (update-icon-cache): fix gtk-update-icon-cache for
uninstall-hook (Bug #433078).
2007-04-10 Frederic Ruaudel <[email protected]>
* po/POTFILES.in: Remove old xml format parser file from pot
files (Bug #427301)
2007-04-04 Frederic Ruaudel <[email protected]>
* plugin/nautilus-actions-test.c:
* plugin/nautilus-actions-test.h:
* plugin/nautilus-actions.c: Implement the "profile" feature into
the nautilus extension part. For each action it checks for the
first profile which validate the conditions.
2007-04-03 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-xml.c:
* libnautilus-actions/nautilus-actions-config-xml.h:
* libnautilus-actions/Makefile.am: Remove old 0.x n-a XML file
format support.
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h: Fix compilation error
following the big "profile feature" rewrite in libnautilus-actions.
* libnautilus-actions/nautilus-actions-config-gconf-private.h: Remove
infos about a new schema key "profiles" which is not needed anymore.
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h: Continue to
implement the profile system in the action config, to be able to handle
multiple conditions/parameters for the same item name (eg. Open in
terminal, on files, on folders, on desktop).
2007-03-30 Frederic Ruaudel <[email protected]> - branch to 2.x
* configure.in: Starting V2.x developpement version. Stable version
is now in nautilus-actions-1.x-maintenance branch. Update the version
numbers.
* libnautilus-actions/nautilus-actions-config.h:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c: Start to
implement the profile system in the action config, to be able to handle
multiple conditions/parameters for the same item name (eg. Open in terminal,
on files, on folders, on desktop).
2007-03-02 Frederic Ruaudel <[email protected]>
* configure.in: Fix Bug #413834 by applying patch submited
by christopher taylor <[email protected]>. Now the new 32x32
pixmap compile correctly.
2006-11-24 Frederic Ruaudel <[email protected]>
* utils/Makefile.am: Fix Bug #378890 by applying patch submited
by Fryderyk Dziarmagowski <[email protected]>. Now it's possible
to compile n-a with --as-needed passed to LDFLAGS.
2006-11-13 Frederic Ruaudel <[email protected]>
* icons/16x16/nautilus-actions.svg:
* icons/22x22/nautilus-actions.svg:
* icons/scalable/nautilus-actions.svg: Icons relicencing
from CC-by-SA to GPL for compatibility with n-a license.
(thanks to Ulisse Perusin)
* icons/Makefile.am:
* icons/32x32/Makefile.am:
* icons/32x32/Makefile.in:
* icons/32x32/nautilus-actions.png:
* icons/32x32/nautilus-actions.svg: Adding 32x32 format
according to the new Tango and GIT standards (thanks to Ulisse
Perusin)
2006-09-12 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* nact/nact-import-export.c: Fixed problem with subsequent schema
importation which seems to fails with an "already existing config"
error (Bug #354623)
* nact/nautilus-actions-config.glade: Fix problem with "duplicate"
button sensitiveness when running Nact without any action configured.
(Bug #355451 - apply patch from Deji Akingunola)
2006-07-18 Frederic Ruaudel <[email protected]> 1.4
* plugin/nautilus-actions-utils.c: Change the creation of the %M
parameter list by getting the base folder of each file instead of just
the one of the first file for each. This is to deal with SavedSearch folder
in nautilus >= 2.14 which can have file from different folder gathered in the
same nautilus window. (Bug reported by David Winick)
2006-06-29 Frederic Ruaudel <[email protected]>
* po/POTFILES.in: Add new files containing translatable strings
2006-06-27 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.h:
* libnautilus-actions/nautilus-actions-config-xml.c:
* libnautilus-actions/nautilus-actions-config-xml.h:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c:
* nact/nact-editor.c:
* nact/nact-import-export.c:
* nact/nact.c: Add better error handling in Nact with error dialog
and detailed error messages especially when importing new config.
2006-06-26 Frederic Ruaudel <[email protected]>
* nact/nact-editor.c:
* nact/nact-utils.c: Find a better way to fix pango parsing
problem for xml special chars with the glib function
g_markup_printf_escaped ().
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c:
* nact/nact-import-export.c:
* nact/nact-utils.c:
* nact/nact-utils.h:
* nact/nact.c:
* nact/nact.h: Move nautilus_actions_display_error() function
in nact-utils.c, change their old call with g_error() as it was
used to display Glade parsing error and define it to display a
Gtk error dialog to the user. Then add some error handling in
the import and icon loading part.
* nact/nact-editor.c: Fix the icon preview. When the string
was invalid, the icon widget wasn't hidden so it shows the last
valid icon rendered. Now the icon is correctly hidden.
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c:
* nact/nact-editor.c:
* nact/nact.c: Free GError values after their usage with
g_error_free().
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
Fix the problem with the "Export" function
when one of an action's settings contains a xml special char (&,
<, >, ...) (Bug #345143)
* nact/nact-utils.c: Fix the problem with pango parsing when trying
to render the parameter's example string when it contains an xml
special char (&, <, >, ...).
2006-06-23 Frederic Ruaudel <[email protected]>
* plugin/nautilus-actions.c:
* plugin/nautilus-actions.h: Optimize the extension by updating
the config list only when they changed and not each time Nautilus
ask for the list of items.
2006-06-16 Frederic Ruaudel <[email protected]>
* configure.in:
* plugin/nautilus-actions.c: Fix Bug #325584 which make nautilus
updates his popup menus when a config changes in nautilus-actions.
This requires a patch applied to Nautilus (see Bug #339273 comitted
in Nautilus' CVS Head).
2006-05-24 Frederic Ruaudel <[email protected]>
* libnautilus-actions/Makefile.am: Fix missing libxml2
library declaration (Bug #342799, patch from christopher
taylor <[email protected]>).
2006-04-19 Frederic Ruaudel <[email protected]> 1.2
* plugin/nautilus-actions-test.c:
* plugin/nautilus-actions-utils.c: Fix problem with crash
when selecting a mounted cdrom on the desktop with
Nautilus 2.14.1 (Bug #338931)
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* utils/nautilus-actions-new-config.c: Fix some missing change
concerning the implementation of the management of the mimetype
patterns and the case insensitive filename patterns (Bug #325581
and Bug #329260).
2006-04-18 Frederic Ruaudel <[email protected]>
* nact/nact-editor.c: Fix a SegFault when setting
empty patterns in Nact's edit dialog.
* libnautilus-actions/nautilus-actions-config.c:
* plugin/nautilus-actions-test.c: Finish implementing
the management of the mimetype patterns and the case
insensitive filename patterns (Bug #325581 and Bug #329260).
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
Fixed typos in the new strings (Bug #338773)
2006-04-13 Frederic Ruaudel <[email protected]>
* configure.in: Update the version of n-a and the config file.
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* libnautilus-actions/nautilus-actions-config-xml.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* nact/nact-editor.c:
* nact/nautilus-actions-config.glade: Start to manage the mimetype
patterns and the case insensitive filename patterns (Bug #325581
and Bug #329260).
* icons: Add new Tango style icons created by Ulisse
* AUTHORS: Update Contributors list
* configure.in:
* Makefile.am:
* nact/Makefile.am:
* nact/nact.c:
* nact/nact.desktop.in:
* nact/nautilus-actions-config.glade: Make theme-friendly icons
installation to achieve GnomeGoal#2 (see
http://live.gnome.org/GnomeGoals/AppIcon for more details)
* nact/nautilus-actions-icon.png:
* nact/nautilus-actions-icon.xcf: Remove old icons
2006-04-10 Frederic Ruaudel <[email protected]>
* po/LINGUAS:
* configure.in: Move the ALL_LINGUAS list into a separated file named
po/LINGUAS to make translators' life easier (see
http://live.gnome.org/GnomeGoals/PoLinguas for more details)
* configure.in: Remove 'eu' (Basque) to ALL_LINGUAS because there is
no corresponding po file (Bug #336215)
2006-03-13 Runa Bhattacharjee <[email protected]>
* configure.in: Added "bn" (Bengali) to ALL_LINGUAS.
2006-03-02 Inaki Larranaga <[email protected]>
* configure.in: Added 'eu' (Basque) to ALL_LINGUAS.
2006-02-08 Frederic Ruaudel <[email protected]> 1.0
* configure.in: Update the version number to 1.0
* nact/nact.c: The action list in the main dialog of Nact is now
alphabetically sorted (Bug #326699)
2006-02-07 Theppitak Karoonboonyanan <[email protected]>
* configure.in: Added 'th' (Thai) to ALL_LINGUAS.
2006-01-31 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* nact/nautilus-actions-config.glade:
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c: Fix bug #327027 (Spelling/grammar fixes)
* config/Makefile.in: (removed)
* config/config_newaction.schemas.in: (removed)
* Makefile.am:
* configure.in: Removed the config file that add the config tool in all contextual
menu because it doesn't make sense since it is not related with the selected files.
* nact/nautilus-actions-config.glade: Remove the possibility to reorder items in
main dialog of Nact (Bug #326699) since it is not possible yet to keep track of this
state.
2006-01-29 Josep Puigdemont i Casamajó <[email protected]>
* configure.in: Added 'ca' to ALL_LINGUAS.
2006-01-27 Chao-Hsiung Liao <[email protected]>
* configure.in: Added "zh_HK" "zh_TW" to ALL_LINGUAS.
2006-01-26 Lukas Novotny <[email protected]>
* configure.in: Added cs to ALL_LINGUAS.
2006-01-22 Raphael Higino <[email protected]>
* configure.in: Added pt_BR to ALL_LINGUAS.
2006-01-08 Frederic Ruaudel <[email protected]>
* nact/nact.c: Fix a bug with the stock icon of the
Edit button in Nact with GTK+2.4 (thanks to wwp for the report).
2006-01-06 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* nact/nautilus-actions-config.glade:
* nact/nact.c: Implement Feature #325524 which allow an action to be
duplicated to facilitate the edition of several quite same config.
* nact/nact-editor.c: Fix a GTK warning about the function
gtk_combo_box_entry_set_text_column() when opening the edit
dialog more than once.
2005-12-28 Yair Hershkovitz <[email protected]>
* configure.in: Added 'he' (Hebrew) to ALL_LINGUAS.
2005-12-26 Ilkka Tuohela <[email protected]>
* configure.in: Added 'fi' (Finnish) to ALL_LINGUAS.
2005-12-24 Takeshi AIHANA <[email protected]>
* configure.in: Added 'ja' (Japanese) to ALL_LINGUAS.
2005-12-20 Frederic Ruaudel <[email protected]>
* configure.in: Added 'vi' to ALL_LINGUAS.
* nact/nautilus-actions-config.glade: Apply the new
notebook layout to fix the problem with 800x600 screen
and fix some strings (Bugzilla bug #324593).
* config/config_newaction.schemas.in.in:
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c:
Fix some typos in strings (Bugzilla bug #324593).
2005-12-19 Ankit Patel <[email protected]>
* configure.in: Added 'gu' to ALL_LINGUAS.
2005-12-16 Lasse Bang Mikkelsen <[email protected]>
* configure.in: Added Danish translation to ALL_LINGUAS.
2005-12-09 Ignacio Casal Quinteiro <[email protected]>
* configure.in: Added 'gl' to ALL_LINGUAS.
2005-12-09 Amanpreet Singh Alam <[email protected]>
* configure.in: Punjabi (pa) Languague is added
2005-12-08 Kjartan Maraas <[email protected]>
* configure.in: Added nb + no to ALL_LINGUAS.
2005-12-06 Žygimantas Beručka <[email protected]>
* configure.in: Added Lithuanian to ALL_LINGUAS.
2005-12-03 Adam Weinberger <[email protected]>
* configure.in: Added en_CA to ALL_LINGUAS.
2005-12-01 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* libnautilus-actions/nautilus-actions-config-xml.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* nact/nact-editor.c:
* nact/nact-prefs.c:
* nact/nact-prefs.h:
* nact/nact-utils.c:
* nact/nact.c:
* nact/nact.h:
* plugin/nautilus-actions-test.c:
* plugin/nautilus-actions-utils.c:
* plugin/nautilus-actions.c:
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c: Patch from Tom Parker that removes
all compilation warnings (Bug #133).
2005-11-26 Funda Wang <[email protected]>
* configure.in: Added Simplified Chinese translation.
2005-11-25 Frederic Ruaudel <[email protected]>
* configure.in: Patch from Tom Parker to add check for presence of libuuid
in the configure script (Bug #132).
2005-11-24 Frederic Ruaudel <[email protected]> 0.99
* plugin/nautilus-actions.c (get_verified_icon_name)
(nautilus_actions_create_menu_item): Fix the test of the icon. Replace
empty icon string by NULL to avoid having an ugly icon instead.
* plugin/nautilus-actions-test.c (nautilus_actions_test_validate):
Fix the test of the '*' pattern that made n-a matches everything when
using multiple pattern syntax.
* config/config_newaction.xml.in:
* config/Makefile.am: Remove the old config file installation
* autogen.sh:
* configure.in:
* config/Makefile.am: Add support for GConf schema installation
* config/config_newaction.schemas.in.in: Set the uuid to a non-random
string so it can be recognizable.
2005-11-23 Frederic Ruaudel <[email protected]>
* Makefile.am:
* configure.in: Add --enable-commandline-tool option to configure
to make nautilus-actions compile on systems with Glib 2.4 like FC3.
Glib 2.4 doesn't implement Commandline parser API.
2005-11-18 Frederic Ruaudel <[email protected]>
* po/POTFILES.in: Add nact-import-export.c
* po/nautilus-actions.pot:
* po/*.po: Update i18n strings.
* nact/Makefile.am:
* nact/nact-utils.h:
* nact/nact.c:
* nact/nact.h:
* nact/nautilus-actions-config.glade:
* nact/nact-import-export.c:
* nact/nact-import-export.h: Implement the import/export
of n-a configurations in nact.
* nact/nact-prefs.c:
* nact/nact-prefs.h: Add preferences for the new import/export
dialog in nact.
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
Fix the bug from the first implementation
* libnautilus-actions/nautilus-actions-config.c: Remove some
debug messages.
2005-11-17 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-schema.c:
* libnautilus-actions/nautilus-actions-config-schema.h:
* libnautilus-actions/nautilus-actions-config-schema-writer.c:
* libnautilus-actions/nautilus-actions-config-schema-writer.h:
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c: Rename NautilusActionsConfigSchema
GObject into NautilusActionsConfigSchemaWriter
* libnautilus-actions/Makefile.am:
* libnautilus-actions/nautilus-actions-config-schema-reader.c:
* libnautilus-actions/nautilus-actions-config-schema-reader.h:
Create a GObject to read config in GConf schema description file
format
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
Add some #define to describe the GConf XML elements
* nact/nautilus-actions-config.glade:
Create the Import/Export dialog layout
2005-11-09 Frederic Ruaudel <[email protected]>
* nact/nact-editor.c (create_stock_icon_model):
(sort_stock_ids): Sort the gtk stock item in the dropdown list
in nact edit dialog.
* plugin/nautilus-actions.c (nautilus_actions_get_background_item):
(nautilus_actions_menu_provider_iface_init):
Apply patch from palfrey to add support for action in the background
of Nautilus's windows (Feature #98). It is applied automatically as if
we would have selected the directory the window represents.
2005-11-08 Frederic Ruaudel <[email protected]>
* nact/nact-editor.c (create_stock_icon_model):
Now only display the stock icon that will be accepted by nautilus
in the dropdown list.
* plugin/nautilus-actions.c (nautilus_actions_create_menu_item):
Work around the problem of the ugly nautilus default icon when the
image file doesn't exists.
2005-11-07 Frederic Ruaudel <[email protected]>
* plugin/nautilus-actions.c (nautilus_actions_get_file_items):
Add error checking if GObject is not of good type.
* libnautilus-actions/nautilus-actions-config-gconf-reader.c
(get_action_uuid_from_key): Fix extraction of uuid from GConf key
* libnautilus-actions/nautilus-actions-config-gconf-reader.c
(actions_changed_cb): Avoid removal of already deleted action
2005-10-31 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h
(nautilus_actions_config_action_set_uuid): Add a function
to set the uuid and conf_section fields of an action.
(nautilus_actions_config_action_new_default): Give the default
version number as default value for the version fields of an action
* libnautilus-actions/nautilus-actions-config-gconf-reader.c
(actions_changed_cb): implement the Gconf notification handler
* plugin/nautilus-actions.c:
* plugin/nautilus-actions.h: Replace the usage of Gconf object
by the usage of the GconfReader object.
* nact/nact-editor.c:
* nact/nact-editor.h:
* nact/nact.c: Replace the usage of the Gconf object by the usage
of the GConfWriter object.
* libnautilus-actions/nautilus-actions-config-gconf-reader.c:
* libnautilus-actions/nautilus-actions-config-gconf-reader.h:
* libnautilus-actions/nautilus-actions-config-gconf-writer.c:
* libnautilus-actions/nautilus-actions-config-gconf-writer.h:
* libnautilus-actions/Makefile.am: Create two new GObject which
are derived from nautilus-actions-config-gconf. The reader
implement the notification stuff and the writer implement
the modification stuff.
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-gconf.h:
Modified to integrate the new derived GObject : GConfReader
and GConfWriter.
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-gconf.h:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
Moved the signals from GConf object to Config object
2005-10-30 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config-gconf.h:
Add the GET_CLASS macro.
* libnautilus-actions/nautilus-actions-config-gconf.c:
(nautilus_actions_config_gconf_class_init): Fix indices in
signals initilization stuff
2005-10-28 Frederic Ruaudel <[email protected]>
* config/config_newaction.schemas.in.in: Update it with the
same GConf key description than those set in the code of the
GConf schema GObject and rename the action "Manage Action" instead
of 'New Action...'
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* libnautilus-actions/nautilus-actions-config-schema.c:
* nact/nact-prefs.c:
* nact/nact-utils.c:
* nact/nact.desktop.in:
* nact/nautilus-actions-config.glade:
* po/POTFILES.in:
* po/bg.po:
* po/de.po:
* po/es.po:
* po/fr.po:
* po/nautilus-actions.pot:
* utils/nautilus-actions-new-config.c: Review all strings for i18n and make
them coherent, use standard term from GNOME Documentation word list
and start to adapt the code to make translators life easier according to
http://developer.gnome.org/doc/tutorials/gnome-i18n/developer.html
* nact/nact-editor.c: Remove a useless test that test if label are
duplicated. Now we have the uuid that make sure of the uniqness of actions
2005-10-27 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c:
* nact/nact-utils.c:
* nact/nact-utils.h: Implement the example string in nact editor dialog
* plugin/nautilus-actions-utils.c (nautilus_actions_utils_parse_parameter):
Fix a problem of duplicate string if no token found in the param string
2005-10-26 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config.c
(nautilus_actions_config_add_action):
Remove a duplicate action_dup.
* utils/nautilus-actions-new-config.c (main):
Use the new action function with default values set to
avoid problem with unset unused values.
* nact/nautilus-actions-config.glade (LegendDialog):
* plugin/nautilus-actions-utils.c (nautilus_actions_utils_parse_parameter):
Remove the %p parameter that was confusing with the %d one.
2005-10-25 Frederic Ruaudel <[email protected]>
* TODO: Add list of important things to do before next release
* libnautilus-actions/nautilus-actions-config.c:
(nautilus_actions_config_add_action) : After call to save_action
add the new action in the hash table.
(nautilus_actions_config_remove_action) : After call to remove_action
remove the action from the hash table.
* nact/nact.c (delete_button_clicked_cb): add call to
fill_actions_list to update the list when removing an action.
2005-10-24 Rodrigo Moya <[email protected]>
* nact/nact.c (fill_actions_list): new function to reload the
actions list.
(add_button_clicked_cb, edit_button_clicked_cb): if there were
changes in the action editor, reload the actions list.
(setup_actions_list): move the actions list fillin to fill_actions_list.
2005-10-23 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade:
* po/bg.po:
* po/de.po:
* po/es.po:
* po/fr.po:
* po/nautilus-actions.pot:
* po/POTFILES.in: Update i18n stuff
* nact/nact-editor.c: Fix init of scheme list when add a
new action and manage basenames pattern load/save in the edit dialog
* libnautilus-actions/nautilus-actions-config.c: Set empty
basename and scheme list valid if empty.
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c: Add a preview icon toward the icon
combobox in nact edit dialog.
* nact/nact-editor.c: Implement Add/Remove/Edit of schemes
in nact list view.
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c: Put back the tooltip in the edit
dialog of nact and add add/remove button to manage scheme list.
* nact/nact-editor.c: Finnish implementing the scheme list
(save in gconf and prefs) and fix some compilation warnings.
2005-10-22 Frederic Ruaudel <[email protected]>
* nact/nautilus-actions-config.glade:
* nact/nact-editor.c: Start implementing the scheme list
in the edit dialog of nact.
* nact/nact-editor.c: Fix the add/edit dialog title in
relation with the task done.
* nact/nact-editor.c:
* nact/nact-utils.h:
* nact/nautilus-actions-config.glade:
* nact/nact.c: Implement the preference API and manage the
filechooser dialog for the selection of the icon and command path.
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* configure.in: Add a global variable to define the GConf
basedir of n-a.
* nact/Makefile.am:
* nact/nact-prefs.c:
* nact/nact-prefs.h: Add GConf managed preferences in nact
* nact/nact.c: Fix the segfault when trying to edit/delete
an existing config.
* nact/nact-editor.c: Fix access to the menu icon entry
when saving the dialog content.
* utils/nautilus-actions-tools-utils.c:
* utils/nautilus-actions-tools-utils.h:
* configure.in:
* utils/Makefile.am:
* utils/nautilus-actions-convert.c:
* utils/nautilus-actions-new-config.c: Fix some
compatibility problem with glib < 2.8. g_file_set_contents() wasn't
recognized.
2005-10-21 Frederic Ruaudel <[email protected]>
* nact/nact.c: Fix the display of the existing config in nact's
main dialog by using uuid instead of label as index.
* libnautilus-actions/nautilus-actions-config-schema.c: Fix
the schema generation by adding the list_type attribute for list
entries.
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h: Add a
function to create a NautilusActionsConfigAction object with
correct default values.
* libnautilus-actions/nautilus-actions-config-gconf-private.h:
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-schema.c:
* libnautilus-actions/nautilus-actions-config-xml.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h:
* nact/nact-editor.c:
* nact/nact.c:
* plugin/nautilus-actions.c:
* utils/nautilus-actions-new-config.c: Finish support for a icon
in the menu item (Feature #28)
* nact/nact-editor.c:
* nact/nact.c: Remove global variables and replace with
the utility functions. Fix some gtk warnings.
* nact/nact-utils.c:
* nact/nact-utils.h:
* nact/Makefile.am: Add some utility function to manage
Glade widgets more easily.
* nact/nact-editor.c:
* nact/nact.c: Refactor the code to take care of the new utilities
functions and of the refactored glade file. Start adding support for
a menu icon.
* nact/nautilus-actions-config.glade: Refactor the glade
file to be more HIG compliant and add missing widgets. Transfers
signals definition into it.
2005-10-20 Frederic Ruaudel <[email protected]>
* libnautilus-actions/nautilus-actions-config.c: Fix a bug
in the freeing of the NautilusActionsConfigAction object and
don't send broken actions in the list returned by
nautilus_actions_config_get_actions()
2005-10-19 Frederic Ruaudel <[email protected]>
* plugin/nautilus-actions-module.c: Add GPL licence header
comment
* utils/Makefile.am:
* utils/nautilus-actions-new-config.c: Create the new config
creation tool in command line mode.
* libnautilus-actions/nautilus-actions-config.c: Fix the copy of
GSList when setting schemes and basenames of an action.
* libnautilus-actions/nautilus-actions-config-gconf-private.h: Fix
the short description of the scheme entry in the Gconf Schemas
2005-10-17 Frederic Ruaudel <[email protected]>
* Makefile.am:
* configure.in:
* utils/Makefile.am:
* utils/nautilus-actions-convert.c: Create a utils folder to put the
utilities program and code the old config conversion tool to convert old
xml file into GConf schemas.
* libnautilus-actions/nautilus-actions-config-xml.c:
* libnautilus-actions/nautilus-actions-config.c:
* libnautilus-actions/nautilus-actions-config.h: Fix several bugs
made during the first implementation
2005-10-13 Frederic Ruaudel <[email protected]>
* libnautilus-actions/Makefile.am: Add new file in the sources files
list
* libnautilus-actions/nautilus-actions-config-gconf.c:
* libnautilus-actions/nautilus-actions-config-gconf-private.h: move
Gconf element information in a common private headers.
* libnautilus-actions/nautilus-actions-config-schema.c:
* libnautilus-actions/nautilus-actions-config-schema.h: Add support
for GConf xml schema export
2005-10-06 Rodrigo Moya <[email protected]>
* nact/Makefile.am: don't link to libuuid here.
* libnautilus-actions/Makefile.am: do it here.
* libnautilus-actions/nautilus-actions-config.c
(nautilus_actions_config_add_action): don't look for NULL uuids, in the
hash table, and generate UUID for actions that don't have it.
2005-10-06 Rodrigo Moya <[email protected]>
* libnautilus-actions/nautilus-actions-config-xml.c
(nautilus_actions_config_xml_get_type):
* libnautilus-actions/nautilus-actions-config-gconf.c
(nautilus_actions_config_gconf_get_type): base the class in
NautilusActionsConfig, not GObject.
2005-10-06 Rodrigo Moya <[email protected]>
* libnautilus-actions/nautilus-actions-config-xml.c (remove_action):
return a boolean, rather than NULL.
(nautilus_actions_config_xml_get_config_files): use const gchar * for
storing the value returned by g_dir_read_name().