Skip to content

Commit

Permalink
Update to 4.28.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
otomad committed Apr 1, 2023
1 parent f0bbda8 commit 7d5aa13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h1>VegasScripts</h1>
<p>
<img src="https://img.shields.io/badge/STATE-STABLE-green?style=flat-square" alt="State" />
<img src="https://img.shields.io/badge/VERSION-4.27.29.0-orange?style=flat-square" alt="Version" />
<img src="https://img.shields.io/badge/VERSION-4.28.1.0-orange?style=flat-square" alt="Version" />
<img src="https://img.shields.io/github/downloads/otomad/OtomadHelper/total.svg?style=flat-square&label=DOWNLOADS" alt="Downloads">
</p>
</div>
Expand Down
6 changes: 2 additions & 4 deletions otomad_helper/Otomad Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ namespace Otomad.VegasScript.OtomadHelper.V4 {
/// </summary>
public class EntryPoint {
/// <summary>版本号</summary>
public static readonly Version VERSION = new Version(4, 27, 29, 0);
public static readonly Version VERSION = new Version(4, 28, 1, 0);
/// <summary>修订日期</summary>
public static readonly DateTime REVISION_DATE = new DateTime(2023, 3, 29);
public static readonly DateTime REVISION_DATE = new DateTime(2023, 4, 1);

// 配置参数变量
#region 视频属性
Expand Down Expand Up @@ -11064,7 +11064,6 @@ public T AddSampleEvent<T>(Timecode start, Timecode length, string name = EXAMPL
T sampleEvent = AddEvent<T>(start, length, null, true);
if (sampleEvent == null) return null;
sampleEvent.Name = name;
sampleEvent.Length = Timecode.FromMilliseconds(0);
return sampleEvent;
}

Expand All @@ -11079,7 +11078,6 @@ public T AddSampleEvent<T>(T trackEvent, Timecode start, string name = EXAMPLE_E
T sampleEvent = AddEvent(trackEvent, start, trackEvent.Length, null, true);
if (sampleEvent == null) return null;
sampleEvent.Name = name;
sampleEvent.Length = Timecode.FromMilliseconds(0);
return sampleEvent;
}

Expand Down

0 comments on commit 7d5aa13

Please sign in to comment.