forked from GNOME/gnome-commander
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-20090629
5387 lines (3939 loc) · 147 KB
/
ChangeLog-20090629
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
=== ChangeLog discontinued ===
With the move to git, GNOME Commander is switching from a ChangeLog file
to relying on commit messages to provide change history. Please
see README.commits for guidance on the expected message format.
##############################################################################
# 1.2.8 #
##############################################################################
2009-06-28 Dmitriy Lyfar <[email protected]>
* src/main.cc:
Fix for memory leaks
2009-06-21 Dmitriy Lyfar <[email protected]>
* src/gnome-cmd-file-props-dialog.cc:
Fixed problem #375357 (crash when cancelling calculation of dir properties)
2009-06-15 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-profile-component.cc:
advrename profiles: ref template_entry to keep it alive longer
* src/dialogs/gnome-cmd-manage-profile-dialog.cc:
advrename profiles: added support for profile editing
2009-06-14 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-options-dialog.cc:
Killed dead code
2009-06-11 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-xml-config.cc:
XML config: escape text properly
2009-06-09 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
Fixed problem #556836 (pane scrolling when moving between panes)
2009-06-05 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-search-dialog.cc:
Replaced deprecated gtk_timeout_remove() with g_source_remove()
2009-06-04 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
Fixed problem #584727 (wrong positioning of file popup menu)
2009-06-01 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-xml-config.cc:
XML config: rename <TemplateHistory> -> <History>
2009-05-29 Piotr Eljasiak <[email protected]>
* src/eggcellrendererkeys.cc:
Use gtk_widget_error_bell() for GTK+ >= 2.12
* src/gnome-cmd-search-dialog.cc:
Fixed problem #583135 (disabled 'Go to' button in search dialog)
2009-05-26 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-bookmark-dialog.cc:
Fixed problem #583711 (crash when pressing ESC in bookmark dialog)
2009-05-25 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-key-shortcuts-dialog.cc:
Fix for crash when assigning new UserAction (no.action)
2009-05-23 Piotr Eljasiak <[email protected]>
* po/POTFILES.in:
* src/dialogs/Makefile.am:
* src/dialogs/gnome-cmd-edit-profile-dialog.cc:
* src/dialogs/gnome-cmd-edit-profile-dialog.h:
advrename profiles: addded dialog for editing profiles
2009-05-22 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
advrename profiles: set default template string to "$N"
2009-05-19 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-advrename-dialog.h:
Use new profile widget in advrename dialog
2009-05-18 Christopher Zimmermann <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-options-dialog.cc:
Support for single-click open mode
2009-05-16 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-profile-component.cc:
advrename profiles: properly clear regex model
2009-05-15 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-props-dialog.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-make-copy-dialog.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-search-dialog.cc:
typo: filename -> file name
2009-05-12 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-profile-component.cc:
advrename profiles: be more conformant with HIG
2009-05-11 Piotr Eljasiak <[email protected]>
* tests/gviewer/search_dlg_test.c:
* tests/gviewer/viewerwindow.c:
Replaced deprecated gnome_init() with gnome_program_init()
2009-05-07 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
Replaced deprecated gtk_entry_set_position() with gtk_editable_set_position()
2009-05-07 Christopher Zimmermann <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-options-dialog.cc:
Allow gentoo like left-click behaviour
2009-05-06 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.h:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-notebook.h:
* src/gnome-cmd-profile-component.h:
Properly destroy object in delete operator
2009-04-30 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-profile-component.cc:
* src/gnome-cmd-profile-component.h:
advrename profiles: added convert_case() and trim_blanks() methods
2009-04-28 Piotr Eljasiak <[email protected]>
* src/tags/gnome-cmd-profile-component.cc:
advrename profiles: set default template string to "$N" in copy()
2009-04-25 Piotr Eljasiak <[email protected]>
* src/tags/gnome-cmd-profile-component.cc:
* src/tags/gnome-cmd-profile-component.h:
advrename profiles: added copy() method
2009-04-22 Andrey Cherkinskiy
* src/gnome-cmd-user-actions.cc:
Fixed problem #579633 (accessing administrator privileges with gksudo)
2009-04-15 <[email protected]>
* src/gnome-cmd-rename-dialog.cc:
Toggle path/basename/filename selections for F2 too
2009-04-07 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
Refresh file icon after renaming
* src/tags/gnome-cmd-tags.cc:
Properly report unsuported Doc.* tags
* src/tags/gnome-cmd-profile-component.cc:
* src/tags/gnome-cmd-profile-component.h:
advrename profiles: new widget for editing all profile data
* libgcmd/libgcmd-widget-factory.c:
* libgcmd/libgcmd-widget-factory.h:
* src/gnome-cmd-delete-dialog.cc:
* src/gnome-cmd-list-popmenu.cc:
* src/gnome-cmd-rename-dialog.cc:
* src/gnome-cmd-xfer.cc:
gcc warnings cleanup
2009-04-06 Piotr Eljasiak <[email protected]>
* src/utils.cc:
Fix for memory leak
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file.h:
Refresh MIME information after file renaming
2009-04-02 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-regex.h:
regex: fix for g_regex_unref() assertion
2009-03-27 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file-list.cc:
Fixed problem #576174 (case insensitive file name sorting in non en_US.utf8 locale)
2009-03-24 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-main-menu.cc:
i18n: new translation string ("Show terminal")
2009-03-23 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-main-win.cc:
Added shortcut CTRL+E to command line history list
2009-03-09 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-xml-config.cc:
Moved regexes GtkTreeModel from gnome-cmd-data.h to gnome-cmd-advrename-dialog.cc
2009-02-24 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-chown-component.cc:
* src/gnome-cmd-chown-dialog.cc:
* src/gnome-cmd-file.cc:
* src/gnome-cmd-main-win.cc:
* src/main.cc:
* src/owner.cc
* src/owner.h:
Fixed problem #567506 (slow startup for systems with many users)
2009-02-13 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-options-dialog.cc:
* src/tags/gnome-cmd-tags.cc:
typo: filename -> file name
* libgcmd/gnome-cmd-string-dialog.c:
* plugins/cvs/cvs-plugin.c:
* plugins/cvs/interface.c:
* plugins/fileroller/file-roller-plugin.c:
* src/gnome-cmd-bookmark-dialog.cc:
* src/gnome-cmd-chmod-dialog.cc:
* src/gnome-cmd-chown-dialog.cc:
* src/gnome-cmd-delete-dialog.cc:
* src/gnome-cmd-dir.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-patternsel-dialog.cc:
* src/gnome-cmd-prepare-xfer-dialog.cc:
* src/gnome-cmd-xfer-progress-win.cc:
* src/plugin_manager.cc:
Fixed problem #571558 (replacing deprecated GNOME_STOCK_* buttons with GTK_STOCK_* counterparts)
2009-02-11 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-user-actions.cc:
* src/utils.cc:
GnomeCmdData: more C++ rework
* libgcmd/libgcmd-widget-factory.c:
* libgcmd/libgcmd-widget-factory.h:
* src/gnome-cmd-options-dialog.cc:
Fixed problem #571239 (replacing obsoleted GnomeColorPicker with GtkColorButton)
* plugins/cvs/cvs-plugin.c:
* plugins/fileroller/file-roller-plugin.c:
* plugins/test/test-plugin.c:
Fixed problem #571247 (replacing obsoleted GnomePixmap with GtkImage)
2009-02-10 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-prepare-xfer-dialog.cc:
* src/utils.cc:
* src/utils.h:
Toggle path/basename/filename selections in F5/F6 dialogs.
* src/gnome-cmd-xml-config:
Save additional info on gcmd to XML cfg
2009-02-09 Piotr Eljasiak <[email protected]>
* src/gnome-user-actions.cc:
Fixed problem #570727 (usage of deprecated gnome_url_show)
2009-01-19 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-main-win.cc:
* src/gnome-cmd-options-dialog.cc:
* src/utils.cc:
GnomeCmdData: more C++ rework
2009-01-16 Piotr Eljasiak <[email protected]>
* src/tags/gnome-cmd-tags.cc:
typo: Exif Private -> Exif private
2009-01-15 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-main-menu.cc:
* src/gnome-user-actions.cc:
tabs: added menus+shortcuts for open/close tabs
2009-01-14 Piotr Eljasiak <[email protected]>
* src/owner.cc:
Yet another fix for faster startup
2009-01-13 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-types.h:
* src/imageloader.cc:
GnomeCmdData: more C++ rework
*/gnome-cmd-file.cc:
* src/owner.c:
* src/owner.h:
Tweaks for making startup faster
* src/dialogs/gnome-cmd-advrename-profiles-dialog.cc:
advrename profiles: fix for gtk_list_store_get_path() assertion
2009-01-12 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-props-dialog.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-file.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-xfer-progress-win.cc:
* src/utils.cc:
GnomeCmdData: more C++ rework
* src/gnome-cmd-notebook.h:
notebook: show tabs when number of pages > 1
2009-01-09 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file.h:
Added gnome_cmd_file_get_parent_dir (GnomeCmdFile *f) function
* src/gnome-cmd-user-actions.cc:
Speed up "command.execute" twice
2009-01-08 André <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-style.cc:
* src/gnome-cmd-style.h:
* src/gnome-cmd-types.h:
Support for row alternate background in colour themes
2009-01-08 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
Fixed selection background colour in DeepBlue and Cafezinho themes
2009-01-07 Zsombor <[email protected]>
* plugins/fileroller/file-roller-plugin.c:
Yet another fix for fileroller plugin
2009-01-06 André <[email protected]>
* src/gnome-cmd-file.cc:
Fix for problem with starting the external viewer
2009-01-06 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file.h:
Fix the bug introduced in rev. #2157 (viewing remote files)
* src/tags/gnome-cmd-tags-taglib.cc:
audio metatags: set Audio.Codec to FLAC when appriopriate
2009-01-05 Zsombor <[email protected]>
* plugins/fileroller/file-roller-plugin.c:
fileroller plugin: added extracting archive to the inactive panel
2009-01-03 Piotr Eljasiak <[email protected]>
* src/tags/gnome-cmd-tags-taglib.cc:
ID3 metatags: added support for total number of tracks (Audio.AlbumTrackCount)
2009-01-02 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-bookmark-dialog.cc:
Fixed problem #556664 (bookmarks can not be saved for mounted devices)
2008-12-19 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-user-actions.cc
Updated copyright info
* src/gnome-cmd-data.cc:
i18n: translate default profile name (CamelCase)
2008-12-16 Piotr Eljasiak <[email protected]>
* src/Makefile.am:
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-advrename-dialog.h:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-regex.h:
* src/gnome-cmd-xml-config.cc
* src/dialogs/gnome-cmd-advrename-regex-dialog.cc:
* src/dialogs/gnome-cmd-advrename-regex-dialog.h:
regex: move common code to gnome-cmd-data.h file
2008-12-15 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
advrename: mark rename failure as red italics
* src/Makefile.am:
Do not set default profiles for first-time users if there is no support for GRegex
2008-12-11 Piotr Eljasiak <[email protected]>
* src/Makefile.am:
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-menu-button.cc:
* src/gnome-cmd-menu-button.h:
move code for menu buttons to gnome-cmd-menu-button.{cc,h} files
* dialogs/gnome-cmd-advrename-profiles-dialog:
advrename profiles: added menu button for profile import
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-data.h:
advrename: fix for profile saving
2008-12-09 Piotr Eljasiak <[email protected]>
* src/dialogs/gnome-cmd-advrename-profiles-dialog.cc:
advrename: replaced 'Add' button with 'Duplicate' one
2008-12-08 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-bookmark-dialog.cc:
* src/gnome-cmd-con-ftp.cc:
* src/gnome-cmd-con.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-dir.cc:
* src/intviewer/image-render.cc:
* src/intviewer/text-render.cc:
Replaced obsoleted gtk_object_unref() with g_object_unref()
* pixmaps/Makefile.am:
* src/imageloader.cc:
* src/imageloader.h:
Removal of forgotten parent-dir icon
* src/gnome-cmd-advrename-dialog.cc:
advrename: fix for bug disabling buttons after profile loading
2008-12-07 Piotr Eljasiak <[email protected]>
* po/POTFILES.in:
* src/gnome-cmd-advrename-dialog.cc:
* src/dialogs/Makefile.am:
* src/dialogs/gnome-cmd-advrename-profiles-dialog.cc:
* src/dialogs/gnome-cmd-advrename-profiles-dialog.h:
advrename: addded dialog for managing profiles
2008-12-06 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
advrename: update file list after loading of the saved profile
2008-12-06 Mamoru Tasaka <[email protected]>
* configure.in: Build fix for libtool-2.2
2008-12-01 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-advrename-dialog.h:
advrename: 'Profiles...' button for loading saved settings
* src/gnome-cmd-xml-config.cc:
* src/gnome-cmd-xml-config.cc:
Added gnome_cmd_xml_config_parse() function
2008-11-29 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-xml-config.cc:
Added AdvrenameConfig::fill_regex_model(Profile &)
2008-11-27 Piotr Eljasiak <[email protected]>
* po/POTFILES.in:
* src/Makefile.am:
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-xml-config.cc:
* src/gnome-cmd-xml-config.h:
Use XML cfg for storing advrename settings
2008-11-25 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-patternsel-dialog.cc:
* src/gnome-cmd-search-dialog.cc:
Do not allocate dynamically SearchConfig in GnomeCmdData
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-search-dialog.cc:
* src/intviewer/search-dlg.cc:
* src/intviewer/viewer-utils.cc:
* src/intviewer/viewer-utils.h:
Find file dlg: copy searched text phrase into intviewer text search dlg (F3-F3)
2008-11-24 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
Do not enable column searching for regex view
2008-11-23 Alan Pae <[email protected]>
* po/Makefile.in.in:
* po/POTFILES.in:
* po/POTFILES.skip:
Add missing files to the relevant POTFILES file
2008-11-22 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
Do not allocate dynamically AdvrenameConfig in GnomeCmdData
* src/gnome-cmd-advrename-dialog.cc:
* src/history.h:
Add History::front() and History::reverse() functions
2008-11-20 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
Fix for "gtk_tree_view_column_cell_layout_add_attribute: assertion `info != NULL' failed" assertion
2008-11-18 Piotr Eljasiak <[email protected]>
* src/dialogs/gnome-cmd-advrename-regex-dialog.cc
advrename: viewing files with intviewer
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-advrename-dialog.h:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
Rename GnomeCmdData::AdvrenameDefaults -> GnomeCmdData::AdvrenameConfig
2008-11-17 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-lexer.h:
* src/gnome-cmd-advrename-lexer.ll:
advrename lexer: fix for bug when resetting counters
* src/gnome-cmd-advrename-dialog.cc
* src/gnome-cmd-advrename-dialog.h
* src/gnome-cmd-data.cc
* src/gnome-cmd-data.h
* src/gnome-cmd-main-win.cc
* src/gnome-cmd-main-win.h
* src/gnome-cmd-user-actions.cc
* src/dialogs/gnome-cmd-advrename-regex-dialog.cc
* src/dialogs/gnome-cmd-advrename-regex-dialog.h
Brand new dlg for Advanced Rename Tool
2008-11-15 Piotr Eljasiak <[email protected]>
* src/gnome-con-dialog.cc:
* src/dialogs/gnome-cmd-advrename-regex-dialog.cc:
Activate the default widget for the dialogs containing the entry
2008-11-13 Piotr Eljasiak <[email protected]>
* configure.in:
* po/POTFILES.in:
* src/Makefile.am:
* src/gnome-cmd-advrename-dialog.cc:
* src/dialogs/Makefile.am:
* src/dialogs/gnome-cmd-advrename-regex-dialog.cc:
* src/dialogs/gnome-cmd-advrename-regex-dialog.h
advrename: move code for regex rules dlg to dialogs/gnome-cmd-advrename-regex-dialog.{cc,h} files
2008-11-07 Piotr Eljasiak <[email protected]>
* src/tags/gnome-cmd-tags.cc:
* src/tags/gnome-cmd-tags.h:
typo: Opto-Electoric -> Opto-Electronic
2008-11-04 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file.h:
gnome_cmd_file_ref() returns the file now
* src/gnome-cmd-treeview.cc:
* src/gnome-cmd-treeview.h:
treeview: added gnome_cmd_treeview_create_new_toggle_column()
2008-11-03 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-advrename-lexer.h:
* src/gnome-cmd-advrename-lexer.ll:
advrename lexer: report presence of $c/$c(n) in template
2008-11-02 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-advrename-lexer.h:
* src/gnome-cmd-advrename-lexer.ll:
gnome_cmd_advrename_parse_fname -> gnome_cmd_advrename_parse_template
2008-10-31 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
Kill dead code
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-user-actions.cc:
Simplify code for advrename dlg invoking
2008-10-29 Piotr Eljasiak <[email protected]>
* src/Makefile.am:
* src/gnome-cmd-advrename-dialog.cc:
Advanced file rename tool - minor change in dlg mnemonics
2008-10-24 Piotr Eljasiak <[email protected]>
* src/Makefile.am:
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-convert.cc:
* src/gnome-cmd-convert.h:
Advanced file rename tool - trim blanks
* src/tags/gnome-cmd-tags.cc:
Simplify metadata tags descriptions
* src/tags/gnome-cmd-tags.cc:
Typo fix: predifine -> predefine
2008-10-21 Piotr Eljasiak <[email protected]>
* src/intviewer/viewer-window.cc:
Internal viewer: set zoom index properly when viewing in normal size
2008-10-18 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
Added signal "dir-changed" (GnomeCmdFileList -> GnomeCmdFileSelector)
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-search-dialog.cc:
Replaced gnome_cmd_file_list_new() with GnomeCmdFileList::operator new()
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
GnomeCmdFileList: store realize state
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
GnomeCmdFileList: operator for casting to GtkWidget *
* src/intviewer/viewer-window.cc:
Internal viewer: new zoom factors (10%, 20%, 33%, 50%, 67%, 100%, 125%, 150%, 200%, 300%, 400%, 500%, 600%, 700%, 800%)
2008-10-16 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-dir.cc:
* src/gnome-cmd-file-selector.cc:
Invalidate modified file metatada by GnomeCmdDir, not by GnomeCmdFileSelector
* src/gnome-cmd-file-selector.cc:
Remove surplus assertions
* src/gnome-cmd-user-actions.cc:
Do not assign CTRL+T as a default shortcut to advrename
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
Rename signal "selection-changed" -> "files-changed"
2008-10-15 Piotr Eljasiak <[email protected]>
* src/intviewer/viewer-window.cc:
Internal viewer: view metatags with both t/T shortcuts
* src/gnome-cmd-data.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-types.h:
New colour theme: cafezinho
2008-10-13 Piotr Eljasiak <[email protected]>
* src/intviewer/viewer-window.cc:
Internal viewer - support for metadata tags
* src/intviewer/viewer-window.cc:
Internal viewer - new key bindings: T and ALT+ENTER for metadata tags viewing
2008-10-10 Piotr Eljasiak <[email protected]>
* src/intviewer/*.cc:
C++: add 'using namespace std'
* src/gnome-cmd-combo.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-dir-indicator.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-options-dialog.cc:
* src/utils.cc:
GnomeCmdData: more C++ rework
2008-10-08 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-file-selector.h:
Add GnomeCmdFileSelector::is_active()
* src/intviewer/viewer-window.cc:
intviewer: kill obsoleted code for external tools
* src/Makefile.am:
* src/gnome-cmd-file-props-dialog.cc:
* src/gnome-cmd-key-shortcuts-dialog.cc:
* src/gnome-cmd-remote-dialog.cc:
* src/gnome-cmd-treeview.cc:
* src/gnome-cmd-treeview.h:
treeview: move common code to gnome-cmd-treeview.* files
2008-10-07 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-main-win.cc:
* src/gnome-cmd-main-win.h:
Kill dead code
2008-10-07 JP Rosevear <[email protected]>
* plugins/cvs/interface.c:
Fixed problem #555288 (build fix)
2008-10-04 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-file-selector.h:
GnomeCmdFileSelector: more C++ rework
* src/gnome-cmd-file.cc:
* src/gnome-cmd-file.h:
* src/intviewer/viewer-widget.cc:
* src/intviewer/viewer-window.cc:
* src/intviewer/viewer-window.h:
Pass GnomeCmdFile to intviewer (instead of previous file path)
2008-10-03 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
create_column_titles() -> GnomeCmdFileList::create_column_titles()
2008-10-03 Yuriy Penkin <[email protected]>
* configure.in:
* data/gnome-commander.ebuild.in:
* data/gnome-commander.spec.in:
Fixed problem #554598 (GNOME Goal: LINGUAS)
2008-10-01 Yuriy Penkin <[email protected]>
* configure.in:
Fixed problem #554586 (AC_PROG_CXX macro problem)
2008-09-30 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-main-win.cc:
GnomeCmdData: more C++ rework
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
GnomeCmdFileList::show_dir_size() -> GnomeCmdFileList::show_dir_tree_size()
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
GnomeCmdFileList::insert_file() and GnomeCmdFileList::remove_file() return success/failure now
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-file-selector.h:
Move con, cwd, lwd, connected_dir from GnomeCmdFileSelector to GnomeCmdFileList
2008-09-29 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-notebook.h:
notebook: added missing prev_page() and next_page()
* src/gnome-cmd-file-list.cc:
Simplify and speedup GnomeCmdFileList::file_is_wanted()
* configure.in:
* src/eggcellrendererkeys.cc:
* src/eggcellrendererkeys.h:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-user-actions.cc:
* src/gnome-cmd-user-actions.h:
Replace HAVE_GTK_2_10 with GTK_CHECK_VERSION(2,10,0)
2008-09-27 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-delete-dialog.cc:
Iterate through the file list MUCH faster (O(n*n) -> O(n))
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-quicksearch-popup.cc:
Move get_file_at_row() and get_row_from_file() to GnomeCmdFileList
* configure.in:
* data/gnome-commander.ebuild.in:
Use version requirements for ebuild from configure.in
2008-09-26 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-con-device.cc:
* src/gnome-cmd-con-ftp.cc:
* src/gnome-cmd-con-home.cc:
* src/gnome-cmd-con-smb.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-options-dialog.cc:
* src/imageloader.cc:
GnomeCmdData: more C++ rework
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-props-dialog.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-mkdir-dialog.cc:
* src/gnome-cmd-rename-dialog.cc:
* src/gnome-cmd-search-dialog.cc:
gnome_cmd_file_list_focus_file() -> GnomeCmdFileList::focus_file()
2008-09-25 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
gnome_cmd_file_list_show_dir_size() -> GnomeCmdFileList::show_dir_size()
* src/gnome-cmd-dir.cc:
* src/gnome-cmd-dir.h:
inline gnome_cmd_dir_ref() and gnome_cmd_dir_unref()
* libgcmd/libgcmd-widget-factory.c:
* libgcmd/libgcmd-widget-factory.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-main-menu.cc:
* src/gnome-cmd-options-dialog.cc:
* gnome-cmd-tags-doc.cc:
gcc warnings cleanup
2008-09-24 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-advrename-dialog.cc:
* src/gnome-cmd-cmdline.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
GnomeCmdData: more C++ rework
2008-09-24 Takao Fujiwara <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-options-dialog.cc:
* src/utils.cc:
Fixed problem #548947 (non-UTF8 locale date problem)
2008-09-23 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
file_is_in_list(GnomeCmdFileSelector *fs, GnomeCmdFile *f) -> GnomeCmdFileList::has_file(const GnomeCmdFile *f)
* src/gnome-con-dialog.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-main-menu.cc:
* src/gnome-cmd-main-win.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-quicksearch-popup.cc:
* src/gnome-cmd-remote-dialog.cc:
* src/main.cc:
* src/utils.cc:
GnomeCmdData: more C++ rework
2008-09-22 Piotr Eljasiak <[email protected]>
* src/dirlist.cc:
* src/gnome-cmd-con.cc:
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-delete-dialog.cc:
* src/gnome-cmd-file-props-dialog.cc:
* src/gnome-cmd-file-selector.cc:
* src/gnome-cmd-file.cc:
* src/gnome-cmd-search-dialog.cc:
* src/gnome-cmd-xfer.cc:
GnomeCmdData: gnome_cmd_data_get_gui_update_rate() -> gnome_cmd_data.gui_update_rate
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-patternsel-dialog.cc:
* src/gnome-cmd-user-actions.cc:
GnomeCmdFileList: more C++ rework
* src/gnome-cmd-dir.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-file-list.h:
* src/gnome-cmd-file-selector.cc:
Move code from update_files(GnomeCmdFileSelector *fs) to GnomeCmdFileList::show_files(GnomeCmdDir *dir)
2008-09-11 Piotr Eljasiak <[email protected]>
* src/gnome-cmd-data.cc:
* src/gnome-cmd-data.h:
* src/gnome-cmd-file-list.cc:
* src/gnome-cmd-main-menu.cc:
* src/gnome-cmd-main-win.cc:
* src/gnome-cmd-options-dialog.cc:
* src/gnome-cmd-search-dialog.cc: