Minor updates

This commit is contained in:
Nikolaj Olsson 2023-12-19 18:59:47 +01:00
parent c0fb0dbeb8
commit b4a96689b6
4 changed files with 10 additions and 5 deletions

View File

@ -3,7 +3,7 @@
4.0.3 (xth December 2023) BETA
* NEW:
* Add ".opus" / ".adts" audio file extensions - thx vivadavid/Lyubomir71
* Add ".opus" + ".adts" audio file extensions - thx vivadavid/Lyubomir71
* Add two TSV subtitle formats - thx Purfview
* Add Arabic translation - thx Yahya
* Add new json subtitle format - thx Lucretia
@ -44,6 +44,7 @@
* Fix for ASSA border width in export to image based format - thx Christian
* Fix crash in generating ASSA borders with odd video resolution - thx Leon
* Fix crash in "Beautify time codes" - thx Flitskikker
* Fix for "Batch convert" auto-translate - thx Lunchbox209
4.0.2 (19th November 2023)

View File

@ -959,4 +959,5 @@
<word>repurposing</word>
<word>whisky</word>
<word>worshipping</word>
<word>teleportation</word>
</words>

View File

@ -1919,4 +1919,7 @@
<name>Åland Islands</name>
<name>LGBTQ</name>
<name>TSA</name>
<name>Winterton</name>
<name>Harcourt</name>
<name>Dashiell</name>
</names>

View File

@ -36,9 +36,9 @@ namespace Nikse.SubtitleEdit.Forms
this.buttonCancel = new System.Windows.Forms.Button();
this.groupBoxConvertOptions = new System.Windows.Forms.GroupBox();
this.groupBoxAutoTranslate = new System.Windows.Forms.GroupBox();
this.labelTarget = new System.Windows.Forms.Label();
this.labelTarget = new Nikse.SubtitleEdit.Controls.NikseLabel();
this.comboBoxTarget = new Nikse.SubtitleEdit.Controls.NikseComboBox();
this.labelSource = new System.Windows.Forms.Label();
this.labelSource = new Nikse.SubtitleEdit.Controls.NikseLabel();
this.comboBoxSource = new Nikse.SubtitleEdit.Controls.NikseComboBox();
this.linkLabelPoweredBy = new System.Windows.Forms.LinkLabel();
this.nikseComboBoxEngine = new Nikse.SubtitleEdit.Controls.NikseComboBox();
@ -2817,9 +2817,9 @@ namespace Nikse.SubtitleEdit.Forms
private System.Windows.Forms.GroupBox groupBoxAutoTranslate;
private System.Windows.Forms.LinkLabel linkLabelPoweredBy;
private Controls.NikseComboBox nikseComboBoxEngine;
private System.Windows.Forms.Label labelTarget;
private Nikse.SubtitleEdit.Controls.NikseLabel labelTarget;
private Controls.NikseComboBox comboBoxTarget;
private System.Windows.Forms.Label labelSource;
private Nikse.SubtitleEdit.Controls.NikseLabel labelSource;
private Controls.NikseComboBox comboBoxSource;
}
}