Skip to content

Commit

Permalink
v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
meokullu committed Sep 1, 2024
1 parent f53f78d commit 956c079
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 24 deletions.
12 changes: 5 additions & 7 deletions SubtitleParser/SubtitleParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFrameworks>net6.0; net7.0; net461; netcoreapp3.1; netstandard2.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<AssemblyVersion>2.3.0</AssemblyVersion>
<FileVersion>2.3.0</FileVersion>
<AssemblyVersion>2.3.1</AssemblyVersion>
<FileVersion>2.3.1</FileVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Title>Subtitle Parser</Title>
Expand All @@ -17,13 +17,11 @@
<RepositoryUrl>https://github.com/meokullu/SubtitleParser</RepositoryUrl>
<PackageTags>parser; movies; movie; parsing; subtitles; subtitle; film; films; subtitle-parser</PackageTags>
<PackageReleaseNotes>
v2.3.0
* GetTextByLines(string filePath, Encoding encoding) is added.
* GetTextByLinesUnsafe(string filtePath, Encoding encoding) is added.
* Override method of SubtitleBlock is added.
v2.3.1
* Removed unused usings.
See changelog (https://github.com/meokullu/SubtitleParser/blob/master/CHANGELOG.md)
</PackageReleaseNotes>
<Version>2.3.0</Version>
<Version>2.3.1</Version>
<ApplicationIcon>Resources\icon256.ico</ApplicationIcon>
<PackageIcon>icon.png</PackageIcon>
<Company>Enes Okullu</Company>
Expand Down
2 changes: 0 additions & 2 deletions SubtitleParser/src/Parse.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SubtitleParser
{
Expand Down
3 changes: 0 additions & 3 deletions SubtitleParser/src/SubtitleBlock.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SubtitleParser
{
Expand Down
8 changes: 1 addition & 7 deletions SubtitleParser/src/SubtitleTimeFormat.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SubtitleParser
namespace SubtitleParser
{
public partial class SubtitleParser
{
Expand Down
6 changes: 1 addition & 5 deletions SubtitleParser/src/Trim.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections.Generic;

namespace SubtitleParser
{
Expand Down

0 comments on commit 956c079

Please sign in to comment.