mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Update change log
This commit is contained in:
parent
ddd5bade6d
commit
44da437cc3
@ -4,6 +4,8 @@
|
|||||||
* NEW:
|
* NEW:
|
||||||
* Add "Text To Speech" - thx darnn
|
* Add "Text To Speech" - thx darnn
|
||||||
* IMPROVED:
|
* IMPROVED:
|
||||||
|
* Update Portuguese translation - thx hugok79
|
||||||
|
* Update Bulgarian translation - thx Калин
|
||||||
* Update Finnish translation - thx Teijo S
|
* Update Finnish translation - thx Teijo S
|
||||||
* Update Italian language - thx bovirus
|
* Update Italian language - thx bovirus
|
||||||
* Update Chinese translation - thx nkh0472
|
* Update Chinese translation - thx nkh0472
|
||||||
@ -13,6 +15,7 @@
|
|||||||
* FIXED:
|
* FIXED:
|
||||||
* Fix for Antrophic translate - thx venomousraid
|
* Fix for Antrophic translate - thx venomousraid
|
||||||
* Fix possible crash in teletext reading - thx yellobyte
|
* Fix possible crash in teletext reading - thx yellobyte
|
||||||
|
* Fix unwanted text boxes background color change - thx Leon
|
||||||
|
|
||||||
|
|
||||||
4.0.5 (13th April 2024)
|
4.0.5 (13th April 2024)
|
||||||
|
@ -277,7 +277,7 @@ namespace Nikse.SubtitleEdit.Forms
|
|||||||
{
|
{
|
||||||
checkBoxRightToLeft.Enabled = false;
|
checkBoxRightToLeft.Enabled = false;
|
||||||
labelProgress.Text = LanguageSettings.Current.Main.NoSubtitleLoaded;
|
labelProgress.Text = LanguageSettings.Current.Main.NoSubtitleLoaded;
|
||||||
labelProgress.ForeColor = Configuration.Settings.General.UseDarkTheme ? Color.Yellow : Color.DarkGoldenrod;
|
labelProgress.ForeColor = UiUtil.WarningColor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -345,11 +345,11 @@ namespace Nikse.SubtitleEdit.Forms
|
|||||||
var oldFontSizeEnabled = numericUpDownFontSize.Enabled;
|
var oldFontSizeEnabled = numericUpDownFontSize.Enabled;
|
||||||
numericUpDownFontSize.Enabled = false;
|
numericUpDownFontSize.Enabled = false;
|
||||||
|
|
||||||
using (var saveDialog = new SaveFileDialog
|
using (var saveDialog = new SaveFileDialog
|
||||||
{
|
{
|
||||||
FileName = SuggestNewVideoFileName(),
|
FileName = SuggestNewVideoFileName(),
|
||||||
Filter = "MP4|*.mp4|Matroska|*.mkv|WebM|*.webm",
|
Filter = "MP4|*.mp4|Matroska|*.mkv|WebM|*.webm",
|
||||||
AddExtension = true ,
|
AddExtension = true,
|
||||||
InitialDirectory = Path.GetDirectoryName(_inputVideoFileName),
|
InitialDirectory = Path.GetDirectoryName(_inputVideoFileName),
|
||||||
})
|
})
|
||||||
{
|
{
|
||||||
|
@ -1196,6 +1196,8 @@ namespace Nikse.SubtitleEdit.Logic
|
|||||||
|
|
||||||
public static Color ForeColor => Configuration.Settings.General.UseDarkTheme ? Configuration.Settings.General.DarkThemeForeColor : Control.DefaultForeColor;
|
public static Color ForeColor => Configuration.Settings.General.UseDarkTheme ? Configuration.Settings.General.DarkThemeForeColor : Control.DefaultForeColor;
|
||||||
|
|
||||||
|
public static Color WarningColor => Configuration.Settings.General.UseDarkTheme ? Color.Yellow : Color.DarkGoldenrod;
|
||||||
|
|
||||||
public static void OpenFolderFromFileName(string fileName)
|
public static void OpenFolderFromFileName(string fileName)
|
||||||
{
|
{
|
||||||
string folderName = Path.GetDirectoryName(fileName);
|
string folderName = Path.GetDirectoryName(fileName);
|
||||||
|
Loading…
Reference in New Issue
Block a user