Skip to content

Commit 8a80013

Browse files
committed
chore(release): prepare release v3.0.0
1 parent 93eeeb3 commit 8a80013

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## v3.0.0
4+
### Feature
5+
* Warn about missing static_dir directory ([`ad8daf9`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/ad8daf9ceb800cf9068e43ae1da31cbea728d8c4))
6+
* Make new properties "start" and "end" available ([`da8dc79`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/da8dc79306ca5970c96a135c3f5b147bb3cd72a8))
7+
* **api:** Add `/api/collections` endpoint ([`450b147`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/450b1473561b91a3fa56a37f354a6dc6b8fafb20))
8+
* Rename webui.lua to main.lua ([`e7c47c3`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/e7c47c3aa3928f0070253093ad02f06c0b289d50))
9+
10+
### Fix
11+
* **api:** Fix init servers; gracefully handle port already in use ([`ebde38c`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/ebde38c14df7881f7718f9be65e9d4d4cbec0899))
12+
13+
### Breaking
14+
* `webui.lua` was renamed to `main.lua` ([`e7c47c3`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/e7c47c3aa3928f0070253093ad02f06c0b289d50))
15+
16+
### Documentation
17+
* Fix ToC in README ([`6726d11`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/6726d11f8d79e87f85a088e54757968b99b24d87))
18+
* Make clear that `loadfile` takes an URL encoded string ([`ed4f9f3`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/ed4f9f3331144d6964d728786120d4ae247ed38e))
19+
320
## v2.2.0
421
### Feature
522
* Add keyboard shortcut button in settings overlay ([`62b824d`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/62b824d5f11cb5e4cdbe6c982ba6d41bede7c4dd))

main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local dec64 = require("mime").decode("base64")
66
local url = require("socket.url")
77

88
local MSG_PREFIX = "[webui] "
9-
local VERSION = "2.2.0"
9+
local VERSION = "3.0.0"
1010

1111
function string.starts(String, Start)
1212
return string.sub(String,1,string.len(Start))==Start

tests/snapshots/snap_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,5 @@
255255
],
256256
"volume": 0,
257257
"volume-max": 130,
258-
"webui-version": "2.2.0",
258+
"webui-version": "3.0.0",
259259
}

0 commit comments

Comments
 (0)