A few minor fixes + updated change log

This commit is contained in:
niksedk 2014-12-26 13:41:40 +01:00
parent 8ea2b9e6c7
commit 72b65551eb
4 changed files with 11 additions and 10 deletions

View File

@ -2,12 +2,15 @@
3.4.5 (xth December 2014)
* NEW:
* Basic read support for Ayato + Unipac format
* Basic read support for Ayato + Unipac format + unknow format
* 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 easer 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 Bluray sup files
@ -20,6 +23,8 @@
* 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
3.4.4 (28th November 2014)

View File

@ -277,7 +277,7 @@ namespace Nikse.SubtitleEdit.Controls
SelectedColor = Color.Red;
ParagraphColor = Color.LimeGreen;
TextColor = Color.Gray;
TextSize = 11;
TextSize = 10;
GridColor = Color.FromArgb(255, 20, 20, 18);
DrawGridLines = true;
AllowNewSelection = true;
@ -783,12 +783,8 @@ namespace Nikse.SubtitleEdit.Controls
e.Graphics.DrawString(text, font, blackBrush, new PointF(currentRegionLeft + 2, 10 - 7));
e.Graphics.DrawString(text, font, blackBrush, new PointF(currentRegionLeft + 4, 10 - 7));
e.Graphics.DrawString(text, font, textBrush, new PointF(currentRegionLeft + 3, 10 - 7));
text = "#" + paragraph.Number + " " + paragraph.StartTime.ToShortString() + " " + paragraph.Duration.ToShortString();
actualWidth = TextRenderer.MeasureText(text, font).Width;
if (actualWidth >= w)
text = "#" + paragraph.Number + " " + paragraph.Duration.ToShortString();
text = "#" + paragraph.Number + " " + paragraph.Duration.ToShortString();
actualWidth = TextRenderer.MeasureText(text, font).Width;
if (actualWidth >= w)
text = paragraph.Duration.ToShortString();

View File

@ -1746,7 +1746,7 @@ can edit in same subtitle file (collaboration)",
SubtitleFontColor = "Subtitle font color",
SubtitleBackgroundColor = "Subtitle background color",
SpellChecker = "Spell checker",
RememberRecentFiles = "Remember recent files (for reopen)",
RememberRecentFiles = "Show recent files (for reopen)",
StartWithLastFileLoaded = "Start with last file loaded",
RememberSelectedLine = "Remember selected line",
RememberPositionAndSize = "Remember main window position and size",

View File

@ -666,7 +666,7 @@ namespace Nikse.SubtitleEdit.Logic
WaveformSelectedColor = Color.Red;
WaveformBackgroundColor = Color.Black;
WaveformTextColor = Color.Gray;
WaveformTextSize = 11;
WaveformTextSize = 10;
WaveformDoubleClickOnNonParagraphAction = "PlayPause";
WaveformDoubleClickOnNonParagraphAction = string.Empty;
WaveformMouseWheelScrollUpIsForward = true;