Skip to content

Commit

Permalink
chore(release): v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Raiper34 committed Feb 8, 2025
1 parent c8e4791 commit 77a18ed
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

#### [5.0.0](https://github.com/Raiper34/m3u-parser-generator/compare/4.0.0...5.0.0)
#### [5.0.1](https://github.com/Raiper34/m3u-parser-generator/compare/5.0.0...5.0.1)

- docs(website): modernize website api documentation [`38094f2`](https://github.com/Raiper34/m3u-parser-generator/commit/38094f2db99731598d2859036e2b15e6548ef803)
- fix(parser): Change EXTINF parsing to split on first, not last, comma [`c8e4791`](https://github.com/Raiper34/m3u-parser-generator/commit/c8e479161dcc4ec3d5490631fa42a1647741481d)
- docs(readme): fix browser jsdelivr link in readme [`fc105ad`](https://github.com/Raiper34/m3u-parser-generator/commit/fc105ad8fcb3f4d5438f6a629e6b1eac0b92f113)

### [5.0.0](https://github.com/Raiper34/m3u-parser-generator/compare/4.0.0...5.0.0)

> 5 February 2025
- build(vite): add vite to build everrything with one tool and remove browserify and uglify [`da17e56`](https://github.com/Raiper34/m3u-parser-generator/commit/da17e5619c7940782359f35d0871433198e8f47e)
- docs(readme): automatic version dump [`3398d61`](https://github.com/Raiper34/m3u-parser-generator/commit/3398d61fca8125f2384753f9926a4b64ae659a7a)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ npm install m3u-parser-generator --save
```
or with jsdelivr
```html
<script src="https://cdn.jsdelivr.net/npm/m3u-parser-generator@5.0.0/dist/m3u-parser-generator.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/m3u-parser-generator@5.0.1/dist/m3u-parser-generator.iife.js"></script>
```

# 📚 Documentation
Expand Down Expand Up @@ -124,7 +124,7 @@ http://my-stream-ulr.com/playlist.m3u8
You can also use this library in the browser without compiling using jsDelivr.
Import script into HTML file, and you can access classes through the global `m3uParserGenerator` object.
```html
<script src="https://cdn.jsdelivr.net/npm/m3u-parser-generator@5.0.0/dist/m3u-parser-generator.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/m3u-parser-generator@5.0.1/dist/m3u-parser-generator.iife.js"></script>
<script>
const playlist = new m3uParserGenerator.M3uPlaylist();
const media1 = new m3uParserGenerator.M3uMedia('http://my-stream-ulr.com/playlist.m3u8');
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "m3u-parser-generator",
"version": "5.0.0",
"version": "5.0.1",
"description": "Library to parse and generate m3u or m3u8 IPTV playlist files",
"keywords": [
"m3u",
Expand Down

0 comments on commit 77a18ed

Please # to comment.