Skip to content

Commit

Permalink
Release 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
euzu committed Oct 16, 2024
1 parent 0072b45 commit 757fa62
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog
# 2.0.5(2024-09-xx)
# 2.0.5(2024-10-16)
- input url supports now scheme `file://...` (which is not necessary because file paths are supported). Gzip files are also supported.
- sort takes now a sequence for channel values which has higher priority than sort order
- fixed error handling in filter parsing
- `NOT` filter is now `non greedy`. `NOT Name ~ "A" AND Group ~ "B"` was `NOT (Name ~ "A" AND Group ~ "B")`. Now it is `(NOT Name ~ "A") AND Group ~ "B"`
- Implemented workaround for missing tvg-ID

# 2.0.4(2024-09-19)
* if Content type of file download is not set in header, the gzip encoding is checked through magic header.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "m3u-filter"
version = "2.0.4"
version = "2.0.5"
edition = "2021"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "m3u-filter",
"description": "m3u-filter",
"author": "euzu",
"version": "2.0.4",
"version": "2.0.5",
"private": true,
"homepage": "./",
"scripts": {
Expand Down

0 comments on commit 757fa62

Please sign in to comment.