forked from jamiepg1/nautilus-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
1495 lines (1121 loc) · 46.9 KB
/
NEWS
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
Version 3.2.4
=============
Release date 2014-08-05
Bug fixes:
- Fix #727525 reported by Anders Jonsson
Various typos and grammar issues
- Fix #730994 reported by Mauricio C Antunes
Be more compliant with XDG specifications
- Fix #730382 reported by Mauricio C Antunes
nautilus-actions-new: add an option for actions working
directories
Other modifications:
- Move maintainer dedicated tools to new maintainer/ subdirectory
New and updated translations:
- el (Piotr Drąg, Dimitris Spingos)
- es (Daniel Mustieles)
- lt (Aurimas Černius)
- pt (Rafael Ferreira)
- ro (Daniel Șerbănescu)
- ru (Yuri Myasoedov)
- sr (Мирослав Николић)
- sv (Josef northa)
Version 3.2.3
=============
Release date 2013-09-23
Bug fixes:
- Fix #667429 reported by Daniel Mustieles
Are this strings translatable? (nact-doc)
- Fix #671987 reported by Jacek Kominek
Cannot manipulate actions through NACT
- Fix #672269 reported by Robert Waters
Add check for xml2po (gnome-doc-utils) in configure
- Fix #679122 reported by Kamil
Desktop is "/" on Ubuntu precise 12.04
- Fix #679329 reported by Jacek Kominek
Output redirection
- Fix #690783 reported by entropy
"Display item in selection context menu" is not working
- Fix #697182 reported by cellstorm at operamail dot com
Cannot create an action from the interface
- Fix stable attribute computing when releasing
- Fix menu use in the file manager context menu
(reported by Christopher Compagnon)
- Fix na_io_provider_get_io_providers_list() so that write
order is better respected
- Fix a broken tag in French help translation (by Piotr Drąg)
- Manuallly indicated figures, languages and doc files in Makefile
(by Daniel Mustieles)
UI enhancements:
- Fix tooltip typo
- Try to target ideal size and position the first time we open
the main window
Other modifications:
- Improve debug messages
- Obsoletes g_type_init() starting with GLib 2.36
- Obsoletes GDK threads starting with Gtk+ 3.6
- Obsoletes GtkTable starting with Gtk+ 3.4
- Obsoletes GtkHandleBox starting with Gtk+ 3.4, replacing
moveable toolbars with fixed ones
- Do not try to create a Nautilus-Actions root menu if it will
be empty
- Only allow the 'About Nautilus-Actions...' item inside of the
root Nautilus-Actions menu
New and updated translations:
- ca (Gil Forcada)
- cs (Marek Černocký)
- da (Joe Hansen, Kenneth Nielsen)
- de (Christian Kirbach, Daniel Winzen)
- el (Dimitris Spingos)
- es (Daniel Mustieles, Nicolás Satragno)
- fr (Bruno Brouard)
- pt_BR (Rafael Ferreira)
- sl (Matej Urbančič)
- sr (Мирослав Николић)
Version 3.2.2
=============
Release date 2012-03-04
Bug fixes:
- Fix #671043 reported by Vincent Untz - Invalid desktop file.
- Fix #671044 reported by Vincent Untz - Incorrect FSF address.
- Fix #671083 reported by Pierre Wieser - Release tool takes bad package version.
- Fix wrong display in tabs vs. the current selection in tree view.
UI enhancements:
- let the example label be expandable.
Other modifications:
- Bump FDL to 1.3 among all documentation.
- Validate desktop file when making distcheck.
New and updated translations:
- es (Daniel Mustieles)
- fr (Bruno Brouard)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 3.2.0
=============
Release date 2012-02-28
Bug fixes:
- Make labels wrappable in import/export assistants
- Fix vertical expand in Preferences dialog
- Fix the build of the Reference Manual
- Destroy the assistants toplevels when quitting
- Force GConf I/O provider to be read-only after the migration
- Release the object whose importation has been cancelled
- Fix return value of NactApplication::appli_create_windows()
- Fix micro leak in nact_clipboard_dnd_drag_end()
- Partially fix #667429 reported by Daniel Mustieles
Are this strings translatable? (nact-doc)
- Fix #668181 reported by Vincent Untz
User documentation and gtk-doc documentation not installed by default
- Fix #670434 reported by Vincent Untz
Should check for ice pkgconfig in configure
- Partially fix #622909 reported by André Klapper
Migrate from dbus-glib to glib's GDBus
- Fix na_factory_object_copy(), not trying to copy null data
- Fix main window destroy process
- Fix NATokens::execute_action_command() parsing working dir for parameters
- Fix src/plugin-menu/nautilus-actions.c only expanding candidate items
- Fix NadpReader, resetting the writability status if import source is read-only
- Fix NAImporterAsk, resetting dialog pointer when parent exits
- NactMenubar: no more keep a recursive ref on the selection
- NABoxed::string_list_from_void(): keep string lists in the same order
- Check if action is writable when deleting a profile
- Enable basenames, capabilities, folders, mimetypes and schemes tabs
if a context is available
API modifications:
- Bump NAIExporter interface to version 2
- Bump NAIImporter interface to version 2
Other modifications:
- Bump minimal required Gtk+ version to 2.20 (Ubuntu 10 LTS)
- Review the description of the export formats
- Let import/export assistants pages be scrollable
- Let the export format be selected in a treeview
- Let the import mode be selected in a treeview
- Review NactApplication startup
- Bump copyright year in all source files
- src/utils/na-gconf2key.sh.in: defines new '--admin' option
- Requires gtk-doc 1.16 to build Reference Manual
- base_window_init() now holds all the build process
- Set "Relying on runtime detection" as default in "Runtime execution" tab
- Get rid of GQuark as internal identifier of export format
- NactMatchList connects to base signals (and acts as a pseudo-interface)
- na_desktop_environment_detect_running_desktop(): detect XFCE desktop
- Let the notebook tabs position be modified by the user
- NactTreeView: open the context menu with keybindings
New interfaces:
- NAIOptions, NAIOptionsList
- BaseIUnique, BaseISession
- Tracker DBus interface is renamed as org.nautilus_actions.DBus.Tracker.Properties1
New functions:
- na_core_utils_dir_list_perms(), na_core_utils_file_is_loadable()
- na_export_format_get_pixbuf()
- na_importer_import_from_list() renamed as na_importer_import_from_uris()
- na_gtk_utils_search_for_child_widget() renamed as na_gtk_utils_find_widget_by_name()
- nact_export_format_get_ask_option() renamed as na_exporter_get_ask_option()
- na_exporter_get_export_format()
- nact_tree_ieditable_set_items()
- na_desktop_environment_get_label()
- base_gtk_utils_table_to_grid()
New and updated translations:
- cz (Marek Černocký)
- de (Mario Blättermann, Christian Kirbach)
- es (Daniel Mustieles, Nicolás Satragno)
- fr (Bruno Brouard)
- ja (Jiro Matsuzawa)
- nb (Kjartan Maraas)
- sl (Matej Urbančič)
Version 3.1.5
=============
Release date 2011-12-09
Bug fixes:
- Fix test against nautilus_menu_provider_get_toolbar_items()
- Fix #660399 part reported by Gabor Karsay
'Regarding' is replaced by 'regardless'
- Fix #660399 part reported by Christian Kirbach
NACT user's manual fixes
- Fix #661498 reported by Christian Kirbach
[doc] couple of spelling and grammar fixes
- NactAssistantImport: adapt to the new way gtk+3 builds the assistant
- NactAssistantExport: adapt to the new way gtk+3 builds the assistant
- NadpReader and NAXMLReader now return all messages to the caller
- NactExportAskUser: do not export if the operation is cancelled by the user
- NAXMLReader: only search for identifier in <applyto> schema key
- NAObjectItem: do not let an item with an empty label go to the UI
- NAImporterAsk: fix z-order
- Reference Manual: fix Makefile when builddir not equal to srcdir
- check-headers.sh: fix Makefile when builddir not equal to srcdir
- Manuals: fix the test for building even for not-default values
- Work-around against #664768 reported by Pierre Wieser
pdflatex cannot generate some localized pdf
- GtkDialogs: remove (deprecated since 2.22) 'has_separator' property
- Fix coredump when trying to import an empty file by DnD
- Fix permissions when creating the configuration directory
- NAIContext: fix scheme test
- NAIContextFactory: fix mimetype and scheme default values
- NadpReader, NAXMLReader: make sure an action has at least one profile
- NAXMLWriter: output lists in GConf format
- Fix item deletion when not yet written to a backend
Other modifications:
- Remove set but unsused variables
- Get ride of deprecated GtkHBox and GtkVBox
- Add new function base_window_dump_children()
- Be able to run autogen.sh from another directory
- Bump copyright year in Reference Manual
- No more requires gtk-doc to build the distribution
- No more try to rebuild manuals when making distcheck
- gtk-doc and gnome-doc-utils are no more mandatory when building
from the distributed sources
- Explicitely disable scrollkeeper when making distcheck
- Defaults now to build in _build and to install in _install
(much more convenient when testing in several distributions)
- Only reference minor version in 'Since:' and 'Deprecated' comments
- XML reader: get ride of error message if the imported file is not an XML one
- NactAssistantExport: let the format selection be scrolled
- Try to limit window size to usable screen
- NadpDesktopFile: minimize warnings on import
- NactAssistantExport: remove useless 'name' entry field
- Use gtk_misc functions instead of direct xpad, xalign properties
- NAImporterAsk: now cancel on Esc key
- NadpReader, NAXMLReader: do not try to import not loadable files
- NadpReader, NAXMLReader: return a synthetic message if cannot handle the uri
- NAImporterAsk: keep window size and position between invocations
- na_core_utils_dir_list_perms(): new function
- Change import default mode and export default format to 'Ask'
- nact_match_list_insert_new_row: now defaults to 'match'
New and updated translations:
- cs (Marek Černocký)
- de (Mario Blättermann, Christian Kirbach)
- es (María Majadas, Daniel Mustieles, Juan Matías Olmos)
- sl (Matej Urbančič)
- zh_CN (YunQiang Su, Yinghua Wang)
Version 3.1.4
=============
Release date 2011-07-03
Bug fixes:
- Fix #649796 reported by Pierre Wieser
Migration tool doesn't automatically run
- Fix #650523 reported by Stefano Cerutti
Remote filenames are no more reachables
- Fix #651911 reported by Gaston Dassieu-Blanchet
3.1.2 treats "isdir" differently than 2.30.2
- Fix #652664 reported by Christian Kirbach
[doc] couple of spelling and improvement suggestions
Other modifications:
- tools/release-tarball.sh: Updated for new Gnome ftpadmin script
- do not try to import a null or empty list of items
- keep GConf readable even after migration to Desktop
New and updated translations:
- es (María Majadas, Daniel Mustieles)
Version 3.1.3
=============
Release date 2011-05-20
Bug fixes:
- Fix #649726 reported by Kyle Amadio
Nautilus-Actions Configuration Tool - cannot edit items
- Fix #649796 reported by Stefano Cerutti
Migration tool doesn't automatically run
- Fix #650523 reported by Stefano Cerutti
Remote filenames are no more reachables
Other modifications:
- Do not build test programs in release mode
- Add a dependency on /bin/ksh for the migration and the
release scripts
New and updated translations:
- de (Christian Kirbach)
- es (Jesse Avilés, Javier Mazorra, Daniel Mustieles)
- fr (Bruno Brouard)
- it (Claudio Arseni, Luca Ferretti)
Version 3.1.2
=============
Release date 2011-03-11
Bug fixes:
- Work-around for #644289 reported by [email protected]
mplayer started via action freezes up afer short time.
- Fix DisplayOutput execution mode.
New and updated translations:
- cs (Marek Černocký)
- de (Mario Blättermann)
- es (Jorge González, Sylvia Sánchez)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 3.1.1
=============
Release date 2011-02-26
Bug fixes:
- Fix #643359 reported by Götz Waschk
nautilus fails to start caused by undefined symbol.
New and updated translations:
- es (Jorge González)
Version 3.1.0
=============
Release date 2011-02-25
General modifications:
- Migrate menus, actions (resp. user preferences) from GConf to .desktop
files (resp. keyed files). Please read README-GCNF.
- nautilus-actions-schemas in renamed as na-print-schemas and installed
in PKGLIBEXECDIR.
- Two new executables na-delete-xmltree and na-gconf2keys.sh are also
installed in PKGLIBEXECDIR.
- New user preferences are installed respectively as
SYSCONFDIR/xdg/nautilus-actions/nautilus-actions.conf and
~/.config/nautilus-actions/nautilus-actions.conf.
- Implement a new icon chooser, which lets the user select a themed
icon or an icon by path.
- Preferences dialog is now reopened on the last used tab.
- Define a new NATimeout public structure.
- Add --enable-gconf configure option, defaulting to "auto".
- Add --enable-deprecated configure option, defaulting to "no".
- nautilus-actions-new now implements all available properties.
- Currently running desktop environment is not detected at runtime
when not specified as a user preference.
- Plugin menu can now be debugged from a user preference.
- Implements ExecutionMode (in a terminal, display output).
- Disable not yet implemented fields in NACT.
Internal modifications:
- Lot of code rewriting:
. define all GConf writing functions as deprecated;
. NactIActionsList interface is moved to NactTreeView class plus
NactTreeIEditable interface;
. user preferences are managed via a NASettings singleton;
. BaseApplication and BaseWindow;
. NactMenubar: new convenience class;
. fully deprecate NAIPivotConsumer interface;
. NactSortButtons: new convenience class;
. NADataBoxed now derives from new NABoxed class;
. modification stack;
. validity stack;
. writability stack;
Bug fixes:
- Fix various mistakes and mispellings reported by Fr translation team.
- Fix #640216: string errors reported by Christian Kirbach.
- Fix #640920: string errors reported by Christian Kirbach.
- Fix case insensitive comparison reported by Johan Spee.
- No more try to convert all/allfiles to something else.
New and updated translations:
- cs (Marek Cernocky)
- de (Mario Blättermann, Christian Kirbach)
- es (Jorge González)
- fr (Bruno Brouard)
- nb (Kjartan Maraas)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 3.0.7
=============
Release date 2011-01-19
General modifications:
- Configuration now enables silent rules by default.
- Add a new 'check-headers.sh' pre-release tool to check for the
completeness of header files.
- Add a new 'run-distcheck.sh' tool to make distcheck easier.
Bug fixes:
- Fix various mistakes and mispellings reported by Fr translation team.
- Use gettext() to display localized static strings.
- Initialize translation domain for GOptionContext.
- Fix localizable strings.
- Remove deprecated references to the UUID.
- Setup parent window when displaying a dialog box.
New and updated translations:
- cs (Marek Cernocky, Andre Klapper, Petr Kovar)
- es (Daniel Mustieles)
- fr (Gérard Baylard, Bruno Brouard, Nicolas Repentin)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 3.0.6
=============
Release date 2011-01-07
General modifications:
- Use GTK_CHECK_VERSION() macro when appropriate.
- Better specify that --enable-html-manuals (resp. pdf) are for user's
manuals.
- Add ChangeLog-2010 to the distribution.
Bug fixes:
- Re-Fix #638278 - Properly quotes filenames
(reported by Johan Spee).
- Only quote parts of filenames which are to be submitted to a shell,
not those who are to be displayed.
- Fix #638548 - Spelling and syntax mistakes in UI strings
(reported by Christian Kirbach).
- The About dialog is now centered relatively to the main window.
- The 'working directory' parameter is now honored when running an
action.
New and updated translations:
- sl (Matej Urbančič, Andrej Žnidaršič)
- sv (Daniel Nylander)
Version 3.0.5
=============
Release date 2011-01-01
General modifications:
- Nautilus-Actions is set as the "official" name of the application.
Modifications in Nautilus-Actions Configuration Tool:
- Button arrows in I/O Providers Preferences tab are reset so that
the Up button has an upward arrow, and the Down button has a
downward arrow.
- Browse buttons now use the 'gtk-find' stock icon instead of the
inappropriate 'gtk-find-and-replace'.
- Update the NACT User's Manual to reflect last changes.
Bug fixes:
- Fix pathname breakdown for 'x-nautilus-desktop:///' URI.
Fix #638450 - Nautilus crashes when opening Trash or Network
reported by György Balló and Ionut Biru.
- Fix #638461 - Stock icons are no more displayed in NACT.
Version 3.0.4
=============
Release date 2010-12-30
Modifications:
Nautilus-Actions Configuration Tool
- Change window title as 'label - application'.
- Review user interface tooltips.
- Add --enable-as-needed configure option to be able to mimic Gentoo
configuration (cf. #637797).
Bug fixes:
- Improve writing of locale strings in .desktop files for languages
other than 'en'.
- Fix reference doc generation for gtk-doc >= 1.15.
- No more write the encoding part of the locale in the .desktop
file.
- Convert 'all/allfiles' mimetype to 'all/all' + 'file' scheme.
- Allow duplication of items based on .desktop files.
- Apply Mathias Clasen patch to EggSMClient to build against Gtk+
2.91.7.
- Fix #638278 - Properly quotes filenames
(reported by Johan Spee).
- Fix #638272 - Keep the same order than Nautilus
(reported by Johan Spee).
- Get ride of 'relocation R_X86_64_32 against .rodata.str1.8'
message (Fedora 14 - 64bits).
- Fix #637797 - Build core and plugin libraries against their
dependancies
(reported by [email protected] and Ionut Biru).
- Fix #634056 - Create 'hidden' actions
(reported by Andreas Heinlein).
New and updated translations:
- cs (Marek Černocký, Andre Klapper, Petr Kovar)
- es (Jorge González)
Version 3.0.3
=============
Release date 2010-12-20
Modifications:
- Add --enable-silent-rules option to configure;
this is disabled by default;
enabled when building the distributed tarball.
- Add --with-gtk=[2|3|auto] option to configure.
- NACT User's Manual: review 'Note' vs. 'Tip' usage.
- Generate the API Reference Manual.
Bug fixes:
- Improve save process when an error is detected on a deleted
item.
New and updated translations:
- de (Mario Blättermann)
- es (Jorge González)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 3.0.2
=============
Release date 2010-12-03
Modifications:
- Add %o/%O no-op parameters in order to be able to force the
multiple execution (cf. DES-EMA specification v 0.15).
- Running with NAUTILUS_ACTIONS_DEBUG environment variable set
display debug messages.
- The default I/O provider may be chosen at configure time,
and defaults to 'na-desktop'.
- Display a summary of configuration options at configure time.
- Add a preview when selecting an icon.
Bug fixes:
- Fix #616532 - Can't select directory in the Nautilus-Actions export
assistant while browsing it with a GtkFileChooserWidget
(reported by Sense Hofstede).
- Fix #632992 - Add comment about default value translation
(reported by claude Paroz).
- Fix #633439 - Make menu items, ttoltips etc. translatable
(reported by Andreas Heinlein).
- Fix #634056 - Create 'hidden' actions
(reported by Andreas Heinlein).
- Fix #635521 - Translatable sentences of the *.ui files don't appear
in .po file (reported by [email protected])
- Include non translated figures in translated HTML and PDF manuals
(no not distribute them).
- Include and distribute admon-* icons in HTML manuals.
- Fix the display of icons in Nautilus toolbar when the same action
is also displayed in location or selection context menu.
- Do not allow actions list to be fully shrinked.
New and updated translations:
- ca (Carles Ferrando, Gil Forcada)
- es (Jorge González)
- eu (dooteo, Inaki Larranaga Murgoitio)
- he (Yaron Shahrabani)
- pt_BR (Djavan Fagundes)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 3.0
===========
Release date 2010-09-24
Modifications:
- --enable-html-manuals and --enable-pdf-manuals configure options
have been updated to accept the conversion programme as an argument;
--with-db2html and --with-gdt configuration options have so been
removed.
Bug fixes:
- Fix HTML and PDF user's manuals build and distribution.
- Fix a warning when overriding GTKDOC_RUN.
New and updated translations:
- cs (Marek Cernocky, Petr Kovar)
- de (Mario Blättermann)
- es (Jorge González)
- sl (Matej Urbančič, Andrej Žnidaršič)
- zh_CN (Aron Xu)
Version 2.99.5
==============
Release date 2010-08-23
Bug fix:
- Do not try to build a Nautilus menu when there is no info available.
Version 2.99.4
==============
Release date 2010-08-23
Enhancements:
- Replace GtkLabel vith GtkTextView in import and export assistants
summary.
- Converts pre-v2 '%d/%f' to v3 '%f'.
- Improve robustness of tokens parsing.
Bug fixes:
- Fix PDF manual build and distribution.
- Accepts null or empty input string or output pointers.
- Fix default int value when reading null string.
- Do not warn about malformed .desktop file when importing an URI.
- Path+parameters are splitted whatever be the I/O importer.
- Fix typos in sample actions.
- Fix mimetypes and folders selection.
- Fix basename check when matchcase is false.
- Address each occurrence of selected instead of just the first one.
- Take care of possibly NULL values when run from the command-line
(reported by Юрий Пухальский)
- Do not overexpand the example label.
New and updated translations:
- es (Bryan Alberto Baron Chinchilla, Jorge González)
- sl (Matej Urbančič, Andrej Žnidaršič)
Version 2.99.3
==============
Release date 2010-08-16
Bug fixes:
- Fix #627021 reported by Götz Waschk
(uninitialized variable in na-icontext.c)
- Fix manuals cleanup in Makefile
Version 2.99.2
==============
Release date 2010-08-15
Enhancements:
- Implement gtk-doc.
- Distribution now includes
. API and NACT documentation.
. some example of actions.
Bug fixes:
- Converts v2 %f parameter to v3 %b.
- Fix Makefile.am's to make distcheck.
- Fix writing of locales to .desktop files.
- No more consider profile name as mandatory.
- Allow the writing of empty data.
- Let the UI immediately reacts when the status of an I/O provider changes.
- Data for a read-only item is no more modifiable.
- Fix XML import of localized vs. unlocalized old data.
- Fix 'parent is not an action' error on XML import.
- Fix sensitivy of startup fields vs. execution mode.
- Fix incorrect handling of list conditions.
- Fix incorrect setting of icon path in GConf.
- Fix regression when displaying a path-based icon.
New and updated translations:
- de (Mario Blättermann)
- sl (Matej Urbančič, Andrej Žnidaršič)
- sv (Daniel Nylander)
Version 2.99.1
==============
Release date 2010-08-07
Enhancements:
- NACT now implements an auto-save feature.
- Display sort indicator in condition lists.
- Some sort of user's manual is connected to NACT help.
Other modifications:
- Help shortcut is now F1 (no more Ctrl+H).
Bug fixes:
- Implement multiple execution.
- Implement all filter conditions.
- Fix a crash when defining a positive assertion.
- Fix wrong insertion of an action or a menu inside an action.
- Fix capabilities frame title consistency.
- Fix bad reinitialization of the icon item.
New parameters:
- %m: (first) mimetype.
- %M: space-separated list of mimetypes.
New and updated translations:
de (Mario Blättermann)
es (Jorge González)
sl (Andrej Žnidaršič, Matej Urbančič)
Note that this version may not be fully fonctionnal. In particular,
Nautilus menu plugin may not yet honor all new conditions.
Note also that due to the renaming of some parameters, actions or menus
created / updated with this version may not be compatible with previous,
older, ones.
Version 2.99.0
==============
Release date 2010-07-29
Major enhancements:
- Implement the .desktop file specifications as described at
http://www.nautilus-actions.org/?q=node/377 ; this new storage
format is shareable with most common willing-to desktop
environments (KDE, XFCE, etc.)
- Implement new properties, both in GConf and .desktop files:
. a description of the item
. a suggested shortcut for both action and menu
. profile may specify an execution mode
. command may specify the user which should run it
. the 'accept-multiple-files' flag is replaced with a count selector
- Conditions apply now both to actions, profiles and menus. They have
been extended to include:
. choose/refuse a particular target environment
. specify a pre-requirement
. only appears if a DBus service is registered
. only appears if an external command displays "true"
. only appears if a process is running
- Most of list may have negated assertions : mimetypes, folders,
schemes, basenames, capabilities.
New parameters:
- %b: (first) basename
- %B: space-separated list of basenames (was %m)
- %c: count of selected items
- %D: space-separated list of base directory of each selected items
- %F: space-separated list of selected file names (was %M)
- %h: hostname of the (first) URI
- %n: username of the (first) URI (was %U)
- %U: space-separated list of selected URIs
- %w: (first) basename without the extension
- %W: space-separated list of basenames without their extension
- %x: (first) extension
- %X: space-separated list of extensions
Renamed parameters (%m, %M and %U) are dynamically taken into
account when Nautilus-Actions loads the action. They are
automatically updated at write/export time.
UI modifications:
- Each type of conditions has now its own tab
Bug fixes:
- Fix #325523 reported by GrumZ
(Add the possibility to define a fixed number of file selected)
- Fix #325590 reported by Frederic Ruaudel
(Removable storage context menus)
- Fix #330610 reported by Olive
(Permissions as conditions)
- Fix #339533 reported by Frederic Ruaudel
(Possibility to run the command provided for each selected files)
- Fix #339534 reported by Frederic Ruaudel
(Possibility to have the list of files without their extensions)
- Fix #566383 reported by Nathan Middleton
("Appears if selection contains" options expanded)
- Fix #607820 reported by D.
(A case for using gvfs-info attributes matching)
- Fix #616477 reported by Thomas Oster
(Add possibility to filter by folder content)
- Fix #621410 reported by Bruno Guerreiro
(Nautilus-Actions doesn't respect folders)
New and updated translations:
de (Mario Blättermann, Christian Kirbach)
es (Jorge González)
he (Yaron Shahrabani)
lt (Gintautas Miliauskas)
sl (Andrej Žnidaršič, Matej Urbančič)
Note that this version may not be fully fonctionnal. In particular,
Nautilus menu plugin may not yet honor all new conditions.
Note also that due to the renaming of some parameters, actions or menus
created / updated with this version may not be compatible with previous,
older, ones.
Version 2.30.3
==============
Release date 2010-06-10
Bug fixes:
- Fix #617058 reported by [email protected]
(Do not add extraneous blanks when parsing parameters)
- Fix #618110 reported by Claude Paroz
( Factorize strings for translators)
- Fix bug reported by Dr Amr Osman
(Do not add extraneous blanks when parsing parameters)
Other modifications:
- Do not reload already loaded profiles.
- Reset action to last version number after conversion from pre-v2.
New and updated translations:
cs (Petr Kovar)
de (Mario Blättermann)
es (Jorge González)
fr (Claude Paroz)
gl (Fran Diéguez)
pt_BR (Daniel S. Koda, Rodrigo Flores)
sl (Andrej Žnidaršič, Matej Urbančič)
Version 2.30.2
==============
Release date 2010-04-14
Bug fixes:
- Fix #615646 reported by Deji Akingunola
(Nautilus crashes when trash icon is right-clicked)
- Fix #615807 reported by [email protected]
(Crash in Open Folder)
- Fix GLib assertions when parsing parameters, using null values
- Duplicate the profile attached to the Nautilus menu item, rather than
adding a new reference; then do not try to unref its parent
- Increment the reference count of the returned GFile location, so that
it may be safely unreffed when parsing profile parameters
- Fix incorrect plugins log domains
Other modifications:
- Implement more of the future .desktop files.
- Refactor NAIContextual class as NAIContext.
- DBus interface na_tracker_dbus_get_selected_paths() now brings up
both the URI and the Nautilus mimetype of selected items to the caller.
New and updated translations:
es (Jorge González)
lt (Gintautas Miliauskas)
Version 2.30.1
==============
Release date 2010-04-09
Enhancements:
- Slightly relax the validity rules of a profile, so that already
existing actions may be still considered as valid, even when
commands do not use an absolute path.
- Current position and folder of icons chooser dialog are now saved.
Bug fixes:
- Fix #614595 reported by Sense Hofstede
(Not all icons displayed in the nautilus-actions-config-tool)
- Fix #614596 reported by Sense Hofstede
(Nautilus-Actions' actions don't show up in context menus)
- Do not prevent the export assistant to actually export items
- Do not let a user untoggle a sort button
- Do not mark the main window modified when first loading an empty set
- Folders are definitively a list of paths
- Also load items which are only described via their schemas
- Only set defaults on non yet allocated data
- Parent is not always an action, may be a menu
- Also delete embedded schema names from GConf entries
- Monitors GConf schemas
Code enhancement:
- No more use GTK_WIDGET_IS_SENSITIVE macro after Gtk 2.20
Other modifications:
- Menu plugin is renamed as libnautilus-actions-menu.so
New and updated translations:
cs (Marek Černocký, Andre Klapper)
es (Jorge González)
sl (Andrej Žnidaršič, Matej Urbančič)
Version 2.30.0
==============
Release date 2010-03-26
Enhancements:
- Immplement full NautilusMenuProvider interface.
- Allow the user to define a full hierarchy of menus and actions.
- Implement full drag and drop.
- Implement full cut/copy/paste clipboard support.
- Allow an administrator to lock all the configuration.
- Fully manage readonly items.
Bug fixes:
- Fix #614382 reported by Wolter Hellmund
(Nautilus-Actions won't open)
New and updated translations:
cs (Marek Černocký, Petr Kovar, Andre Klapper)
de (Mario Blättermann, Christian Kirbach)
es (Jorge González, Ricardo Varas)
eu (Inaki Larranaga Murgoitio)
fr (Claude Paroz)
nb (Kjartan Maraas)
sl (Andrej Žnidaršič, Matej Urbančič)
Version 2.29.4
==============
Release date 2010-01-23
Enhancements:
- Allow default schemes to be parameterized in the NACT user