-
Notifications
You must be signed in to change notification settings - Fork 13
/
NEWS
1370 lines (1155 loc) · 47.5 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
Starting after version 1.14.0, we provide release notes through the AppData file. As such, app stores (like GNOME Software) can show release notes to users.
Human-readable textual output can easily be generated with the following command:
$ appstream-util appdata-to-news /usr/share/metainfo/org.gnome.gnome-commander.appdata.xml
===================================
gnome-commander 1.14.0
---------------
New features:
* Selectable default action when drag-n-drop files with the mouse
* Optional usage of the trash can instead of permanent file deletion (see issue #2)
* Removed internal file search dialog, instead use external command for file search
* Name of connected remote server is shown in the directory indicator (see issue #71)
* New menu entry for (un)selecting only files
Bug fixes:
* Fixed issue #3 (Mounted devices pluged when Commander is running are not noticed)
* Fixed issue #5 ("Follow Links" option does not work when copying files)
* Fixed issue #13 (Directory size not updated while copying)
* Fixed issue #16 (Start-left-dir doesn't work on '.' (dot directory))
* Fixed issue #19 (FTP connections are not closed correctly)
* Fixed issue #28 (Write permissions are given to all users on an FTP server)
* Fixed issue #33 (Get rid of deprecated gnome-vfs)
* Fixed issue #39 (Copy fail when selecting a "drive")
* Fixed issue #41 (Directory not unreferenced correctly from cache when renamed)
* Fixed issue #45 (Gnome Commander closes when clicking on SMB path \\xxx\dddddd)
* Fixed issue #46 (Automatic refresh of folder content is not correct)
* Fixed issue #47 (Duplicate directory when copying over an existing directory)
* Fixed issue #51 (Move and not copy by default on same filesystem)
* Fixed issue #52 (Auto refresh when changing permissions etc)
* Fixed issue #57 (Remote connections: Gnome Commander misreads file ownership)
* Fixed issue #59 (On ssh connection, to delete a renamed folder/file don't work)
* Fixed issue #74 (Does not show mounted external drives)
* Fixed issue #75 (Newly inserted DVD does not show up)
* Fixed issue #76 (Crash in Gnome Commander when using webDAV SSL)
* Fixed issue #107 (Wrong parsing of command string)
* Fixed issue #115 (No error on autogen when flex is missing)
List of developers:
* Uwe Scholz
* Mamoru Tasaka
* Andrey Sokolov
* Maik Pertermann
* Philipp Kiemle
New or updated translations:
* ca (Jordi Mas)
* cs (Marek Černocký)
* da (Alan Mortensen, Ask Hjorth Larsen)
* de (Tim Sabsch, Wolfgang Stöggl)
* es (Daniel Mustieles, Rodrigo Lledó)
* eu (Asier Sarasua Garmendia)
* fi (Jiri Grönroos)
* hu (Balázs Úr)
* id (Andika Triwidada, Kukuh Syafaat)
* pl (Piotr Drąg)
* pt_BR (Enrico Nicoletto, Matheus Barbosa, Rafael Fontenelle)
* ro (Daniel Șerbănescu)
* ru (Andrey Sokolov, Олеся Герасименко)
* sl (Matej Urbančič)
* sr (Мирослав Николић)
* sv (Anders Jonsson, Luna Jernberg)
* tr (Muhammet Kara)
* uk (Yuri Chornoivan)
* zh_CN (Boyuan Yang)
New or updated docs:
* es (Daniel Mustieles)
* sv (Anders Jonsson)
===================================
gnome-commander 1.12.3.1
---------------
Bug fixes:
* Fixed issue #110 (Make check fails on s390x, Thanks to Mamoru Tasaka)
New or updated translations:
* pl (Piotr Drąg)
* sv (Anders Jonsson)
* uk (Yuri Chornoivan)
New or updated docs:
* sv (Anders Jonsson)
===================================
gnome-commander 1.12.3
---------------
Bug fixes:
* Fixed issue #108 (Crash after right click on file)
* File-roller plugin: Add run error handling (Thanks to Andrey Sokolov)
New or updated translations:
* cs (Marek Černocký)
* de (Wolfgang Stöggl)
* hu (Balázs Úr)
* ru (Andrey Sokolov)
New or updated docs:
* sv (Anders Jonsson)
===================================
gnome-commander 1.12.2
---------------
Bug fixes:
* Fixed issue #104 (Segmentation fault when pressing Ctrl+Right / Ctrl+Left / Ctrl+Shift+.)
New or updated translations:
* es (Daniel Mustieles)
* id (Andika Triwidada
* ro (Daniel Șerbănescu)
New or updated docs:
* sv (Anders Jonsson)
===================================
gnome-commander 1.12.1
---------------
Bug fixes:
* Fixed issue #12 (Ask for the second time when trying to delete non-empty directory)
* Fixed issue #97 ("Execute" not shown in file popup menu for executable files)
* Fixed issue #98 ("Execute" doesn't work on files with space in filename)
* Fixed issue #55 (Theme does not change in all tabs when applied)
* Fixed issue #102 (Compilation error when TagLib is not available)
* Fixed issue #103 (Crash when empty string is given for search)
New or updated translations:
* pl (Piotr Drąg)
* pt_BR (Enrico Nicoletto)
* sr (Мирослав Николић)
* sv (Anders Jonsson)
* uk (Yuri Chornoivan)
New or updated docs:
* sv (Anders Jonsson)
===================================
gnome-commander 1.12.0
---------------
New features:
* Gnome Commander depends on GIO now. Migration away from GnomeVFS is ongoing
* Use GIO instead of Gnome-VFS for opening files with default application
* Use GIO instead of Gnome-VFS for filtering the file list, and on various other parts of the program
Bug fixes:
* Fixed issue #95 (InternalViewer: Scrolling images via mouse, mouse scroll wheel or keyboard arrow keys)
* Fixed issue #96 (Segmentation fault when opening file/directory properties using keyboard)
* Minor memory optimizations
New or updated translations:
* ca (Jordi Mas)
* cs (Marek Černocký)
* da (Ask Hjorth Larsen)
* de (Mario Blättermann, Stephan Woidowski, Tim Sabsch, Wolfgang Stöggl)
* eo (Kristjan SCHMIDT)
* es (Daniel Mustieles)
* eu (Asier Sarasua Garmendia)
* fi (Jiri Grönroos)
* hu (Balázs Meskó, Balázs Úr)
* id (Andika Triwidada, Kukuh Syafaat)
* kk (Baurzhan Muftakhidinov)
* pl (Piotr Drąg)
* pt_BR (Rafael Fontenelle)
* ro (Daniel Șerbănescu)
* sl (Matej Urbančič)
* sr (Мирослав Николић)
* sv (Anders Jonsson)
* tr (Sabri Ünal)
* uk (Yuri Chornoivan)
New or updated docs:
* cs (Marek Černocký)
* de (Mario Blättermann, Stephan Woidowski)
* es (Daniel Mustieles)
* sv (Anders Jonsson)
===================================
gnome-commander 1.10.3
---------------
New features:
* InternalViewer: Show metadata file information by default
* Minor memory management improvements
Bug fixes:
* Fixed issue #29 (Migrate deprecated GnomeFileEntry to GtkFileChooserButton)
* Fixed issue #34 (Get rid of deprecated libgnome and libgnomeui)
* Fixed issue #65 (Search options: 'copy file name' does not work)
* Fixed issue #83 (Switch from nautilus-sendto to xdg-email as default send-to command)
New or updated translations:
* cs (Marek Černocký)
* de (Wolfgang Stöggl)
* es (Daniel Mustieles)
* eu (Asier Sarasua Garmendia)
* id (Andika Triwidada)
* id (Kukuh Syafaat)
* pl (Piotr Drąg)
* pt_BR (Rafael Fontenelle)
* pt_BR (Uwe Scholz)
* sv (Anders Jonsson)
* uk (Yuri Chornoivan)
New or updated docs:
* cs (Marek Černocký)
* es (Daniel Mustieles)
===================================
gnome-commander 1.10.2
---------------
Bug fixes:
* Fix for compilation error with exiv2 0.27.1 (Thanks to Mamoru Tasaka)
New or updated docs:
* es (Daniel Mustieles)
===================================
gnome-commander 1.10.1
---------------
New features:
* Menu entry for (un)selecting files with the same filename suffix
* Search window can be optionally minimized or moved below the main window
Bug fixes:
* List of bookmarks is synchronized between Gnome Commander instances
* Removed gnome-config references, fixing bgo#570733 and issue #27 on GitLab
New or updated translations:
* ar, bg dz, en_CA, en_GB, ga, hr, ne, rw, sq, vi, zh_TW (Elijah Zarezky)
* de (Mario Blättermann)
* es (Daniel Mustieles)
* hu (Balázs Meskó)
* pl (Piotr Drąg)
* pt_BR (Rafael Fontenelle)
New or updated docs:
* de (Mario Blättermann)
* es (Daniel Mustieles
===================================
gnome-commander 1.10.0
---------------
New features:
* Gnome Commander icon and internal viewer icon refreshed
* Gnome Commander settings are now completely migrated to GSettings under the key `org.gnome.gnome-commander`
* Settings in `~/.gnome2/gnome-commander` and in `~/.gnome-commander/*` are migrated automatically
* Script and plugin folder in `~/.gnome-commander` is moved into `~/.config/gnome-commander`
Bug fixes:
* Various warnings at compile time have been fixed
* Several code improvements and memory leaks have been fixed
New or updated translations:
* cs (Marek Cernocky)
* da (Ask Hjorth Larsen)
* de (Mario Blättermann)
* de (Tim Sabsch)
* es (Daniel Mustieles)
* es (Piotr Drąg)
* hu (Balázs Úr)
* id (Kukuh Syafaat)
* pl (Piotr Drąg)
* pt_BR (Isaac F. Ferreira Filho)
* pt_BR (Rafael Fontenelle)
* sr (Мирослав Николић)
* sr@latin (Мирослав Николић)
* sv (Anders Jonsson)
New or updated docs:
* cs (Marek Cernocky)
* de (Mario Blättermann)
* de (Tim Sabsch)
* es (Daniel Mustieles)
* es (Piotr Drąg)
* sv (Anders Jonsson)
===================================
gnome-commander 1.8.1
---------------
New features:
* Store the size of the options dialog when closing itself
* Remove unnecessary border lines from the options dialog tabs (thanks to Elijah)
* Removed python support completely
Bug fixes:
* Fix simple script system for file names with spaces
* Fixed bgo#785505: Problem when compiling GCMD with flex 2.6.4
New or updated translations:
* cs (Marek Cernocky)
* da (Ask Hjorth Larsen)
* de (Mario Blättermann)
* es (Daniel Mustieles)
* hu (Balázs Meskó)
* id (Kukuh Syafaat)
* pl (Piotr Drąg)
* pt_BR (Isaac F. Ferreira Filho)
* sr (Мирослав Николић)
* sr@latin (Мирослав Николић)
* sv (Anders Jonsson)
New or updated docs:
* cs (Marek Cernocky)
* de (Mario Blättermann)
* es (Daniel Mustieles)
===================================
gnome-commander 1.8.0
---------------
New features:
* Quick search can be activated by just typing a letter, adjustable in the options tab
* Option for saving/not saving the command line history on exit
* Option for saving/not saving the search history on exit
* Added a settings option for deciding if the terminal window should stay open when a command finishes
* [build] Don't use gnome-autogen.sh anymore (Many thanks to Philip Withnall and David King)
* [build] Translations are now handled by upstream gettext instead of intltool
* [build] New documentation infrastructure: Use yelp-tools instead of gnome-doc-utils
Other changes:
* Increased minimum GTK version from 2.8.0 to 2.18.0
* Code cleanup (Thanks to Mamoru and Andreas for contributing)
Bug fixes:
* [build] Python is now found at build time, too, when its version is equal to or higher than 3.x
New or updated translations:
* ca (Jordi Mas)
* cs (Marek Černocký)
* de (Mario Blättermann)
* eo (Kristjan Schmidt)
* es (Daniel Mustieles)
* fi (Jiri Grönroos)
* hu (Balázs Úr)
* id (Kukuh Syafaat)
* pl (Piotr Drąg)
* pt_BR (Rafael Fontenelle)
* sl (Matej Urbančič)
* sr (Мирослав Николић)
* sr@latin (Мирослав Николић)
* sv (Anders Jonsson)
New or updated docs:
* cs (Marek Černocký)
* de (Mario Blättermann)
* es (Daniel Mustieles)
===================================
gnome-commander 1.6.4
---------------
Bug fixes:
* Fixed problem bgo#779574 (Other favourite apps settings not saved)
* Fixed problem bgo#619112 (Internal-viewer by default display incorrect code pages)
New or updated translations:
* cs (Marek Černocký)
* de (Mario Blättermann)
* eu (Inaki Larranaga Murgoitio)
* hu (Balázs Úr)
* id (Andika Triwidada)
* pl (Piotr Drąg)
* pt_BR (Rafael Fontenelle)
* sr (Мирослав Николић)
* sr@latin (Мирослав Николић)
* sv (Anders Jonsson)
New or updated docs:
* cs (Marek Černocký)
* de (Mario Blättermann)
* es (Daniel Mustieles)
===================================
gnome-commander 1.6.3
---------------
Bug fixes:
* libunique (sometimes called only 'unique') is now optional via configure option
New or updated translations:
* cs (Marek Černocký)
* es (Daniel Mustieles)
* pl (Piotr Drąg)
* pt_BR (Rafael Fontenelle)
* ru (Stas Solovey)
* sr (Мирослав Николић)
* sr@latin (Мирослав Николић)
New or updated docs:
* cs (Marek Černocký)
* de (Mario Blättermann)
* es (Daniel Mustieles)
===================================
gnome-commander 1.6.2
---------------
Bug fixes:
* Fixed problem bgo#398734 (Color of marked files does not change when using theme colors)
* Device list entry width is set equal to the longest string in the list
* Fixed a bug in advance rename tool when utilizing METATAGS
New features:
* Disk free space label is shown in status bar if device list isn't shown (works after restarting gcmd)
* Shortcut can be assigned for:
- Moving the cursor up or down ("Move cursor one step up/down")
- Viewing bookmarks of current device ("Show bookmarks of current device")
New or updated translations:
* hu (Balázs Meskó)
* de (Mario Blättermann)
* pl (Piotr Drąg)
* sr (Мирослав Николић)
* sr@latin (Мирослав Николић)
New or updated docs:
* cs (Marek Černocký)
===================================
gnome-commander 1.6.1
---------------
Bug fixes:
* Fixed problem bgo#638174 (Selection background color not applied when using custom colors)
* Fixed problem bgo#773063 (Compiles with gcc6 -Werror=format-security, Thanks to Mamoru Tasaka)
New or updated docs:
cs (Marek Černocký)
===================================
gnome-commander 1.6.0
---------------
Bug fixes:
* Fixed problem bgo#671616 (Right-Mouse popup menu is displayed in wrong position, Thanks to Puux)
* Fixed problem bgo#683087 (Crash opening properties window on certain objects, Thanks to Puux)
* Fixed problem bgo#742752 (Made options dialog resizable and added scrollbars)
* Preserve focused file after renamed with AdvRenDialog (Thanks to Martin Mocko)
* Fixed problem bgo#767158 (Shortcuts stop working after changing layout)
* Fixed string escaping for directories with ampersand (see bgo#769309)
* Fixed problem bgo#770062 (Memory leak in GnomeCmdPlainPath, Thanks to Eric)
* Fixed problem bgo#770063 (Memory leak in get_string_pixel_size, Thanks to Eric)
New features:
* Always reopen the tab which was previously closed in the options dialog
* Samba support is now optionally available via configure option
* Configurable command for sending files to a preferred application
* Button 'Edit files' accepts more than one selected file at the same time
* Device buttons and device list entries act as 'home buttons' for that device when it is already active
* Copy directory path to clipboard after right click on dir-indicator (Thanks to Puux)
* Show/hide mainmenu can be set as keyboard shortcut now (Thanks to Puux)
* Simple plug-in system for file context menu (Thanks to Puux)
* Display of application icons in the "Open With" popup menu (Thanks to Puux)
* Write bookmark changes immediately to file, Sync bookmarks between all instances (Thanks to Puux)
* Storage of options is done in the dconf database now instead of a gnome-config file (see bgo#570733)
* Devices and fav-apps are now stored within the GKeyFile format
* File Roller plugin can use patterns of strftime when creating the archive name
* Started usage of google test framework for unit tests
* New colour theme 'Winter'
* Code cleanup
Other changes:
* Removed "Open folder" command in popup menu and user actions
New or updated translations:
bs (Samir Ribic)
ca (Jordi Mas)
cs (Marek Černocký)
de (Mario Blättermann, Wolfgang Stöggl)
es (Daniel Mustieles)
eu (Inaki Larranaga Murgoitio)
fi (Lasse Liehu)
fr (Alexandre Franke)
hu (Balázs Meskó, Balázs Úr)
id (Andika Triwidada)
lt (Zygimantus)
nb (Kjartan Maraas)
oc (Cédric Valmary)
pl (Piotr Drąg)
pt (Pedro Albuquerque)
pt_BR (Rafael Fontenelle)
ro (Jobava)
sk (Dušan Kazik, Tibor Kaputa)
sl (Matej Urbančič)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
sv (Anders Jonsson, Josef Andersson)
tr (Necdet Yücel)
New or updated docs:
cs (Daniel Mustieles, Marek Černocký)
de (Christian Kirbach, Mario Blättermann)
el (Dimitris Spingos, Maria Mavridou)
es (Daniel Mustieles)
===================================
gnome-commander 1.4.9
---------------
Bug fixes:
* Fixed bgo#764306 (Spelling mistake and wrong words in strings, thanks to Anders Jonsson)
* New or updated translations:
cs (Marek Černocký)
de (Mario Blättermann)
es (Daniel Mustieles)
hu (Balázs Meskó)
hu (Balázs Úr)
hu (Gábor Kelemen)
id (Andika Triwidada)
pl (Piotr Drąg)
pt (Tiago Santos)
ro (Jobava)
sk (Dušan Kazik)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
sv (Anders Jonsson)
* New or updated docs:
cs (Marek Černocký)
de (Mario Blättermann)
es (Daniel Mustieles)
===================================
gnome-commander 1.4.8
---------------
Bug fixes:
* Fixed problem bgo#761580 (Support gcc6 -Werror=format-security, thanks to Mamoru Tasaka)
* New or updated translations:
cs (Marek Černocký)
de (Wolfgang Stöggl)
pl (Piotr Drąg)
pt (Pedro Albuquerque)
pt_BR (Gustavo Marques)
oc (Cédric Valmary)
* New or updated docs:
cs (Marek Černocký)
de (Mario Blättermann)
===================================
gnome-commander 1.4.7
---------------
Bug fixes:
* Fixed problem bgo#745454 (Segmentation fault after find files, thanks to Mamoru Tasaka)
* Fixed problem bgo#749869 (Segfault on the second search, thanks to Mamoru Tasaka)
* Fixed problem bgo#734032 (Clicking on .png file looks at wrong MIME type, thanks to Mamoru Tasaka)
* New or updated translations:
oc (Cédric Valmary)
* New or updated docs:
cs (Marek Černocký)
===================================
gnome-commander 1.4.6
---------------
Bug fixes:
* Fixed problem bgo#747771 (appdata.xml file is not being translated, thanks to Dominique Leuenberger)
* Fixed problem bgo#746003 (crash on opening property dialog on ftp-directory with "odd" uid)
* Fixed problem bgo#748869 (crash when searching two times consecutively)
* Fixed problem bgo#653573 (Passwords store in plain text in ./gnome-commander/connections)
* Fixed problem bgo#742752 (Made options dialog resizable and added scrollbars)
* New or updated translations:
el (Maria Mavridou)
pt (Pedro Albuquerque)
bs (Samir Ribic)
* New or updated docs:
cs (Marek Černocký)
el (Maria Mavridou)
===================================
gnome-commander 1.4.5
---------------
Bug fixes:
* Fixed problem bgo#741316 (Appdata missing in POT)
* Fixed problem bgo#742716 (Option --start-right-dir crashes gnome-commander)
* Removed python-2.6 support from gentoo ebuild
* New or updated translations:
hu (Balázs Úr)
id (Andika Triwidada)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
New or updated docs:
cs (Marek Černocký)
===================================
gnome-commander 1.4.4
---------------
Bug fixes:
* Fixed problem bgo#571495 (Migrated from gnome_execute_shell to g_spawn_async)
* Fixed problem bgo#737088 (Support for user's terminal different from gnome-terminal)
New or updated translations:
cs (Marek Černocký)
de (Benjamin Steinwender)
eu (Inaki Larranaga Murgoitio)
fi (Lasse Liehu)
id (Andika Triwidada)
sr (Мирослав Николић) (sr@latin)
sr@latin (Мирослав Николић)
New or updated docs:
cs (Marek Černocký)
es (Daniel Mustieles)
===================================
gnome-commander 1.4.3
---------------
Bug fixes:
* Fixed problem bgo#731557 (Crash when drag 'n drop objects via mouse)
New or updated translations:
cs (Marek Černocký)
de (Benjamin Steinwender)
eu (Inaki Larranaga Murgoitio)
fi (Lasse Liehu)
New or updated docs:
cs (Marek Černocký)
===================================
gnome-commander 1.4.2
---------------
Bug fixes:
* Fixed Gentoo problem #509574 (Switched from python-r1 to python-single-r1 in ebuild)
* Fixed problem bgo#367949 (Corrected async_xfer_callback-results for moving folders)
* Fixed problem bgo#598161 (Selecting text in internal viewer on lines with TANew features:
* Text selection in int. viewer works on lines with TAB characters (Thanks to Jan Vleeshouwers)
New or updated translations:
cs (Marek Černocký)
el (Dimitris Spingos)
sr (Мирослав Николић)
sr@latin (Мирослав Николић)
===================================
gnome-commander 1.4.1
---------------
Bug fixes:
* Fixed problem bgo#641842 (use poppler-glib instead of poppler internal API)
* Fixed problem bgo#726682 (Fix for undefined reference to vtable)
* Support for utf8 encoded creation and modification dates in document metadata
* Moved Search, Quick Search and Enable Filter from Edit to File menu
New or updated translations:
cs (Marek Černocký)
es (Daniel Mustieles)
fr (Alexandre Franke)
id (Andika Triwidada)
pt_BR (Rafael Ferreira)
sl (Matej Urbančič)
New or updated docs:
cs (Marek Černocký)
es (Daniel Mustieles)
===================================
gnome-commander 1.4.0
---------------
Bug fixes:
* Fixed problem bgo#377463 (mkdir dialog loses focus)
* Fixed problem bgo#492479 (file replace prompt must show date and size of files)
* Fixed problem bgo#617140 (GNOME Goal: Use accessor functions instead direct access)
* Fixed problems bgo#632064, bgo#632208, bgo#633107, bgo#633167, bgo#633331, bgo#634972, bgo#637873, bgo#638059 (bugs in gnome-commander-help.master.po)
* Fixed problem bgo#660043 (shortcut ALT+DOWN not documented)
* Fixed problem bgo#660268 (remember directory history between sessions)
* Fixed problem bgo#667080 (delete confirmation defaults to YES/OK)
* Fixed Ubuntu problem #117226 (bookmarks unification)
* Fixed problem with right mouse button selection not being precise
* Fixed problem bgo#696227 (detect and support libgsf >= 1.14.26)
* Fixed problem bgo#684527 (Fixed typos in strings)
* Fixed problem bgo#660063 (define ALT+DOWN binding as user definable: view.dir_history)
* Fixed problem bgo#642178 (lock tabs for prev/next buttons)
New features:
* Support for tabs
* Revamped bookmarks dialog
* Revamped file properties dialog
* One instance mode
* New colour theme: green tiger
* User defined LS_COLORS colours
* Possibility to select/deselect files only
* Support for automatic width counters in advanced file rename
* Enhanced file name matching in quick search
* Open terminal with administrator privileges
* Prompt to confirm drag & drop operations
* Right click popup menu for copying in internal viewer
* --config-dir command line option for customized location of config files
* Several speed improvements including C++ rework and code cleanups
* New python plugin: 'apply_patch'
* Dropped broken MIME type configuration
* Dropped support for cvs plugin
* New key bindings:
CTRL+T Open directory in a new tab (replaces the old Multi-Rename-Tool binding)
CTRL+W Close current tab
CTRL+SHIFT+W Close all tabs
CTRL+TAB Switch to the next tab
CTRL+SHIFT+TAB Switch to the previous tab
SUPER+1 Change left connection
SUPER+2 Change right connection
* New or updated docs:
cs (Marek Černocký)
de (Mario Blättermann, Niklas Mattisson, Piotr Drąg)
es (Daniel Mustieles, Jorge González)
el (Dimitris Spingos)
fr (Alexandre Franke, Bruno Brouard, Claude Paroz)
ru (Aleksej Kabanov, Radik Usupov)
sl (Matej Urbančič)
* New or updated translations:
ca (Gil Forcada)
cs (Marek Černocký, Petr Kovar, Piotr Eljasiak)
da (Ask H. Larsen)
de (Mario Blättermann)
dz (Daniel Mustieles)
en_GB (Piotr Eljasiak)
eo (Kristjan SCHMIDT)
el (Dimitris Spingos)
es (Daniel Mustieles, Jorge González)
eu (Inaki Larranaga Murgoitio, Piotr Eljasiak)
fr (Bruno Brouard, Claude Paroz, Laurent Coudeur)
hu (Balázs Úr, Gabor Kelemen)
id (Andika Triwidada)
it (Alberto Bertoncini, Piotr Eljasiak)
ja (Jiro Matsuzawa, OKANO Takayoshi, Piotr Eljasiak, Takayuki KUSANO)
ko (Sewon Jang)
nb (Kjartan Maraas)
nl (Hannie Dumoleyn, Piotr Eljasiak, Wouter Bolsterlee)
pl (Piotr Eljasiak)
pt_BR (Adorilson Bezerra, Gabriel F. Vilar, Juan Diego Martins da Costa Cruz,
Mateus Zenaide, Michel Recondo, Piotr Eljasiak)
ro (Daniel Șerbănescu, Lucian Grijincu)
ru (Aleksej Kabanov, Dmitriy Kodanev, Radik Usupov, Yuri Kozlov)
sl (Martin Srebotnjak, Matej Urbančič)
sr (Мирослав Николић )
sr@latin (Мирослав Николић)
sv (Daniel Nylander, Piotr Eljasiak)
th (Akom Chotiphantawanon)
uk (Maxim V. Dziumanenko)
zh_CN (Aron Xu, lainme)
TW (RayCherng Yu zh)
===================================
gnome-commander 1.2.8.17
---------------
Bug fixes:
* Fixed problem bgo#721132 (Support build with -Werror=format-security)
* Updated GCMD home page location
* New or updated translations:
es (Daniel Mustieles),
id (Andika Triwidada),
pt_BR (Adorilson Bezerra)
===================================
gnome-commander 1.2.8.16
---------------
Bug fixes:
* Fix for gcc-4.7 compiling problem
* Fix for bgo#705724 (poppler >= 0.24)
* Fix for bgo#676303 (poppler >= 0.20.0)
* New or updated docs:
de (Mario Blättermann), el (Dimitris Spingos), fr (Bruno Brouard)
* New or updated translations:
da (Ask H. Larsen), de (Mario Blättermann, Uwe Scholz),
el (Dimitris Spingos), fr (Bruno Brouard), hu (Balázs Úr),
id (Andika Triwidada), pt_br (Adorilson Bezerra, Juan Diego Martins
da Costa Cruz), ru (Aleksej Kabanov), sl (Martin Srebotnjak),
th (Akom Chotiphantawanon)
===================================
gnome-commander 1.2.8.15
---------------
Bug fixes:
* Fixed problem #65372 (missing links in gcmd-1.2.8 documentation)
* New or updated docs: cs, de, es, fr
* Updated translations: eo, es, sl
===================================
gnome-commander 1.2.8.14
---------------
Bug fixes:
* Fixed problem #621756 (custom port for ftp is not saved)
* Fixed problem #657780 (bugs in nl.po)
===================================
gnome-commander 1.2.8.13
---------------
Bug fixes:
* Fixed problem #646871 (crash on file properties when connected to FTP)
===================================
gnome-commander 1.2.8.12
---------------
Bug fixes:
* Fixed problem #618214 (crash when cancel a search)
* Fixed problem #640387 (yet another fix for deprecated python modules: md5, sha1)
* Fixed problem #649375 (bookmarks not updated for newly added ones)
* Fixed problem with mkdir permissions
===================================
gnome-commander 1.2.8.11
---------------
Bug fixes:
* Fixed problem #639243 (misleading docs for F2 shortcut)
* Fixed problem #640387 (usage of deprecated python modules: md5, sha1)
* Fixed problem with starting GNOME Commander as root
* Fixed problem with Traditional Chinese translation
New features:
* Support for backward/forward mouse buttons
===================================
gnome-commander 1.2.8.10
---------------
Bug fixes:
* Fixed problem #448941 (numeric keypad arrows don't work in the main window)
* Fixed problem #620275 (add menu item to copy full path and file name to clipboard)
* Fixed problem #637501 (advrename: metatag popup menu shows wrong items)
* Fixed problem with toggling path/basename/filename selections in copy/move dialogs
* Fixed problem with searching path for devices
* Updated translations: de
===================================
gnome-commander 1.2.8.9
---------------
Bug fixes:
* Fixed problem #352024 (F10 key doesn't work)
* Fixed problem #631243 (advrename $c(width) regression)
New features:
* Support for shell-style wildcards in quick search
===================================
gnome-commander 1.2.8.8
---------------
Bug fixes:
* Fixed problem #610764 (menu item won't stay checked)
* Fixed problem #626469 (add support for other su-like programs: xdg-su, gnomesu)
* Fixed problem with broken Spanish translation
===================================
gnome-commander 1.2.8.7
---------------
Bug fixes:
* Fixed problem #540438 (no GUI message if meld cannot be executed)
* Fixed problem #616367 ("File not found" dialog after startup)
* Fixed problem #620650 (buffer overflow in load_fav_apps())
* Fixed problem #622456 (do not build plugins as shared library objects)
* Fixed problem with editing options for favourite apps and devices
===================================
gnome-commander 1.2.8.6
---------------
Bug fixes:
* Fixed problems #600292, 612685 (crashes when double-clicking on a bookmark)
* Fixed problem #602795 (file content search)
* Fixed problem #609912 (build error with --as-needed)
* Fixed problem #616891 (build error on RHEL 5.5)
New features:
* New translations: ko
===================================
gnome-commander 1.2.8.5
---------------
Bug fixes:
* Fixed problem #604558 (cursor lost/placed in wrong position)
* Fixed problem #604904 (build error on OpenSolaris)
* Fixed problem #609342 (do not show mtime for '..')
* Fixed problem with editing connections to Windows network
* Fixed problem with nonexistent user actions
===================================
gnome-commander 1.2.8.4
---------------
Bug fixes:
* Fixed problem #602916 (not working menu entry)
* Fixed problem #603301 (crash when cancelling symlink creation by ESC)
* Fixed Ubuntu problem #369818 (incorrect sorting by size in panel)
* Fixed problem with not working keypad enter in copy/move dialog
* Fixed problem with stalled keyboard after ALT+1/2 with hidden device list
===================================
gnome-commander 1.2.8.3
---------------
Bug fixes:
* Fixed problem #541891 (file names with % in advanced file rename tool)
* Fixed problem #581645 (uncomfortable quick search)
* Fixed problem #596768 (build warnings for python)
* Fixed problem #596973 (documentation build error)
* Fixed problem #597144 (missing call to pclose)
* Fixed problem #597233 (validating of doc translations)
* Fixed problem #597890 (wrong arguments passed to meld)
* Fixed problem #598278 (memory leak)
===================================
gnome-commander 1.2.8.2
---------------
Bug fixes:
* Fixed problem #591944 (permissions set to 000 after chmod)
* Fixed problem #595097 (build error for poppler >= 0.11.3)
* Fixed debian problem #438884 (wrong device label when switching panels with CTRL+U)
* Fixed problem with broken file icon after renaming a symbolic link
===================================
gnome-commander 1.2.8.1
---------------
Bug fixes:
* Fixed problem #587325 (crash in a clean chroot environment)
* Fixed problem #589108 (build error on openSUSE)
* Fixed problem #591206 (crash while sysconf() on FreeBSD)
* Fixed problem with $c(16) counter formatting in advanced file rename templates
===================================
gnome-commander 1.2.8
---------------
Bug fixes:
* Fixed problem #375357 (crash when cancelling calculation of dir properties)
* Fixed problem #536446 (file name not focused for in-place renaming)
* Fixed problem #539812 (crash when deleting files: broken it.po)
* Fixed problem #548947 (non-UTF8 locale date problem)
* Fixed problem #548948 (crash when home directory contains non-UTF8 characters)
* Fixed problem #548961 (support for input method when rename or quicksearch)
* Fixed problem #554586 (AC_PROG_CXX macro problem)
* Fixed problem #554598 (GNOME Goal: LINGUAS)
* Fixed problem #556664 (bookmarks can not be saved for mounted devices)
* Fixed problem #556836 (pane scrolling when moving between panes)
* Fixed problem #567404 (crash when INSERT pressed over subdir)
* Fixed problem #567506 (slow startup for systems with many users)
* Fixed problem #570727 (usage of deprecated gnome_url_show)
* Fixed problem #571239 (replacing obsoleted GnomeColorPicker with GtkColorButton)
* Fixed problem #571247 (replacing obsoleted GnomePixmap with GtkImage)
* Fixed problem #571558 (replacing deprecated GNOME_STOCK_* buttons with GTK_STOCK_* counterparts)
* Fixed problem #576174 (case insensitive file name sorting in non en_US.utf8 locale)
* Fixed problem #579633 (accessing administrator privileges with gksudo)
* Fixed problem #583135 (disabled 'Go to' button in search dialog)
* Fixed problem #583711 (crash when pressing ESC in bookmark dialog)
* Fixed problem #584727 (wrong positioning of file popup menu)
* Fixed problem with setting equal pane size in horizontal mode
* Fixed problem with refreshing MIME information after file renaming
New features:
* Support for PDF metatags in advanced file rename templates
* Revamped advanced file rename tool (regex backreferences ('\number'), profiles,
upper/lowercase conversion, blanks trimming and much more)
* Support for metadata tags in internal viewer
* Support for single-click open mode
* Support for row alternate background in colour themes
* New colour theme: cafezinho
* New or updated docs: de, en, es
* New or updated translations: ar, cs, de, es, eu, fr, it, ja, pl, pt_BR, sl, sv
* New key bindings:
CTRL+E Open the history list for the command line
* New internal viewer key bindings:
T Show metadata tags (replaces the old E)
ALT+ENTER Show metadata tags
===================================
gnome-commander 1.2.7
---------------
Bug fixes:
* Fixed problem #522430 (quick search for files starting with uppercase)