Add new sub format - thx Maria :)

This commit is contained in:
Nikolaj Olsson 2020-08-16 09:21:57 +02:00
parent ab3f81a36c
commit 602a27d9f8
3 changed files with 13 additions and 0 deletions

View File

@ -5,6 +5,7 @@
* Add new subtitle format - thx Holmgeir
* Add new subtitle (Excel) format - thx Jecy
* Add new subtitle (json) format - thx Maksim
* Add new subtitle format FCP Xml 1.8 - thx Maria
* Add shortcuts for Tools menu items Split/Append/Join - thx z3us
* Add shortcuts for "Merge line with same text/time-code" - thx Mike
* Add shortcuts "Set end and pause" + "Export to PAC" - thx Milenko

View File

@ -0,0 +1,11 @@
namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{
public class FinalCutProXml18 : FinalCutProXml15
{
public FinalCutProXml18()
{
FcpXmlVersion = "1.8";
}
}
}

View File

@ -85,6 +85,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
new FinalCutProXml15(),
new FinalCutProXml16(),
new FinalCutProXml17(),
new FinalCutProXml18(),
new FinalCutProTestXml(),
new FinalCutProTest2Xml(),
new FlashXml(),