-
Notifications
You must be signed in to change notification settings - Fork 15
/
ChangeLog
6326 lines (4745 loc) · 185 KB
/
ChangeLog
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
2017-05-05 kitone <[email protected]>
Import the last commit to github repository.
2016-10-31 kitone <[email protected]>
* autogen.sh:
Fix bug #24949 : Remove deprecated gnome-common variable GNOME2_DIR.
2016-10-31 kitone <[email protected]>
* src/defaultcfg.cc:
Fix: setup the default value of do-auto-timing-check in the timing group.
2016-10-30 kitone <[email protected]>
* src/gui/application.cc:
Fix: Ask for maximize-window instead of window-maximized config key.
2016-10-30 kitone <[email protected]>
* NEWS:
* README:
* plugins/actions/bestfit/bestfit.cc:
* plugins/actions/findandreplace/findandreplace.cc:
* plugins/actions/plaintext/plaintext.cc:
* plugins/actions/textcorrection/Latn.common-error.se-pattern.in:
* plugins/actions/textcorrection/patternspage.h:
* plugins/actions/timingfromplayer/timingfromplayer.cc:
* plugins/actions/typewriter/typewriter.cc:
* plugins/subtitleformats/dcsubtitle/dcsubtitle.cc:
* src/document.cc:
* src/document.h:
* src/extensionmanager.cc:
* src/gui/automaticspellchecker.cc:
* src/gui/textviewcell.cc:
* src/gui/textviewcell.h:
* src/keyframes.cc:
* src/spellchecker.cc:
* src/subtitle.cc:
* src/subtitleformatsystem.cc:
* src/subtitleview.cc:
* src/vp/gstplayer.cc:
* src/vp/gstplayer.h:
Fix bug #25243 : Fix some spelling errors. Philip Rinn <rinni>
2016-10-16 kitone <[email protected]>
* configure.ac:
* plugins/actions/scalesubtitles/scalesubtitles.cc:
* plugins/actions/splitsubtitle/splitsubtitle.cc:
* plugins/actions/typewriter/typewriter.cc:
* plugins/subtitleformats/adobeencoredvd/adobeencoredvd.h:
* plugins/subtitleformats/avidds/avidds.cc:
* plugins/subtitleformats/bitc/bitc.cc:
* plugins/subtitleformats/mpsub/mpsub.cc:
* plugins/subtitleformats/sprucestl/sprucestl.cc:
* src/gui/automaticspellchecker.cc:
* src/subtitletime.cc:
* src/subtitletime.h:
* src/timeutility.cc:
* src/we/waveformeditor.cc:
* src/we/waveformrenderer.cc:
* src/we/waveformrenderercairo.cc:
Build with the flags -Werror=reorder -Werror=float-conversion.
2016-10-16 kitone <[email protected]>
* plugins/actions/keyframesmanagement/keyframesgeneratorusingframe.cc:
Fix constructor order.
2016-10-16 kitone <[email protected]>
* plugins/actions/keyframesmanagement/mediadecoder.h:
* plugins/actions/waveformmanagement/mediadecoder.h:
Fix bug #25184 : Fix build with gstreamermm-1.0 1.8.0. Philip Rinn <rinni>
2016-09-26 kitone <[email protected]>
* src/gui/textviewcell.cc:
* src/subtitleview.cc:
Fix constructor order.
2016-09-26 kitone <[email protected]>
* plugins/actions/changeframerate/changeframerate.cc:
* plugins/actions/configurekeyboardshortcuts/configurekeyboardshortcuts.cc:
* plugins/actions/dialoguize/dialoguize.cc:
* plugins/actions/documentmanagement/documentmanagement.cc:
* plugins/actions/errorchecking/errorcheckingpreferences.h:
* plugins/actions/externalvideoplayer/externalvideoplayer.cc:
* plugins/actions/joindocument/joindocument.cc:
* plugins/actions/movesubtitles/movesubtitles.cc:
* plugins/actions/plaintext/plaintext.cc:
* plugins/actions/preferences/preferencesplugin.cc:
* plugins/actions/scalesubtitles/scalesubtitles.cc:
* plugins/actions/spellchecking/spellchecking.cc:
* plugins/actions/splitdocument/splitdocument.cc:
* plugins/actions/styleeditor/styleeditor.cc:
* plugins/actions/template/template.cc:
* plugins/actions/timingfromplayer/timingfromplayer.cc:
* plugins/actions/viewmanager/viewmanager.cc:
* src/gui/comboboxencoding.cc:
* src/gui/dialogcharactercodings.cc:
* src/gui/dialogcharactercodings.h:
* src/gui/dialogfilechooser.cc:
* src/gui/dialogfilechooser.h:
* src/spellchecker.h:
* src/subtitleformatsystem.cc:
Replace std::auto_ptr with std::unique_ptr.
2016-09-26 kitone <[email protected]>
* plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc:
* plugins/subtitleformats/substationalpha/substationalpha.cc:
* src/subtitle.cc:
Fix sr #3373: Compiling subtitleeditor-0.52.1 '--disable-nls' fails with '/usr/include/libintl.h' errors : Peter Levine <nsane457>
2016-08-14 kitone <[email protected]>
* configure.ac:
Switching back to development version.
2016-07-30 kitone <[email protected]>
* configure.ac:
Preparing 0.53.0 release.
2016-07-30 kitone <[email protected]>
* src/Makefile.am:
Fix warning with the automake options subdir-objects.
2016-07-30 kitone <[email protected]>
* plugins/actions/template/Makefile.am:
Use AM_CPPFLAGS instead of INCLUDES.
2016-07-30 kitone <[email protected]>
* plugins/actions/insertsubtitlefromkeyframe/insertsubtitlefromkeyframe.cc:
* plugins/actions/keyframesmanagement/keyframesmanagement.cc:
Fix cast error.
2016-02-13 kitone <[email protected]>
* plugins/actions/preferences/dialog-preferences.ui:
* plugins/actions/preferences/interfacepage.h:
Fix bug #24407 : Undo/redo should be unlimited/have configurable limit/ higher limit
2016-02-07 kitone <[email protected]>
* plugins/actions/preferences/dialog-preferences.ui:
* plugins/actions/preferences/timingpage.h:
* src/defaultcfg.cc:
* src/utility.cc:
Fix bug #24066 : Trailing spaces count for cps calculation.
2016-02-06 kitone <[email protected]>
* configure.ac:
* plugins/actions/Makefile.am:
* plugins/actions/template/Makefile.am:
* plugins/actions/template/template.cc:
* plugins/actions/template/template.se-plugin.in:
Fix bug #19010 : subtitleeditor needs a style template system for all formats.
2016-02-05 kitone <[email protected]>
* share/subtitleeditor.desktop.in:
* share/appdata/subtitleeditor.appdata.xml:
Add keywords.
2016-02-05 kitone <[email protected]>
* configure.ac:
Bump dependence of gtkmm from 3.0 to 3.10
2016-02-05 kitone <[email protected]>
* configure.ac:
Fix bug #23714 : glibmm 2.45.40 requires C++11 -- please build with C++11 support
2016-02-05 kitone <[email protected]>
* plugins/actions/dialoguize/dialoguize.cc:
* plugins/actions/documentmanagement/documentmanagement.cc:
Fix bug #23714 : include memory and build string using compose.
2016-02-05 kitone <[email protected]>
* src/subtitleview.cc:
* src/utility.h:
Fix bug #23714 : Explicit cast. patch by Philip Rinn <rinni>
2016-02-03 kitone <[email protected]>
* plugins/actions/changeframerate/changeframerate.cc:
* plugins/actions/changeframerate/dialog-change-framerate.ui:
Fix bug #24302 : FPS Field in change Framerate dialog not editable anymore. Port to gtk3 and fix regression.
2015-07-29 kitone <[email protected]>
* plugins/actions/errorchecking/dialog-error-checking.ui:
* plugins/actions/errorchecking/errorcheckingplugin.cc:
Fix bug #23727 : Error Checking should close on pressing Escape.
2015-07-28 kitone <[email protected]>
* plugins/actions/movesubtitles/movesubtitles.cc:
Fix bug #23718 : Move plugin should remember the checkbox to only move selected.
2015-07-28 kitone <[email protected]>
* plugins/actions/errorchecking/dialog-error-checking-preferences.ui:
Fix bug #23706 : Error checking preferences should be the same in preferences and error checking.. (Patch by Tomáš Hnyk)
2015-07-28 kitone <[email protected]>
* configure.ac:
Switching back to development version.
2015-06-25 kitone <[email protected]>
* NEWS:
* configure.ac:
Preparing 0.52.1 release.
2015-06-25 kitone <[email protected]>
* plugins/actions/errorchecking/Makefile.am:
Fix bug #23662 : Subtitleeditor 0.52.0 "errorcheckingplugin.cc:32:36: fatal error: mincharacterspersecond.h: No such file or directory".
2015-06-24 kitone <[email protected]>
* NEWS:
* configure.ac:
Preparing 0.52.0 release.
2015-06-24 kitone <[email protected]>
* plugins/actions/styleeditor/dialog-style-editor.ui:
Fix bug #23470 : Style editor does not permit margins to go over 100 and other problems. (Patch by Tomáš Hnyk)
2015-06-24 kitone <[email protected]>
* plugins/actions/configurekeyboardshortcuts/dialog-configure-keyboard-shortcuts.ui:
Fix bug #23660 : Keyboard shortcuts window is to small by default. (Patch by Tomáš Hnyk)
2015-06-21 kitone <[email protected]>
* configure.ac:
* plugins/actions/Makefile.am:
* plugins/actions/wavefrommanagement/Makefile.am:
* plugins/actions/wavefrommanagement/mediadecoder.h:
* plugins/actions/wavefrommanagement/waveformgenerator.cc:
* plugins/actions/wavefrommanagement/waveformmanagement.cc:
* plugins/actions/wavefrommanagement/waveformmanagement.se-plugin.in:
Fix bug #23656 : String "wavefrom" (inted of "waveform") in some locations.
2015-06-21 kitone <[email protected]>
* plugins/actions/wavefrommanagement/waveformmanagement.cc:
Fix bug #23656 : String "wavefrom" (inted of "waveform") in some locations
2015-06-07 kitone <[email protected]>
* plugins/subtitleformats/subtitleeditorproject/subtitleeditorproject.cc:
Fix bug #23588 : Name Subtitle Editor project files something else but name.xml.
2015-06-07 kitone <[email protected]>
* configure.ac:
* plugins/actions/Makefile.am:
* plugins/actions/stylize/Makefile.am:
* plugins/actions/stylize/stylize.cc:
* plugins/actions/stylize/stylize.se-plugin.in:
Fix bug #23529 : Impossible to change styles of several subtitles at once.
2015-06-07 kitone <[email protected]>
* src/document.h:
* src/style.cc:
* src/styles.cc:
Emit signals on style edition.
2015-06-06 kitone <[email protected]>
* plugins/actions/configurekeyboardshortcuts/dialog-configure-keyboard-shortcuts.ui:
Remove deprecated widget.
2015-06-06 kitone <[email protected]>
* plugins/actions/documentmanagement/documentmanagement.cc:
* plugins/actions/preferences/dialog-preferences.ui:
Fix bug #23622 : Make autosave setting in preferences work and other improvements. (Patch by Tomáš Hnyk)
2015-05-06 kitone <[email protected]>
* src/gui/textviewcell.cc:
* src/gui/textviewcell.h:
* src/subtitleview.cc:
Fix bug #23569 : Cursor cannot be moved with mouse when editing subtitles.
2015-04-30 kitone <[email protected]>
* plugins/actions/keyframesmanagement/keyframesmanagement.cc:
* plugins/actions/videoplayermanagement/videoplayermanagement.cc:
* plugins/actions/wavefrommanagement/waveformmanagement.cc:
Fix bug #23521 : Videos, waveform and keyframe files drag'n'dropped do not show up in recently opened
2015-04-30 kitone <[email protected]>
* plugins/actions/dialoguize/dialog-dialoguize-preferences.ui:
* plugins/actions/dialoguize/dialoguize.cc:
* plugins/actions/styleeditor/dialog-style-editor.ui:
* plugins/actions/styleeditor/styleeditor.cc:
Fix bug #23470 : Style editor does not permit margins to go over 100 and other problems
2015-04-29 kitone <[email protected]>
* plugins/actions/errorchecking/Makefile.am:
* plugins/actions/errorchecking/dialog-error-checking-preferences.ui:
* plugins/actions/errorchecking/dialog-error-checking.ui:
* plugins/actions/errorchecking/errorchecking.h:
* plugins/actions/errorchecking/errorcheckingplugin.cc:
* plugins/actions/errorchecking/errorcheckingpreferences.h:
* plugins/actions/errorchecking/maxcharactersperline.h:
* plugins/actions/errorchecking/maxcharacterspersecond.h:
* plugins/actions/errorchecking/maxlinepersubtitle.h:
* plugins/actions/errorchecking/mincharacterspersecond.h:
* plugins/actions/errorchecking/mindisplaytime.h:
* plugins/actions/errorchecking/mingapbetweensubtitles.h:
* plugins/actions/errorchecking/overlapping.h:
* plugins/actions/errorchecking/toolongdisplaytime.h:
* plugins/actions/errorchecking/tooshortdisplaytime.h:
Fix bug #20214 : Checking CPS is named "Display time" (Patch by Tomáš Hnyk)
2015-04-25 kitone <[email protected]>
* share/appdata/subtitleeditor.appdata.xml:
Fix bug #22657 : Please install the supplied AppData file.
2015-04-25 kitone <[email protected]>
* plugins/actions/preferences/dialog-preferences.ui:
* plugins/actions/preferences/videoplayerpage.h:
* src/vp/gstplayer.cc:
* src/vp/gstplayer.h:
Fix bug #23502 : Allow display of subtitles elsewhere but at the bottom.
2015-04-25 kitone <[email protected]>
* src/gui/treeviewextensionmanager.cc:
Fix bug #23508 : Make the preference dialog a bit wider, wrap text.
2015-04-25 kitone <[email protected]>
* plugins/actions/spellchecking/dialog-spell-checking.ui:
Remove deprecated widget.
2015-04-25 kitone <[email protected]>
* plugins/actions/preferences/dialog-preferences.ui:
* plugins/actions/preferences/preferencepage.h:
* plugins/actions/preferences/preferencesplugin.cc:
Fix bug #23508 : Make the preference dialog a bit wider. Remove deprecated widgets.
2015-04-25 kitone <[email protected]>
* configure.ac:
Switching back to development version.
2015-04-18 kitone <[email protected]>
* NEWS:
* configure.ac:
Preparing 0.51.0 release.
2015-04-18 kitone <[email protected]>
* src/Makefile.am:
Fix missing comboboxtextcolumns.h file
2015-04-18 kitone <[email protected]>
* plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc:
Fix bug #23471 : Problems when saving into ASS - Save PlayResX/Y from screen resolution.
2015-04-18 kitone <[email protected]>
* plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc:
Fix bug #23471 : Problems when saving into ASS - rename Actor with Name
2015-04-18 kitone <[email protected]>
* src/vp/gstplayer.cc:
Fix bug #23317 : Character & messes up subtitle preview
2015-04-17 kitone <[email protected]>
* plugins/actions/timingfromplayer/timingfromplayer.cc:
Fix bug #20170 : "Video"/"Timing from player" with an offset - only if playing
2015-04-17 kitone <[email protected]>
* src/gui/application.cc:
Fix bug #23486 : Remember window size, work with gtkmm 3.10 and 3.12
2015-04-17 kitone <[email protected]>
* src/gui/application.cc:
Fix bug #23486 : Remember window size.
2015-04-17 kitone <[email protected]>
* plugins/actions/timingfromplayer/Makefile.am:
* plugins/actions/timingfromplayer/timingfromplayer.cc:
Fix bug #20170 : "Video"/"Timing from player" with an offset
2015-04-17 kitone <[email protected]>
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui:
* plugins/actions/externalvideoplayer/externalvideoplayer.cc:
Add the ability to use option #mseconds.
2015-04-17 kitone <[email protected]>
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui:
* plugins/actions/externalvideoplayer/externalvideoplayer.cc:
Add the ability to use option #time.
2015-04-17 kitone <[email protected]>
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui:
* plugins/actions/externalvideoplayer/externalvideoplayer.cc:
Fix bug #23476 : Add preference close button
2015-04-14 kitone <[email protected]>
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui:
* plugins/actions/externalvideoplayer/externalvideoplayer.cc:
Fix bug #23476 : Allow configuring the delay for external player.
2015-04-12 kitone <[email protected]>
* share/ui/subtitleeditor.ui:
* src/gui/application.cc:
* src/gui/application.h:
Fix bug #22476 : Remember video and waveform window size
2015-04-12 kitone <[email protected]>
* plugins/actions/documentmanagement/documentmanagement.cc:
* src/gui/dialogfilechooser.cc:
* src/gui/dialogfilechooser.h:
Fix bug #20672 : Automatically put the extension when saving a project file
2015-04-12 kitone <[email protected]>
* plugins/actions/documentmanagement/documentmanagement.cc:
* src/documentsystem.cc:
* src/documentsystem.h:
Fix bug #23148 : Create new untilted name with extension.
2015-04-12 kitone <[email protected]>
* plugins/actions/documentmanagement/documentmanagement.cc:
Fix bug #23148 : Default to video file name when saving new subtitles.
2015-04-12 kitone <[email protected]>
* src/subtitleformatsystem.cc:
* src/subtitleformatsystem.h:
Add method get_extension_of_format.
2015-04-12 kitone <[email protected]>
* plugins/actions/wavefrommanagement/waveformmanagement.cc:
Refactoring, using the set_filename_from_another_uri introduce in the previous commit.
2015-04-12 kitone <[email protected]>
* src/gui/dialogfilechooser.cc:
* src/gui/dialogfilechooser.h:
Add the ability to setup uri from another one using dialogfilechooser.
2015-04-12 kitone <[email protected]>
* src/gui/dialogfilechooser.cc:
* src/utility.cc:
* src/utility.h:
Refactoring code to change extension of filename (dialog save document).
2015-04-12 kitone <[email protected]>
* configure.ac:
Switching back to development version.
2015-04-11 kitone <[email protected]>
* NEWS:
* configure.ac:
Preparing 0.50.0 release.
2015-04-11 kitone <[email protected]>
* share/ui/Makefile.am:
* share/ui/dialog-character-codings.ui:
* share/ui/dialog-encodings-chooser.ui:
* share/ui/dialog-export-text.ui:
* share/ui/dialog-import-text.ui:
* share/ui/dialog-open-document.ui:
* share/ui/dialog-save-document.ui:
* share/ui/subtitleeditor.ui:
* src/vp/videoplayer.cc:
* src/we/waveformeditor.h:
Remove deprecated widget.
2015-04-11 kitone <[email protected]>
* share/ui/dialog-character-codings.ui:
Restore dependency to gtk+ 3.10.
2015-04-10 kitone <[email protected]>
* share/ui/dialog-character-codings.ui:
* src/gui/comboboxencoding.cc:
* src/gui/dialogcharactercodings.cc:
* src/gui/dialogcharactercodings.h:
Fix bug #23456 : GTK3 regression: add or remove encoding dialog is broken.
2015-01-10 kitone <[email protected]>
* plugins/actions/configurekeyboardshortcuts/dialog-configure-keyboard-shortcuts.ui:
Fix bug #23160 : Configure keyboard shortcuts does not fit hte window well.
2015-01-09 kitone <[email protected]>
* plugins/actions/textcorrection/textcorrection.cc:
Fix bug #22489 : Text correction - save the config, on close, save and cancel.
2015-01-09 kitone <[email protected]>
* plugins/actions/textcorrection/patternspage.h:
* plugins/actions/textcorrection/textcorrection.cc:
Fix bug #22489 : Text correction - Fix error introduce with the previous
commit and only display close button without errors.
2015-01-08 kitone <[email protected]>
* plugins/actions/textcorrection/confirmationpage.h:
Fix bug #22489 : Text correction - ability to double click on confirmation page.
2015-01-08 kitone <[email protected]>
* plugins/actions/textcorrection/patternspage.h:
* plugins/actions/textcorrection/taskspage.h:
Fix bug #22489 : Text correction - ability to double click to swith enable status.
2015-01-08 kitone <[email protected]>
* plugins/actions/textcorrection/patternspage.h:
* plugins/actions/textcorrection/taskspage.h:
Fix bug #22489 : Text correction does not remember which corrections to apply.
2015-01-08 kitone <[email protected]>
* plugins/actions/bestfit/bestfit.cc:
Fix bug #23151 : Using best fit subtitles on zero-length subtitles crashes subtitleeditor
2015-01-05 kitone <[email protected]>
* src/we/waveformeditor.cc:
Fix bug #22482 : Another regression of gtk3 port (waveform issue).
2015-01-05 kitone <[email protected]>
* src/gui/spinbuttontime.cc:
Fix bug #22493 : Move subtitles disallows moves by not multiplies of 0,100s.
2015-01-03 kitone <[email protected]>
* plugins/actions/spellchecking/dialog-spell-checking.ui:
* plugins/actions/spellchecking/spellchecking.cc:
Fix bug #22488 : Regression in spellchecker.
2015-01-03 kitone <[email protected]>
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui:
Fix bug #22492 : Crash when trying to open external player preferences.
2015-01-02 kitone <[email protected]>
* plugins/actions/wavefrommanagement/waveformmanagement.cc:
* plugins/subtitleformats/subtitleeditorproject/subtitleeditorproject.cc:
Fix bug #22508 : Use (at least optionally) relative paths in subtitle editor xml files (and optionally ass and ssa?).
2015-01-01 kitone <[email protected]>
* plugins/actions/plaintext/plaintext.cc:
Fix bug #22550 : Default saving mode defaults to plain text after importing a .txt script
2015-01-01 kitone <[email protected]>
* src/gui/textviewcell.cc:
* src/gui/textviewcell.h:
* src/subtitleview.cc:
Fix bug #22857, bug #23018 patch from Philip Rinn and oi_wtf.
2014-08-31 kitone <[email protected]>
* plugins/actions/findandreplace/findandreplace.cc:
Fix segfault and refactoring search function.
2014-08-31 kitone <[email protected]>
* plugins/actions/findandreplace/findandreplace.cc:
Fix bug #22494 : Find and replace sohuld focus the "Pattern" filed when launche.
2014-08-31 kitone <[email protected]>
* plugins/actions/viewmanager/dialog-view-manager.ui:
Fix bug #22490 : GTK3: view manager is useless.
2014-08-15 kitone <[email protected]>
* src/gui/application.cc:
Fix show/hide of player/waveform after porting to gtk3.
2014-08-15 kitone <[email protected]>
* src/gui/application.cc:
* src/gui/application.h:
Fix bug #22471 : Drag and drop of keyframe and waveform files.
2014-08-15 kitone <[email protected]>
* src/we/waveformeditor.cc:
* src/we/waveformeditor.h:
Only set sensitive to false on child.
2014-08-15 kitone <[email protected]>
* configure.ac:
Fix gstreamer level test on old version.
2014-08-14 kitone <[email protected]>
* plugins/actions/keyframesmanagement/keyframesmanagement.cc
Fix bug #22472 : Recent keyfroms files.
2014-08-12 kitone <[email protected]>
* plugins/actions/keyframesmanagement/keyframesgeneratorusingframe.cc
Port the keyframes generator using frame to gstreamer 1.0.
2014-08-12 kitone <[email protected]>
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui
* plugins/actions/externalvideoplayer/externalvideoplayer.cc
Fix bug #20557 : When working with subtitleeditor project, external player does not load it
2014-08-12 kitone <[email protected]>
* src/vp/gstplayer.cc
Fix bug #22406 : Bugs with GTk3 port (Generating waveform does not work).
Use property current_uri instead of uri.
2014-08-12 kitone <[email protected]>
* src/vp/gstplayer.cc
Fix bug #22406 : Bugs with GTk3 port (seeking by single frame).
Port the get_framerate method to gstreamer 1.0.
2014-05-04 kitone <[email protected]>
* plugins/actions/splitdocument/splitdocument.cc
Fix bug #22009 : Split subtitle file.
2014-03-01 kitone <[email protected]>
* src/document.h
* src/subtitles.cc
* plugins/actions/findandreplace/findandreplace.cc
Add document signal 'subtitle-deleted'.
Fix segfault when we delete subtitle using find and replace (Original patch by Pete Beardmore)
2014-03-01 kitone <[email protected]>
* plugins/actions/findandreplace/findandreplace.cc
Extend regex remplacement using submatches. Patch by Pete Beardmore.
2014-03-01 kitone <[email protected]>
* plugins/actions/findandreplace/dialog-find-and-replace.ui
Re-enable focus on entries. Patch by Pete Beardmore.
2014-03-01 kitone <[email protected]>
* plugins/actions/findandreplace/findandreplace.cc
* src/document.h
Fix typo. Patch by Pete Beardmore.
2014-01-26 kitone <[email protected]>
* configure.ac:
* plugins/actions/keyframesmanagement/keyframesgenerator.cc:
* plugins/actions/keyframesmanagement/keyframesgeneratorusingframe.cc:
* plugins/actions/keyframesmanagement/mediadecoder.h:
* plugins/actions/wavefrommanagement/mediadecoder.h:
* plugins/actions/wavefrommanagement/waveformgenerator.cc:
* src/gstreamer_utility.cc:
* src/vp/gstplayer.cc:
* src/vp/gstplayer.h:
Start port to gstreamer/mm 1.0.
2014-01-05 kitone <[email protected]>
* share/ui/subtitleeditor.ui:
* src/gui/application.cc:
* src/gui/application.h:
* src/vp/gstplayer.cc:
* src/we/waveformeditor.cc:
* src/we/waveformeditor.h:
Start removing deprecated widgets.
2014-01-04 kitone <[email protected]>
* plugins/subtitleformats/advancedsubstationalpha/dialog-advancedsubstationalpha-preferences.ui:
* plugins/subtitleformats/substationalpha/dialog-substationalpha-preferences.ui:
Fix: port to gtk3.
2014-01-04 kitone <[email protected]>
* src/gui/cellrenderercustom.h:
Fix: call finish_editing in editing_done.
2014-01-04 kitone <[email protected]>
* autogen.sh:
* configure.ac:
* configure.in:
* plugins/actions/about/Makefile.am:
* plugins/actions/adjusttime/Makefile.am:
* plugins/actions/applytranslation/Makefile.am:
* plugins/actions/bestfit/Makefile.am:
* plugins/actions/changeframerate/Makefile.am:
* plugins/actions/clipboard/Makefile.am:
* plugins/actions/combinesubtitles/Makefile.am:
* plugins/actions/command/Makefile.am:
* plugins/actions/configurekeyboardshortcuts/Makefile.am:
* plugins/actions/dialoguize/Makefile.am:
* plugins/actions/documentmanagement/Makefile.am:
* plugins/actions/documentsnavigation/Makefile.am:
* plugins/actions/duplicatesubtitle/Makefile.am:
* plugins/actions/editcell/Makefile.am:
* plugins/actions/errorchecking/Makefile.am:
* plugins/actions/extendlength/Makefile.am:
* plugins/actions/externalvideoplayer/Makefile.am:
* plugins/actions/findandreplace/Makefile.am:
* plugins/actions/insertsubtitle/Makefile.am:
* plugins/actions/insertsubtitlefromkeyframe/Makefile.am:
* plugins/actions/italicize/Makefile.am:
* plugins/actions/joindocument/Makefile.am:
* plugins/actions/keyframesmanagement/Makefile.am:
* plugins/actions/minimizeduration/Makefile.am:
* plugins/actions/moveafterprecedingsubtitle/Makefile.am:
* plugins/actions/movesubtitles/Makefile.am:
* plugins/actions/plaintext/Makefile.am:
* plugins/actions/preferences/Makefile.am:
* plugins/actions/removesubtitle/Makefile.am:
* plugins/actions/reversetextandtranslation/Makefile.am:
* plugins/actions/scalesubtitles/Makefile.am:
* plugins/actions/selection/Makefile.am:
* plugins/actions/sortsubtitles/Makefile.am:
* plugins/actions/spellchecking/Makefile.am:
* plugins/actions/splitdocument/Makefile.am:
* plugins/actions/splitsubtitle/Makefile.am:
* plugins/actions/stacksubtitles/Makefile.am:
* plugins/actions/styleeditor/Makefile.am:
* plugins/actions/textcorrection/Makefile.am:
* plugins/actions/timemodemanagement/Makefile.am:
* plugins/actions/timingfromplayer/Makefile.am:
* plugins/actions/typewriter/Makefile.am:
* plugins/actions/videoplayermanagement/Makefile.am:
* plugins/actions/viewmanager/Makefile.am:
* plugins/actions/wavefrommanagement/Makefile.am:
Rename configure.in to configure.ac, INCLUDES to AM_CPPFLAGS.
Remove IT_PROG_INTLTOOL check version.
2014-01-04 kitone <[email protected]>
* configure.in:
* plugins/actions/about/about.cc:
* plugins/actions/changeframerate/changeframerate.cc:
* plugins/actions/changeframerate/dialog-change-framerate.ui:
* plugins/actions/configurekeyboardshortcuts/dialog-configure-keyboard-shortcuts.ui:
* plugins/actions/dialoguize/dialog-dialoguize-preferences.ui:
* plugins/actions/documentmanagement/documentmanagement.cc:
* plugins/actions/errorchecking/dialog-error-checking-preferences.ui:
* plugins/actions/errorchecking/dialog-error-checking.ui:
* plugins/actions/externalvideoplayer/dialog-external-video-player-preferences.ui:
* plugins/actions/findandreplace/dialog-find-and-replace.ui:
* plugins/actions/findandreplace/findandreplace.cc:
* plugins/actions/movesubtitles/dialog-move-subtitles.ui:
* plugins/actions/preferences/dialog-preferences.ui:
* plugins/actions/preferences/extensionpage.h:
* plugins/actions/scalesubtitles/dialog-scale-subtitles.ui:
* plugins/actions/scalesubtitles/scalesubtitles.cc:
* plugins/actions/spellchecking/dialog-spell-checking.ui:
* plugins/actions/splitdocument/dialog-split-document.ui:
* plugins/actions/styleeditor/dialog-style-editor.ui:
* plugins/actions/textcorrection/assistant-text-correction.ui:
* plugins/actions/videoplayermanagement/videoplayermanagement.cc:
* plugins/actions/viewmanager/dialog-view-manager.ui:
* plugins/actions/wavefrommanagement/waveformmanagement.cc:
* plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc:
* plugins/subtitleformats/substationalpha/substationalpha.cc:
* share/ui/dialog-character-codings.ui:
* share/ui/dialog-encodings-chooser.ui:
* share/ui/dialog-export-text.ui:
* share/ui/dialog-import-text.ui:
* share/ui/dialog-open-document.ui:
* share/ui/dialog-save-document.ui:
* share/ui/subtitleeditor.ui:
* src/gui/application.cc:
* src/gui/application.h:
* src/gui/automaticspellchecker.cc:
* src/gui/comboboxencoding.cc:
* src/gui/comboboxnewline.cc:
* src/gui/comboboxsubtitleformat.cc:
* src/gui/comboboxtextcolumns.h:
* src/gui/comboboxvideo.cc:
* src/gui/dialogfilechooser.cc:
* src/gui/dialogutility.cc:
* src/gui/spinbuttontime.cc:
* src/gui/spinbuttontime.h:
* src/gui/textviewcell.cc:
* src/subtitleview.cc:
* src/vp/gstplayer.cc:
* src/vp/gstplayer.h:
* src/vp/videoplayer.cc:
* src/we/waveformeditor.cc:
* src/we/waveformrenderercairo.cc:
Start the port to gtkmm3.
2013-09-28 kitone <[email protected]>
* configure.in:
* share/Makefile.am:
* share/appdata/Makefile.am:
Introduce appdata file from Ankur Sinha (Fedora Maintainer).
2013-08-28 kitone <[email protected]>
* configure.in:
* plugins/subtitleformats/Makefile.am:
* plugins/subtitleformats/avidds/Makefile.am:
* plugins/subtitleformats/avidds/avidds.cc:
* plugins/subtitleformats/avidds/avidds.se-plugin.in:
Introduce new subtitle format Avid DS. Patch by Tomas Partl <eltomito>.
2013-08-15 kitone <[email protected]>
* plugins/actions/changeframerate/changeframerate.cc:
* plugins/actions/clipboard/clipboard.cc:
* plugins/actions/configurekeyboardshortcuts/configurekeyboardshortcuts.cc:
* plugins/actions/documentsnavigation/documentsnavigation.cc:
* plugins/actions/errorchecking/errorchecking.h:
* plugins/actions/errorchecking/errorcheckingplugin.cc:
* plugins/actions/findandreplace/findandreplace.cc:
* plugins/actions/keyframesmanagement/keyframesgenerator.cc:
* plugins/actions/keyframesmanagement/keyframesgeneratorusingframe.cc:
* plugins/actions/keyframesmanagement/mediadecoder.h:
* plugins/actions/preferences/videoplayerpage.h:
* plugins/actions/spellchecking/spellchecking.cc:
* plugins/actions/styleeditor/styleeditor.cc:
* plugins/actions/textcorrection/page.h:
* plugins/actions/textcorrection/patternspage.h:
* plugins/actions/timingfromplayer/timingfromplayer.cc:
* plugins/actions/wavefrommanagement/mediadecoder.h:
* plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc:
* plugins/subtitleformats/dcsubtitle/dcsubtitle.cc:
* plugins/subtitleformats/substationalpha/substationalpha.cc:
* src/encodings.cc:
* src/encodings.h:
* src/gui/application.cc:
* src/gui/automaticspellchecker.cc:
* src/gui/cellrenderercustom.h:
* src/gui/comboboxencoding.cc:
* src/gui/comboboxnewline.cc:
* src/gui/comboboxsubtitleformat.cc:
* src/gui/comboboxvideo.cc:
* src/gui/dialogcharactercodings.cc:
* src/gui/spinbuttontime.cc:
* src/gui/statusbar.cc:
* src/gui/treeviewextensionmanager.cc:
* src/spellchecker.cc:
* src/subtitleformatio.cc:
* src/subtitleview.cc:
* src/vp/gstplayer.cc:
* src/vp/videoplayer.cc:
* src/we/waveformeditor.cc:
* src/we/waveformrenderercairo.cc:
Fix warning on unused-variable, unused-value, unused-parameter.
2013-08-15 kitone <[email protected]>
* src/subtitleview.cc:
Fix missing header.
2013-08-15 kitone <[email protected]>
* plugins/actions/configurekeyboardshortcuts/configurekeyboardshortcuts.cc:
* plugins/actions/errorchecking/errorchecking.h:
* plugins/actions/preferences/preferencepage.h:
* plugins/actions/styleeditor/styleeditor.h:
* src/cfg.h:
* src/color.h:
* src/defaultcfg.h:
* src/encodings.h:
* src/extension.h:
* src/extensioninfo.h:
* src/extensionmanager.cc:
* src/gstreamer_utility.cc:
* src/gstreamer_utility.h:
* src/gtkmm_utility.h:
* src/gui/application.cc:
* src/gui/application.h:
* src/gui/automaticspellchecker.h:
* src/gui/cellrenderercustom.h:
* src/gui/comboboxencoding.h:
* src/gui/comboboxframerate.h:
* src/gui/comboboxnewline.h:
* src/gui/comboboxsubtitleformat.h:
* src/gui/comboboxvideo.h:
* src/gui/dialogcharactercodings.h:
* src/gui/dialogfilechooser.h:
* src/gui/dialogutility.h:
* src/gui/spinbuttontime.h:
* src/gui/statusbar.h:
* src/gui/textviewcell.h:
* src/gui/treeviewextensionmanager.h:
* src/isocodes.h:
* src/scriptinfo.h:
* src/stylemodel.h:
* src/subtitlemodel.h:
* src/subtitletime.h:
* src/subtitleview.h:
* src/timeutility.h:
* src/utility.h:
* src/vp/gstplayer.h:
* src/we/waveformeditor.h:
* src/widget_config_utility.h:
Only include gtkmm.h, glibmm.h headers.
2013-08-02 kitone <[email protected]>
* configure.in:
Switching back to development version.
2013-08-02 kitone <[email protected]>
* NEWS:
* configure.in:
Preparing 0.41.0 release.
2013-07-21 kitone <[email protected]>
* configure.in:
* plugins/actions/Makefile.am:
* plugins/actions/clipboard/Makefile.am:
* plugins/actions/clipboard/clipboard.cc:
* plugins/actions/clipboard/clipboard.se-plugin.in:
* share/menubar.xml:
Introduce the clipboard plugin. The 3 pillars of modern civilization. Patch by Tomas Partl <eltomito>.
2013-07-21 kitone <[email protected]>
* plugins/actions/plaintext/plaintext.cc:
Use the subtitleformat plaintext plugin.
2013-07-21 kitone <[email protected]>
* plugins/subtitleformats/adobeencoredvd/adobeencoredvd.h:
* plugins/subtitleformats/advancedsubstationalpha/advancedsubstationalpha.cc:
* plugins/subtitleformats/bitc/bitc.cc:
* plugins/subtitleformats/dcsubtitle/dcsubtitle.cc:
* plugins/subtitleformats/microdvd/microdvd.cc:
* plugins/subtitleformats/mpl2/mpl2.cc:
* plugins/subtitleformats/mpsub/mpsub.cc:
* plugins/subtitleformats/sami/sami.cc:
* plugins/subtitleformats/sbv/sbv.cc:
* plugins/subtitleformats/sprucestl/sprucestl.cc:
* plugins/subtitleformats/subrip/subrip.cc:
* plugins/subtitleformats/substationalpha/substationalpha.cc:
* plugins/subtitleformats/subtitleeditorproject/subtitleeditorproject.cc:
* plugins/subtitleformats/subviewer2/subviewer2.cc: