Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sun128764 committed Oct 16, 2023
2 parents a46a773 + f33daec commit 5eac85c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/dotnet-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.x
dotnet-version: |
6.x
7.x
- name: Publish the application
run: dotnet pack AssParser.Lib --configuration ${{ matrix.configuration }} -p:PackageVersion=$RELEASE_VERSION
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AssParser · [![Publish to nuget](https://github.com/AmusementClub/AssParser/actions/workflows/dotnet-nuget.yml/badge.svg)](https://github.com/AmusementClub/AssParser/actions/workflows/dotnet-nuget.yml) [![All test](https://github.com/AmusementClub/AssParser/actions/workflows/test.yml/badge.svg)](https://github.com/AmusementClub/AssParser/actions/workflows/test.yml)
# AssParser · [![Publish to nuget](https://github.com/AmusementClub/AssParser/actions/workflows/dotnet-nuget.yml/badge.svg)](https://github.com/AmusementClub/AssParser/actions/workflows/dotnet-nuget.yml) ![Nuget](https://img.shields.io/nuget/v/AssParser.Lib?logo=nuget) [![Test](https://github.com/AmusementClub/AssParser/actions/workflows/test.yml/badge.svg)](https://github.com/AmusementClub/AssParser/actions/workflows/test.yml)

Parse ASS(SubStation Alpha Subtitles) file faster. No Regex. All managed code.

Expand Down Expand Up @@ -65,4 +65,4 @@ string fontsData = assfile.UnknownSections["[Fonts]"];
## Decode & Encode UUEncode
``` cs
byte[] data = UUEncode.Decode(fontsData, out var crlf);
string encoded = UUEncode.Eecode(data, crlf)
string encoded = UUEncode.Eecode(data, crlf)

0 comments on commit 5eac85c

Please sign in to comment.