diff --git a/Changelog.txt b/Changelog.txt index 0668b6487..cc1c94986 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -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) diff --git a/src/Controls/AudioVisualizer.cs b/src/Controls/AudioVisualizer.cs index 6ae25ae86..2af584ff5 100644 --- a/src/Controls/AudioVisualizer.cs +++ b/src/Controls/AudioVisualizer.cs @@ -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(); diff --git a/src/Logic/Language.cs b/src/Logic/Language.cs index 0e7427c83..ca59308a5 100644 --- a/src/Logic/Language.cs +++ b/src/Logic/Language.cs @@ -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", diff --git a/src/Logic/Settings.cs b/src/Logic/Settings.cs index 2ef9487a7..5d0170e7c 100644 --- a/src/Logic/Settings.cs +++ b/src/Logic/Settings.cs @@ -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;