forked from SubtitleEdit/subtitleedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog.txt
1302 lines (1231 loc) · 66.7 KB
/
Changelog.txt
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
Subtitle Edit Changelog
3.4.9 (xth September 2015) BETA
* NEW:
* New subtitle formats (XIF xml, Jetsen, NCI Timed Roll Up Captions and more)
* Ukranian translation - thx Maximaximum
* Option to play a sound when new network message arrives - thx InCogNiTo124
* IMPROVED:
* Updated Portuguese translation - thx moob
* Updated Korean translation - thx domddol
* Updated French language file - thx JM GBT/xylographe
* Updated Hungarian translation - thx Zityi
* Updated Dutch translation - thx xylographe
* Updated German translation - thx xylographe
* Updated Romanian translation - thx Mircea
* Updated Polish translation - thx admas
* Updated Croatian OCR fix replace list - thx diomed & xylographe
* Generating of spectrogram is now *many* times faster - thx jdpurcell
* FFMPEG audio extraction will now prompt for audio file if more than one
* Format PAC now includes "Chinese simplified" - thx Man
* Merge lines with same text now ignores casing - thx Michel
* Now keeps blank lines inside SubRip texts
* Better Croatian/Serbian language detection - thx aaaxx/xylographe
* Sync tools now display info about what is applied (factor and -/+ adjustment)
* Plugins are now allowed to return another format than SubRip
* Better resizing of list view in "Bridge gaps in durations" - thx Ivandrofly
* Audio visualizer: don't generate wav if source is already wav - thx MM
* Audio visualizer: zoom with control key + scroll wheel - thx jdpurcell
* "Fix common errors" only shows English "i to I" fix for English language - Ivandrofly
* FIXED:
* Fixed tags accumulating texts in Sami format (regression from 3.4.8 refact) - thx domddol
* Fixed several issues with format "Cavena 890" - thx Victor
* Better handling of some zero width Unicode spaces - thx Krystian
* Spell check issue with multiple occurrences of same word in one subtitle - thx Krystian
* Rounding issue in formats with duration in output - thx Victor/Jamakmake
* Fixed possible crash in setting regarding VLC path - thx xylographe
* Fixed shortcut key in French replace dialog - thx Claude
* Go to first empty line now also focuses it - thx Jamakmake
* Clear overlap messages in main window after "New" - thx domddol
* Minor fix for split / timed text 1.0 - thx Krystian
* Issues with italic+bold tags in image export - thx marb99/aaaxx
* Possible crash in export to DOST
* Time codes in export to DOST - thx Christian
* Fixed crash when cleaning spectrogram temp images
* Audio visualizer: Fix crash when using mouse wheel without audio - thx jdpurcell
* Audio visualizer: Fix issues with HH:MM:SS:FF time code format - thx jdpurcell
* Audio visualizer: Stable end time when using HH:MM:SS:FF time code format - thx ingo
* Inline margin is now loaded/saved in SSA/ASS (can only be edited in source view)
* + Many minor fixes from Ivandrofly and xylographe
3.4.8 (2nd August 2015)
* NEW:
* Added support for Blu-ray TextST - thx Timo/ndjamena
* Added "Google it" to spell check dialog
* IMPROVED:
* Updated Chinese Simplified translation - thx Leon
* Updated Danish translation
* Updated Croatian OCR fix replace list - thx diomed & xylographe
* Remove text for HI - "Remove if text contains" now allows multiple items separated by comma or semicolon - thx Jesper
* Added fix for invalid time codes in Avid (bug in Avid) - thx Xenophon
* All Google urls now use https
* FIXED:
* Fixed "Discard" message in OCR when pressing "OK" (regression from 3.4.7) - thx Music Fan
* Fixed Blu-ray sup export with frame rate 23.976 (regression from 3.4.7) - thx Arjan
* Fixed remembered value from Tools -> Adjust all times (regression from 3.4.7) - thx GH
* Fixed GT by using https - thx Sopor
* Fixed crash after using "Split" - thx Krystian
* Fix for large data inside "Sami" files - thx hhgyu
* Fix for font tags without quote/apos in "Advanced Substation Alpha" - thx hhgyu
* Now comboboxes from "Remove text for HI " should save/restore last used value - thx Jesper
* Fixed several issues with format "CIP" output - thx Victor
* + Many minor fixes from Ivandrofly and xylographe
3.4.7 (22th July 2015)
* NEW:
* Added (some) read support for PNS files
* Added (some) read support for Timeline files
* Added Croatian OCRFixReplaceList list [by diomed & xylographe]
* Added Serbian OCRFixReplaceList
* IMPROVED:
* PAC now supports write of Chinese
* Updated Czech translation - thx Trottel
* Updated Portuguese translation - thx moob
* Updated Hungarian translation - thx Jozo
* Updated Korean translation - thx domddol
* Updated Finnish translation - thx Teijo S.
* Updated Basque translation - thx Xabier
* Updated Romanian translation - thx Mircea
* Updated Brazil translation - thx Igor
* Updated Croatian translation - thx diomed
* Updated many spell check dictionaries - thx ivandrofly
* Added drag-n-drop support in waveform batch generate - thx ThiefMaster
* Added drag-n-drop support for directories in "Batch convert" - thx ivandrofly
* Persistent find history - thx vmb
* Show friendly message if user tries to load JPG file - thx ivandrofly
* Show friendly message if user tries to load a file containing only binary zeroes
* Export to BDN XML/PNG now also supports 8-bit png files - thx franontanaya
* Export to Blu-ray sup now also supports full frame - thx oallouch
* Added two new fields for EBU regarding programme start time
* FIXED:
* Fixed wrong styles in SSA - thx alundpeggybundy
* Fixed multiple blank lines added after editing SSA/ASS properties
* Fix in "Change casing" regarding "don't" - thx Chamallow
* Fixed missing last blank "Sami" end tag - thx domddol
* Fixed possible crash when importing vobsub in mkv files
* Fixed extra space after remove text for HI - thx ivandrofly/sbraz
* Minor fix for "Unknown subtitle format 42" - thx Carles
* Minor fix for italic in auto-translate - thx Shahrukh
* Fixed bug in "Remove text for HI" regarding italic/interjections - thx Thunderbolt8
* Fixed bug in "Remove text for HI" regarding quotes - thx Thunderbolt8
* Export to images: Some fixes for alignment + full frame
* Don't load video when canceling mkv import - thx Andreas
* Avoid crash in "Plugins" (due to culture specific decimal separator) - thx marb99
* Fixed bug reading YouTube sbv files - thx msl521
* Fixed support for Tesseract 3.03RC - thx YamashitaRen
* Fixed dead networking service (for networking sessions)
* Fix for italic support in span in TTML 1.0 - thx Mampfi
* Fix for (possible) "culture is not supported" crash when changing language - thx XuTpuK
* Fixed bug in writing "Subtitle Editor Project" format - thx Christina
* Always re-number in batch convert - thx Ede123
* Fixed DCinema interop custom language setting - thx F-5
* Fixed some bugs in Karaoke/typewriter effect regarding tags - thx domddol
* + Many minor fixes from Ivandrofly and xylographe
3.4.6 (29th March 2015)
* NEW:
* Added new subtitle formats (Sami YouTube and more)
* Added waveform text size/bold to UI
* Added filter to "Batch convert"
* Added new shortcut: Copy text from original to current - thx megasmile
* Added export functionality to "Statistics" window - thx Ivandrofly
* Added custom shortcut for toggle textbox auto-duration - thx Tony
* Added full frame option for export of FAB image script
* Added TGA output to export of images - thx Øjvind
* Added left/right margin to export of images - thx Øjvind
* Support for VobSub/Blu-ray sup input in command line convert - thx lafe
* IMPROVED:
* Updated French translation - thx JM GBT
* Updated Czech translation - thx Trottel
* Updated Korean translation - thx domddol
* Updated Brazilian Portuguese translation - thx Igor
* Updated German/French translations - thx xylographe
* Updated Polish translation - thx admas
* Updated Portuguese translation - thx moob
* Taskbar icon progress info for batch-convert/dvd-rip/matroska+TS-import
* Improved speed for "Auto-balance/unbreak lines" - thx Ivandrofly
* Improved speed for "Multiple replace"
* FIXED:
* Fixed bugs in ASS/SSA loading - thx kotuwa
* Fixed bug in spell check with auto change casing of http - thx Ivandrofly
* Change language in "Spell check" dialog now loads correct language lists - thx Sami
* Fixed missing rule for "Fix invalid italic tags" - thx Ivandrofly
* Fixed possible freeze in video player text - thx Mafu
* Fixed crash in "Merge lines with same time code" - thx Miguel
* Frame rate reading fix for format "Timed Text" - thx SwK
* Keep line style when converting from "Timed Text" to ASS - thx SwK
* Fixed Alt+Drag issue in waveform - thx Leon
* Fixed selected+unfocused rows for RTL in list view - thx gold
* Disabled native video player subtitles in MPlayer - thx larvanitis
* Handle possible crash in "Batch convert" - thx Ivandrofly
* "Multiple replace" remove line if only tag remains - thx Ivandrofly
* Some fixes for "unknown subtitle 17" - thx Pedro
* "Timed Text" now keeps separate text element div tags separate - thx Krystian
* Some fixes for .chk files - thx Mark
* Fixed bug in reading ASS/SSA from Matroska files
* Can now read EBU STL files with only one line - thx Stefan
* Fixed handling of bad Blu-ray sup files - thx The Snyper
* Fixed typo in Brazilian translation - thx Rubens
* Fixed bug in mplayer2 subtitle format - thx Maciek
* Fixed bug preventing compare from working in "History" window - thx xylographe
* Fix for Advanced Substation Alpha loading - thx Vic
* Fix for unwanted play/pause by click in list view after hiding VLC - thx Ivandrofly
* + Many minor fixes from Ivandrofly and xylographe
3.4.5 (4th January 2015)
* NEW:
* Basic read support for Ayato + Unipac format + unknown format
* Import of DCinema subtitles from MXF files
* Preview with background image for image export - thx Christophe
* IMPROVED:
* Updated Czech translation - thx Trottel
* Batch convert now remembers format - thx MM
* Remove text for HI: Remove text before colon only if uppercase is now default - thx XhmikosR
* Waveform text should now be easier to read + borders should also be easier to see
* Allow for custom res for FCP-xml-image export - thx Ben
* Import plain text now remembers split char - thx Yash
* FIXED:
* Waveform/spectrogram was out of sync for mkv files
* Crash when reading multi-image Blu-ray sup files
* Export to images made weird "tails" for some letters/fonts - thx rebawest
* Possible bug when saving TTML files - thx Krystian
* Bug regarding "Remove dash in beginning of lines" - thx Robert
* Correct version number in Slovenian translation
* Fix for missed char after new line in PAC w16 - thx Max
* Fixed some bugs in split subtitle - thx kempniu
* Fixed mkv/mks support in "Batch convert" - thx Juan
* Fixed minor bug in Find-next - thx amerzone
* Fixed minor bug in Replace in source view
* Some fixes for "Remove text for HI" - thx Thunderbolt8
* Fix for "Split long lines" - thx XhmikosR
* Some fixes in waveform regarding lines with empty time codes
* "Multiple replace" lines left empty are now removed
3.4.4 (28th November 2014)
* NEW:
* Added export to EDL format + png (for Adobe Premiere) - thx Demian
* Added "forced" option in export for Blu-ray/VobSub/BDN-xml
* Added "/targetfps" parameter to command line conversion
* IMPROVED:
* Updated French translation - thx JM GBT
* Updated Brazilian Portuguese translation - thx Igor
* Updated Mexican translation - thx paconaranjo
* Updated Czech translation - thx Trottel
* Updated Polish translation - thx Admas
* Updated Italian translation - thx SilverDrake
* Updated Chinese Simplified translation - thx larsenlouis/Leon
* Updated Korean translation - thx domddol
* Updated Slovenian translation - thx Hawk
* Updated Portuguese translation - thx moob
* Updated German translation - thx Siegwarth
* Export to images now remembers shadow width
* Display progress when reading Transport Stream files
* FIXED:
* Compare window works again now - thx SimplyTheBOSS
* Changed duration via Waveform start/end is shown again - thx Quetsbeek/Mirko
* "Measurement converter" works again now - thx Quetsbeek
* Fixed possible crash when saving as "EBU STL" - thx MartinDelille
* Fixed encoding problems in online translate - thx jaroslav
* Don't merge short lines with music symbols - thx XhmikosR
* Bug in "Fix common OCR errors" regarding URL/uppercase - thx XhmikosR
* Fixed center alignment bug in export to images
* Some fixes for "Remove text for HI" - thx Thunderbolt8
* Fixed possible crash when working with SSA/ASS files
* Fixes for ALT + drag in waveform - thx Leon
* Minor fix for "unknown subtitle importer" (regarding tab)
* Fix for dialog in "auto break line" - thx XhmikosR
* Fixed crash in ts parser - thx Marilson
* Fix for "remove dash" in "Fix common errors" - thx XhmikosR
* Fixed bug when loading "multiple replace lists" - thx Ivandrofly
3.4.3 (11th October 2014)
* NEW:
* Added Thai translation - thx Bonfelder Straße
* MPC-HC can be now used as video player
* Choosing of output time code format in Timed Text 1.0 properties
* IMPROVED:
* Updated French translation - thx JM GBT
* Updated Czech translation - thx Trottel
* Updated Korean translation - thx domddol
* Updated Turkish translation - thx Kaan
* Updated Romanian translation - thx Mircea
* OCR fix replace list now has a "user" file
* Names etc list now has a "user" file
* NHunspell updated to latest version - thx alfaproject
* Improved "Fix invalid italic tags"
* Allows for "hh:mm:ss.ms" input in Timed Text 1.0
* Better error messages when saving a file fails - thx Andrew
* Some performance improvements
* Fixed some typos + a few cases of incorrect casing
* FIXED:
* Fixed subtitle drag-n-drop bug - thx Andrew
* Fixed crash in TS parser (reading AdaptationField) - thx SimplyTheBOSS
* Fixed large memory leak in "Fix common errors" - thx XhmikosR
* Fixed bug in "frame-up-down-box" - thx Markus
* Fixed sometimes missing color in Blu-ray sup files - thx minhjirachi
* Fixed bug in undo when starting with no subtitle - thx Siegwarth
* Fixed font end tag in SSA/ASS - thx Milad
* Fixed bug in "Add missing dashes" + "remove unneeded spaces" - thx Andrew
* Fixed bug in "Fix missing spaces"
* Version number in Romanian translation so now it's possible to use it
* Removed batch-convert prompt asking for PAC encoding
* Fixed possible crash when opening a video file
* Fixed auto-br issue when split was made at a blank at "max length + 1" - thx XhmikosR
* Fixed crash when last used spelling dictionary was deleted
* Fixed links for French, Polish, and Romanian spell check dictionaries
3.4.2 (7th September 2014)
* NEW:
* Added new subtitle format (200+ formats supported)
* Added some read support for CHK files
* Added "Plain text" to target format in "Batch convert" - thx Leon
* Added "Bold" checkbox to subtitle preview settings in video player
* Added new shortcuts
* IMPROVED:
* Updated Dutch translation - thx Quetsbeek
* Updated Romanian translation - thx Mircea
* Updated Portuguese translation - thx moob
* Updated Brazilian translation - thx Igor
* Updated German translation - thx Siegwarth
* Updated Korean translation - thx domddol
* Updated Polish translation - thx admas
* Multiple replace - moving rules up/down now has effect instantly
* Allow "Merge selected lines" for more lines
* Save does not create a new hard link - thx xylographe/XhmikosR
* Minor performance improvements
* Added ".mxf" to list of known video formats - thx Haroldo
* FIXED:
* Reverted "Frame rate conversion fix" from 3.4.1
* Fixed "Split line" button appear wrongly - thx Quetsbeek
* Changes to interjections now work instantly
* Detection of SSA/ASS tags in remove text for HI - thx Thunderbolt8
* Minor bug in "Fix missing period" - thx Joel
* It's now possible to turn "Check for updates" off
* Fixed issue with end-of-italics and SSA/ASS - thx John
* Fixed issue with "..." in "Fix common OCR errors" - thx XhmikosR
* Fixed issue regarding "Fix start with uppercase after paragraph" - thx XhmikosR
* Fixed PAC reading (regarding W16)
* Fixed PAC reading (stopped before end of file in some files) - thx Massimo
* Fixed bad XML tag in Spanish OCR fix list - thx DavidGDFC
* Fixed "MicroDVD" sub compare - thx SimplyTheBOSS
* Fixed regular expression replace in main window - thx ivandrofly
* Fixed bug in "Fix invalid italic tags" - thx XhmikosR
* Can now load Norwegian Tesseract dictionary - thx Stian
3.4.1 (8th August 2014)
* NEW:
* Added new subtitle formats
* Can now import new time codes into OCR window - thx Music Fan
* IMPROVED:
* Improved "Fix short display times" - thx Krystian
* Split line improvement regarding italic/dialog - thx moob
* Updated Chinese Traditional translation - thx BR
* Added ".avs" to list of known video formats - thx Peter
* Avid STL format detection improved
* Allow adding words to user dictionary with a length of 1 - thx Betsy25
* Spell check now has better suggestions for one letter words - thx Milad
* FIXED:
* Fixed crash in Visual Sync when using VLC as video player
* Export to image based formats now uses font from SSA/ASS - thx mariner
* Do not lock explorer when dropping files (for OCR) in Subtitle Edit's main list view - thx Jar
* Fixed dialog issue in "auto-break lines" - thx fred
* Frame rate conversion - fix for time based subs
* Fixed issue regarding showing current vs original texts on previews - thx Krystian
* Fixed bug in break long lines - thx moob
* Fixed bug in export/boxing - thx mood
* Minor syntax coloring fix regarding 2+ lines - thx Joel
* "CSV 3" format should not load "SPRUCE STL" format - thx Adrian
* Added info about chars/sec to Statistics - thx Krystian
* Remember "Auto fix names where only casing differ" - thx Betsy25
* SCC format multi line italics now works - thx Shawn
3.4.0 (13th July 2014)
* NEW:
* Switched to .NET Framework 4.0 (from .NET Framework 2.0)
* Runs 64-bit on 64-bit operating systems (requires 64-bit codecs / player!)
* New subtitle formats
* New shortcuts
* Export to image based formats can now do boxing
* Export to image based formats, added 2k resolutions - thx Joseph
* New tool "Merge lines with same text"
* Spell check undo
* Check for updates
* IMPROVED:
* Updated Spanish (Mexico) translation - thx pakitonaranjo
* Updated French translation - thx JM GBT
* Updated Portuguese translation - thx moob
* Updated Korean translation - thx domddol
* Updated German translation - thx Siegwarth
* Updated Polish translation - thx Admas
* Updated Russian translation - thx Leserg
* Updated Czech translation - thx Trottel
* Updated French translation - thx JM GBT
* Updated Bulgarian translation updated - thx Iavor
* Updated Dutch translation - thx Quetsbeek + minouhse
* Updated Hungarian translation - thx Zityi
* Updated Italian translation - thx SilverDrake
* Updated Finnish translation - thx Teijo
* Updated Romanian translation - thx Mircea
* Updated Swedish translation - thx Ted
* Updated Chinese translation - thx Leon
* Updated Greek translation - thx ΑΚΗΣ
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Updated Basque translation - thx Xabier
* Export to image based format now remembers most settings
* Always close SAMI tags (except when end time=next start time)
* Merge selected lines in original - better handling of empty line
* DCinema interop - better use of "Effect" - thx gena
* Drag & drop support for subtitle comparer - thx ivandrofly
* Better time division in "Split long lines" - thx Joel
* Better splitting of dialogs in "Split long lines" - thx Joel
* Word lists improved - thx ivandrofly
* Ctrl+I now works better in text box - thx rebawest
* FIXED:
* OCR via "image compare" now works again
* Fixed several bugs regarding Blu-ray sup export - thx mariner
* Fixed "Bridge gap in duration" when working with SSA/ASS
* Don't lock "settings.xml" when Subtitle Edit starts/exits - thx Doigt
* Fixed crash when exporting to DOST - thx Nguyen Hoang
* Fixed crash in "Fix short display times" - thx ivandrofly
* Fixed bug in batch convert regarding frame rate - thx Rasmus
* Minor fixes for auto-wrap while typing - thx Andrew
* Fixed possible crash in main window (typo in history timer)
* Fixed cut text in image export with right-align
* Fixed crash when doing OCR in batch
* Several fixes for "Fix common OCR errors" - thx matidio/Joel
* Fixed crash related to bad font tags in SSA/ASS - thx hhgyu
* Fixed error converting from DCinema interop to SMPTE
* Load last line if blank when loading SubRip files - thx Leon
* Spell check auto-fix names now actually works - thx Martin
3.3.15 (13th April 2014)
* NEW:
* Added new subtitle formats (200+ formats supported!)
* Export to VobSub option "Anti-aliasing with transparency" - thx CoOoL_BoY/moob
* Added ZPosition setting for DCinema interop - thx Joseph
* Added fade up/down to DCinema interop properties - thx Raul
* Added shortcut for Tools -> "Split long lines" - thx John
* Added shortcut for Sync -> "Change frame rate" - thx Alfonso
* Added setting regarding "Fix short display times" - thx S1l3nc0r
* Added an "Update all" button for the plugin window
* Added UI setting for path to VLC portable
* Added export to DCinema interop/png - thx Joseph
* IMPROVED:
* Updated French translation - thx JM GBT
* Updated Dutch translation - thx Quetsbeek
* Updated Portuguese translation - thx moob
* Updated Korean translation - thx domddol
* Updated Brazilian Portuguese translation - thx Igor
* Updated Polish translation - thx Admas
* Updated Argentinian Spanish translation - thx walterh78
* Updated Spanish (Mexico) translation - thx pakitonaranjo
* HTML encoding of SAMI files is now again false by default
* Better reading of time codes of Blu-ray sup in mkv - thx Rach78
* FIXED:
* Fixed VobSub writing compatibility with gpac/mp4box + handbrake - thx Ryan
* Minor fix for ass import from Matroska (mkv) files
* Some fixes for move word up/down - thx rebawest
* Delete custom export format now works - thx Leon
* Possible crash in OCR window - thx grfilho
* DCinema SMPTE sometimes generated illegal frame numbers - thx knut
* Fixed possible crash when converting PAC to TTML - thx Dan
* Fixed memory leak when running OCR via Tesseract
* Fixed possible error/crash when loading bad time codes - thx Jucá
3.3.14 (23rd February 2014)
* NEW:
* Added Slovenian translation - thx Hawk
* IMPROVED:
* Updated Korean translation - thx domddol
* Updated Dutch translation - thx Quetsbeek
* Updated Bulgarian translation - thx Iavor
* Updated German translation - thx Siegwarth
* Added Serbo-Croatian letter "đ" to PAC file format - thx nenad
* Export to custom text format - Added "Delete" button - thx Leon
* FIXED:
* Fixed crash in spell check - thx e257496
* Fixed issue where it was not possible to move border in waveform
* Fixed issue regarding alignment tags (like {\an8}) in Json - thx zatch
* Do not auto-break dialogs - thx pson
* Fix bug in "Fix OCR errors" regarding "...i" - thx another-user
* Fixed bug in "Multiple replace" regarding remembering old rules - thx Alberto
3.3.13 (8th February 2014)
* NEW:
* Compare window now has an option to "ignore line breaks" - thx Krystian
* Compare window now has a "text change percent" - thx Krystian
* Bridge gap in durations now have minimum display time - thx Krystian
* New option for "Focus on mouse-over" for waveform/spectrogram - thx lansing
* New setting "Gap between subtitles"
* New subtitle formats
* French rules regarding "L" and apostrophe in spell check + OCR fix - thx René
* "Fix common errors" toolbar button - thx Betsy25
* IMPROVED:
* Updated Korean translation - thx domddol
* Updated Chinese translation - thx Leon
* Updated German translation - thx Siegwarth
* Updated Dutch translation - thx Quetsbeek
* Updated Brazilian Portuguese translation - thx Igor Rücker
* Updated Portuguese translation - thx moob
* Updated Polish translation - thx Admas
* Updated Czech translation - thx Trottel
* Updated Basque translation - thx Xabier
* Updated Italian translation - thx SilverDrake
* Many settings now remembered from "Export to image based format"
* Dropping a video file on empty waveform will now start extraction of waveform - thx Leon
* Better reading of SCC files
* Better handling of apostrophe in spell check - thx Betsy25
* Better grouping of general settings in options
* Added setting for HTML encoding text in SAMI files (default on)
* Export to DOST, bottom margin + no spaces in file names - thx Andreas
* Save Unicode to ANSI, warning + also auto converts some symbols - thx SimplyTheBOSS
* FIXED:
* Waveform/spectrogram: Moving start/end with ALT down now always works - thx Leon
* Waveform/spectrogram: Move border left/right now also always works even
when it's near next/prev border
* Fixed transparent background in "OCR window" regarding transport streams
* Now Vietnamese translation is actually shown in the "Choose language" dialog
* Timed Text - List view context menu "Set language" had wrong text
* Subtitle preview can now show both font and italic for same text - thx Drago
* Fixed bug decoding DVB sub - thx aMvEL
* Fixed possible crash in OCR window (if no language is available)
* "OCR window" - Norwegian Bokmål now works as spell check language
* Disabled saving of empty files
* Fixed bug in centering of exported images - thx minhjirachi
* Fixed crash in Spell check - Get dictionaries (if no internet connection) - thx Krystian
* Fixed (sometimes) missing highlighting of word in spell check dialog - thx Betsy25
* Fixed bug where textbox lost connection with subtitle after "Replace" - thx HodoreeSubs
* Fixed issue in OCR regarding expand selection - thx Thomas
* Reset loaded image compare bitmaps after creating new OCR image set
* Freeze fix for "spt" subtitle format - thx Leif
* Fix a bug in "Fix invalid italic tags" - thx rebawest
* Fix a bug in waveform regarding ALT + mouse end/start move in frame mode - thx rebawest
3.3.12 (12th January 2014)
* NEW:
* Added initial support for importing DVB subtitles from transport streams
* Added "File -> Import images"
* Added "Tools -> Merge lines with same text"
* Importing from plain text file, "One line is one subtitle" now has a
"Line break" option - thx Adrian
* Added XML subtitle format "FLVCoreCuePoints" - thx Jon
* Added some support for fxpxml 1.3
* Added link to Sinhala spell check dictionary
* IMPROVED:
* Updated Portuguese translation - thx moob
* Updated Vietnamese translation - thx everytime
* Updated Basque translation - thx Xabier
* Updated Korean translation - thx domddol
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Updated Croatian translation - thx Jozo Marić
* Now remembers RTL mode - thx FTABoy
* Export images from DVD now only shows relevant options
* Fix short durations will now see if line can start earlier - thx Daniel
* "File -> Import plain text" can now import from multiple files
* "Save as..." now remembers subtitle format
* Now detects VobSub/Blu-ray sup with wrong extension when opening a file
* Now gives nice error message when opening idx, rar or zip files
* French rules regarding spaces/!?:; in "Fix common errors" - thx René
* Compare window, now left list view will also sync - thx Krystian
* FIXED:
* Fixed bug in "Fix common errors: Remove hyphen" - thx honeybunny
* Fixed bug in "Remove text for HI" issue - thx cipry15
* Fixed bug in "Auto br" - thx XhmikosR
* Split up D-Cinema SMTP to 2007 and 2010 versions - thx Knut
* Missing outline/shadow in export images - thx minhjirachi
* Fixed some missing characters in PAC format - thx Adrian
* Fixed some bugs in "YouTube Transcript" format - thx tony
* Fixed bug in reading of end-tags in ASS - thx Null
* "Delete" context menu in text box did not work - thx ivandrofly
3.3.11 (6th December 2013)
* NEW:
* Added "line height" to image export
* Added Vietnamese translation - thx everytime
* Added custom shortcut for vertical zoom out of waveform
* IMPROVED:
* Updated Italian translation - thx SilverDrake
* Updated German translation - thx Christoph
* Updated Bulgarian translation - thx Iavor
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Added .m4a file type to audio file types
* Added Chinese Traditional to Tesseract OCR dictionary list
* Added Polish spelling dictionary to download list
* "Adjust display durations" now allows down to 75% - thx Dennis
* "Restore auto-backup" window now displays number of bytes
* Now remembers last "Change casing" choice - thx anil
* FIXED:
* Fixed audio waveform so it works better with VLC
* Fixed spectrogram sync
* Fixed spectrogram so it works with FFmpeg
* Dragging line in waveform in frames mode keeps duration - thx Adrian
* Fixed Slovak spell check dictionary link
* Status text after re-calculating display times fixed - thx Dennis
* Do not leave empty files in temp folder after extracting audio
* Export to image based formats: text in font tags now also gets shadow
* Some fixes for ".lrc" format - thx sialivi
3.3.10 (22nd November 2013)
* NEW:
* Added new subtitle formats
* Added option to control border-marker-hit-size in audio waveform
* Added option regarding spell check and single letters
* Ctrl+Backspace in text box now deletes word to the left - thx Ivandrofly
* Can now import FCP+image
* IMPROVED:
* Updated Catalan translation - thx Juansa
* Updated Dutch translation - thx Herman
* Updated German translation - thx Siegwarth
* Updated Portuguese translation - thx moob
* OCR max. error% is now saved for Blu-ray - thx Zoltán
* More default values for SSA/ASS in options
* Added split long lines to "Batch convert" - thx menes
* Added support for multiple languages in Timed Text / DFXP - thx Laszlo
* Custom shortcuts can now use "Home" + "Back" (backspace) keys
* Added shortcut for "Insert after" in text box (default is Alt+Insert)
* Audio extraction can now be done with FFmpeg (see Options -> Settings)
* Italics/{\an8} now works for "SoftNi" format - thx Adrian
* Add audio waveform - mkv/mp4 will ask for track if more than 1 (VLC only)
* FIXED:
* F11 (Set start time) sometimes kept duration - thx Rinus/Quetsbeek
* Cavana 890 now works with Hebrew again - thx Yaniv
* Crash on bad images when using OCR via Tesseract + Modi - thx Barry
* Fix regarding italics in remove text for HI - thx cipry15
* Now allows HTML tags in SAMI - thx estima
* Now possible to choose en-GB spell check in OCR window - thx Paul
* "Insert sub after current line" no longer inserts before current line
* Batch convert now works with more CC formats
* Import sub with matching time codes in OCR window
now works with other formats than SRT - thx osgZach
* Fix for multi-line italics in Spruce/DVD Studio pro - thx Damian
* Fixed bad link for Spanish spell check dictionary - thx Nils
* Minor fix for TSB4 format - thx Leart
* Audio mkv delays now might work when creating waveform
* Add to "Names/noise list" in spell check now uses word in textbox
(and not the original word)
* Alignment now works when exporting to sub/idx - thx adrianbergonzi
* Changed VLC audio extraction parameters so it works better with Subtitle Edit
* Fixed bug in "Find double words" - thx Matt
* Command line convert does not prompt for PAC code page - thx Ethan
3.3.9 (19th October 2013)
* NEW:
* Added new subtitle formats
* Edit -> Modify selection
* Shortcuts keys Ctrl+up/down now move contents in
"Multi-Replace" list view - thx Ivandrofly
* IMPROVED:
* Updated Czech translation - thx Trottel
* Updated Russian translation - thx Sergey
* Updated Brazilian Portuguese translation - thx Igor
* Updated German translation - thx Siegwarth
* Updated Bulgarian translation - thx Iavor
* Updated word lists - thx Siegwarth
* Minor improvements for EBU open subtitling
* Added "Allow overlap in waveform" as setting
* Large "Image compare" OCR databases now loads much faster - thx Zoltan
* Can now read Russian in Cavena 890
* Waveform generation now uses current audio track (VLC only atm)
* Open original subtitle now allows EBU/890/PAC formats - thx Andreas
* "DCinema SMPTE" format is now valid (uses xsd) - thx Wolfgang
* Improved italic fix - thx XhmikosR
* NCI CAPT format can now also read version 1.2 files
* Pageup/Pagedown can now be used in custom shortcuts
* FIXED:
* Crash in export of images - thx Eros UK
* Crash in OCR via "Image compare" with large image databases - thx Zoltan
* Improved baseline in export of images - thx THXTEX
* Fixed duration (in some players) in Blu-ray sup export - thx THXTEX
* Fixed bug in SSA color - thx Stuart
* Fixed some letters in Cavena 890 format - thx Calle
* Some fixes/improvements for "Unknown subtitle format importer"
* Fixed possible crash in TMPlayer format
* Read of YouTube Annotations time codes without "hour" - thx Joshu
* Fixed crash in spell check - thx Ruud
* Fixed Serbian letters in PAC format - thx Arran
* Can now work with negative time codes in SubRip - thx Salad
* Loading styles when importing SSA/ASS from Matroska files - thx the hulk/Scott
3.3.8 (1st September 2013)
* NEW:
* Added Hungarian translation - thx Zityi
* Added a few new subtitle formats
* Added "Tools -> Sort by -> Style" - thx Mike
* When moving start/end in waveform and holding down the ALT key will now
move border if the closest subtitle is less than 500 ms away - thx Leon
* IMPROVED:
* Updated Spanish translation - thx pakitonaranjo
* Updated Polish translation - thx Admas
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Updated Italian translation - thx Marco
* Updated Simplified Chinese translation - thx Leon
* Updated German translation - thx Siegwarth
* Added support for the Māori language in PAC - thx Mark
* Allow EBU STL with 23/29 fps - thx Raul/Antonio
* Minor improvements to WebVTT + added WebVTT with line# - thx Benoît
* Loading unknown subtitles now might work via generic parser
* Ctrl+V now allows import of up to 2000 lines (old limit was 500) - thx Leon
* EBU: Added "Standard Display Code" ("Open subtitling" or "Level 1/2 teletext")
* FIXED:
* Fix common errors: Fixed two bugs regarding Spanish "¿¡ !?" - thx Mike
* Bug in getting result from plugin - thx Herman
* Fix in "Unknown format 64" - thx Mark
* Some fixes for SCC - thx Johan
* Converting SSA <--> ASS now keeps most inline styles - thx Mike
* Fix common errors: In "Remove empty lines" at top (in paragraph) the
before/after text was switched - thx Andreas
* Fixed some language tags - thx Marco/Leon
* Fixed problem in "Fix italic tags" - thx Mike
* Fixed bugs in "Apply duration limits" - thx Mike
* When typing "&" Subtitle Edit would show "_" in the list view - thx XhmikosR
* Allow regex search in empty string - thx vmb
* Fixed crash when loading sub from DVD - thx Cristiano
* Export to images now uses font size correctly
* Export to images can now render Arabic (use "Simple rendering")
* Bug in reading end time code in Gpac ttxt format - thx noMnoMnoM
* Better OCR of some yellow fonts - thx Albert
3.3.7 (3rd August 2013)
* NEW:
* Added Spanish (Mexico) translation - thx paconaranjo
* Added a few new subtitle formats
* IMPROVED:
* Updated Portuguese translation - thx moob
* Updated Basque translation - thx Xabier Aramendi
* Updated Dutch translation - thx Herman
* Updated Czech translation - thx Trottel
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Updated German translation - thx Siegwarth
* Moving subtitles in waveform will not allow overlap (unless
you hold down the shift key) - thx Leon
* Added "regular expression" option to ocr_replace_list - thx paconaranjo
* Waveform generator - pauses video before starting - thx fox
* Export to Blu-ray settings now saved - thx Minh
* Do not load plugins + subtitle formats when opening a sub - thx Orr
* Fixed slow loading of regular expressions in "Multiple replace" - thx TeDDy
* When opening an invalid Timed Text file an improved error will now be shown
* A "*" will now be shown in the title bar if a subtitle has been changed
* FIXED:
* Fixed crash/bugs in MicroDVD format - thx klm
* Fixed annoying crash when loading a subtitle from "source view"
* OCR - Change OCR fix language when changing spell check dictionary
* Fixed Hebrew in PAC files - thx Yaniv
* Fixed minor language detection bug regarding Korean - thx Hoyt
* Fixed baseline horizontal alignment in Export to Blu-ray sup - thx THXTEX
* Fixed multi line color tags when outputting DCinema - thx lillian
* Fixed "line-breaks" in CSV formats
* Fixed dead spell check download links (no more OpenOffice links)
* Some fixes for DCinema SMTP - thx Andrew
* Fixed bug regarding decoding å to å - thx Jesper
3.3.6 (15th June 2013)
* NEW:
* Export to DOST format (image based) - thx Andreas
* IMPROVED:
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Waveform generator - pauses video before starting - thx fox
* FIXED:
* "Select current subtitle while playing" now works again
* SPUMUX + FCP image export now uses 8bpp png images
* SUP export (from OCR window) no longer crashes - thx cvut.cz
3.3.5 (8th June 2013)
* NEW:
* Added Chinese Traditional - thx BAWAN
* Added some new subtitle formats
* IMPROVED:
* Updated Basque translation - thx Xabier Aramendi
* Updated Dutch translation - thx Quetsbeek
* Support for color, size and font name in MicroDVD - thx SimlyTheBOSS
* Start OCR if SRT file contains only image file names
* Added Turkish letters to PAC import/export - thx aydngur
* Updated NHunspell to 1.1.1.0 - thx tmaierhofer
* Compare now show filename of current subtitle (if available)
* Can now download dictionaries directly from spell check + OCR windows
* FIXED:
* Blu-ray sup image decoding no longer skips color 0 - thx matidio
* Better center alignment of second line in image export - thx George
* Subtitle timing in preview is now much more precise - thx Betsy25
* Split of subtitle now keep styles - thx Kyousuke
* Some output changes for Rhozet Marmonic - thx Itai
* Installer version can now list installed plugins
* Fixed bug in DCinema interop format regarding LoadFont URI - thx Radoslav
* Can now save " " (space) in multiple replace settings - thx dandomina
* Italian translation now active again (broken in 3.3.4)
* Clear suggestions in OCR now actually works
* OCR via image compare: Fixed correct index for guesses - thx Erik
* Fixed a bug in SSA format - thx Dave
* Fixed bug in "Fix uppercase I in lowercase words" - thx Alberto
3.3.4 (9th April 2013)
* NEW:
* Added a few new subtitle formats
* Serbian translation (Latin) - thx Misa Forger
* IMPROVED:
* Updated Polish translation - thx admas
* Updated Portuguese translation - thx moob
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Updated Italian translation - thx Johnny B. Goode
* DVD ripping slightly faster now
* Improvements to change/fix casing regarding music symbols - thx DrJackson
* "Remove text for HI" colors suspicious lines - thx Alice
* FIXED:
* Fixed plugin loader so it also works with installer version - thx Quetsbeek
* Fix bug in "Remove text for HI" - thx Alice
* Improvements/fixes in "Batch convert" - thx menes
* "Batch convert" would only adjust time if ms was non-zero - thx Arnaud
* Fixed resize bug in "Set sync point" - thx gege
* Join/Split (advanced) now keep original subtitle format/style - thx Frisbee
3.3.3 (19th March 2013)
* NEW:
* Added a few new subtitle formats
* Added "return-from-fullscreen" button to fullscreen player - thx fox/Leszek
* Added Export to 3D Half-top/bottom - thx r0lZ
* IMPROVED:
* Fix overlapping display times now smarter
* Updated Basque translation - thx Xabier Aramendi
* Updated French translation - thx JM GBT
* Fix missing spaces now works better with italics - thx DrJackson
* Added EBU alignment tags ({\an1}..{\an9})
* Added "auto balance lines" to "Batch convert" - thx hacker
* Added scan folder + some mkv support to "Batch convert"
* Export to image based formats: bold tag support - thx moob
* Updated French OCR replace list - thx Bruno
* Fixed export to 3D Side-by-side to working 3D Half-side-by-side - thx r0lZ
* If no "Find" has been made, F3 will show "Find" window - thx fox
* FIXED:
* After closing "SSA/ASS style designer", first style was applied
to all lines - thx vicgol/Xabier/Mike
* "Set start time" (F11) now does not adjust the endtime - thx fox
* Fix overlapping display times now checks minimum duration
(and not only optimal duration) - thx Frisbee
* SSA/ASS - allow left margin up to 250 - thx vicgol
* Allow key "space" in list view to toggle play/pause of video - thx Jakov
* Allow key "space" in video fullscreen to toggle play/pause - thx fox
* Fixed bug in "Fix uppercase ‘i’ inside lowercase word" - thx Kurt
3.3.2 (23 February 2013)
* NEW:
* Added a few new subtitle formats
* Italian translation - thx Johnny B. Goode
* Turkish translation - thx Çağdaş
* Can now export to Blu-ray sup/VobSub from OCR window
* Can save to VobSub from DVDRip "Choose language" window
* IMPROVED:
* OCR: MUCH better OCR of italics when using Tesseract
* OCR: Added some detection of music symbols when using Tesseract
* Waveform now performs better when many lines are selected
* Waveform now has focused rectangle
* Network mode more stable (auto-restart)
* Updated Czech translation - thx Trottel
* Updated German translation - thx Christoph Kitsche
* Updated Portuguese translation - thx moob
* Remembers size of controls in main window better - thx George/Leszek
* SAMI format: HTML-decodes text + reads class attributes better
* Batch convert can now also "Fix common errors" and more - thx Adem
* Volume level is now remembered (no longer in settings) - thx fox
* Some improvements to language detection - thx fox/mihai
* Better import of SSA/ASS from Matroska files - thx Mike
* FIXED:
* VobSub files created by Subtitle Edit now have better compatibility - thx George
* Possible crash + bug in "Fix common errors" on selected lines - thx Dan
* "Drag and drop" of large Blu-ray sup files - thx AT
* Minor fix in "Fix common errors -> Fix invalid italic tags" - thx azu
* List view height in "Set sync point" etc. with large font - thx fox
* Can now load ASS files with "[V4 Styles]" in header - thx Derek
* "Frame mode" no longer auto-changes duration/end-time - thx Gerard
3.3.1 (3rd February 2013)
* NEW:
* Added a few new subtitle formats (now 150 formats!)
* French translation - thx JM GBT
* German translation - thx Christoph Kitsche
* Greek translation - thx Menes
* IMPROVED:
* Improved reading of bad SRT files - thx Ile
* Slow Timed Text 1.0 loading sped up
* Slightly improved reading of italics in timed text draft - thx Jean
* Export to png/xml now uses font styles from SSA/ASS
* Export images - better cropping
* Alignment tags now works for PAC format - thx Jussi
* Allows chars/sec down to 4 due to e.g. Japanese - thx dandomina
* FIXED:
* No longer removes last lines in "Merge short lines" - thx Pax
* Some fixes for networking mode regarding insert/split - thx Dan
* Fixed possible crash in list view regarding syntax coloring
* Point sync no longer throws away SSA/ASS styling - thx Mike
* Fixed bug in Dutch translation - thx jan bruyndonckx
* Fixed bug in converting ASS to SSA
* Some fixes for xsubtitle - thx Ed
* File -> SSA/ASS properties - only update/add changed properties
3.3 (9th December 2012)
* NEW:
* Added column commands to list view context menu - thx Seungki
* Edit -> Reverse RTL start/end (fix punctuation)
* Easy import of auto-backup files (File -> Restore auto-backup...)
* Advanced Substation Alpha style viewer/creator (right click in list view)
* Timed Text style view/creator (right click in list view)
* File -> D-Cinema properties (for both SMTPE and interop)
* Can now display frames instead of milliseconds in main window
(see Options -> Settings)
* New setting in Options: "Max. chars/second"
* New settings in Options regarding "Min. duration" + "Max. duration"
* New settings in Options regarding syntax coloring
* Many new subtitle formats (now 140+ formats supported!)
* New settings in Options, center subtitle (in Subtitle Edit text boxes)
* Tools -> Join subtitles (merge of multiple parts)
* Tools -> Apply duration limits
* Tools -> Sort -> Text - chars/sec
* Main window list view context menu: Save selected lines as...
* Will now display any errors found in SubRip/MicroDVD/SSA/ASS on load
* File -> Statistics: Displays info about current subtitle
* Click on status bar in footer will now show status history
* "Fix common errors" item to fix Turkish ANSI letters to Unicode - thx Adem
* Support for D-Cinema SMPTE - thx Lillian
* Can now read NCI cap files - thx Ramon
* Added fullscreen icon to video player (in main window only) - thx Leszek
* Voikko spell check for Finnish - thx Harri + Ile
* Added guess time codes to waveform context menu
* Added Sync -> Adjust in percent - thx Ralf
* Subtitle beamer - thx Ralf
* Many new shortcuts
* Added "Remove line if all uppercase" to "Remove text for HI"
* IMPROVED:
* Improved support for Advanced Substation Alpha (+ Substation Alpha)
* Improved support for SAMI (now two different formats + font color support)
* Added extra options for double click on list view line - thx Fredrik + TaeGyun
* Added extra options for export as text
* Added many new possible shortcut keys
* Find and replace, better undo, faster + a little UI - thx Adem
* Fix common errors -> Start with uppercase letter after colon/semicolon moved
to separate fix item (no longer in "Start with uppercase after paragraph/period")
* Can now read Ulead format with positions - thx Steve
* Can now convert text subtitles in mkv/mks files via command line - thx the hulk
* New command line conversion parameters: /list, /overwrite, /inputfolder
* File -> Export - can now choose custom video resolution + supports color
* Timed Text now allows for time codes in ticks - thx Allan
* Upgraded Tesseract to version 3.02.02
* Multiple replace: Changed RegEx to support back-references $1, $2 - thx Kurt
* FIXED:
* Auto-translate now works for English to Portuguese - thx w.tambley
* Shortcuts with numbers (0-9)
* Reading of Blu-ray sup with errors in image - thx Simon
* Fixed bug in parsing of Blu-ray sup files - thx e.patic82
* Reading of SAMI files with time codes in quotes - thx Josh
* Reading of Ulead files with position codes - thx Steve
* Reading of time codes + adjust with SCC format - thx Marquise
* Accents and tildes in Cheetah caption format - thx David
* Now always uses output folder in command line convert - thx the hulk
* Cropping of bottom images in File -> Export - thx moob
* Possible crash in OcrFixEngine - thx Ile
* Possible crash when importing VobSub from mkv files - thx Ile
* Can now read SCC with ";" in time code - thx Thane
* Crash when splitting an empty line - thx Pimmetje
* Fixed "Timed Text" time codes with comma in seconds - thx Steffan
* Fixed insert line via F9 or waveform in network mode - thx Martin
* Fixed crash in "Compare" - thx SimplyTheBOSS
* Fixed some bugs in "Remove interjections" - thx Pson
* Fixed possible crash when clicking on "Open" file
* Fixed frame rate calculated too high - thx Saulius
* Fixed missing last line in a couple of subtitle formats
* Minor fixes for "Change casing" + "Split long lines" - thx Marcio
* Timed Text 1.0 uses frames instead of milliseconds (if relevant) - thx Stefan
* Auto-backup now also saves original subtitle - thx Trottel
3.2.8 (3rd June 2012)
* NEW:
* Added "Right to left" in Edit menu - also with configurable shortcut
* Added several new subtitle formats
* Added "Delete line(s)" context menu to OCR - thx Mario
* IMPROVED:
* Updated Chinese translation - thx FeiXJ
* Updated Brazilian Portuguese translation - thx Igor Rückert
* Updated Polish translation - thx Adam Malich
* Updated Romanian translation - thx DrJackson
* Better reading of Cavena 890 format - thx Victor
* Version number now includes the revision from SVN - thx XhmikosR
* Unfocused selection in list view now has more visible color - thx Adem
* Import of subs from mp4 files can now read closed captions - thx Zsolt
* Some new parameters to command line converting - thx Mateo
* FIXED:
* Bug in line breaking - thx Renault
* Bug (skip of subtitles) in DVD sub ripping - thx kowenant/cipry
* Minor fix for Blu-ray sup reading
* Correct time codes in EBU when reading 24 fps
* HD DVD SUP lines are now re-numbered when importing for OCR
* Bug in waveform regarding new selection/right-click-menu
* Sets default encoding at start if no subtitle is loaded - thx TC
* Can now set single line max length to large values - thx cmaj135
* Removed flickering in subtitle list view when typing
* Fixed italics in .890 writing - thx victor
* Insert line before/after shortcuts - thx Omar
* Minor bug with fixing "I" inside lowercase word - thx Alberto
* New line in Encore format with tabs - thx Tim
* Minor bug in Remove interjections - thx Pson
* Crash when working with Advanced Sub Station Alpha styles
3.2.7 (14th April 2012)
* NEW:
* Added Finnish translation - thx Veikko
* Can now import binary Cheetah Caption subtitle format
* IMPROVED: