Skip to content

Commit 3368303

Browse files
authored
Merge pull request #356 from open-dynaMIX/prepare_release_3.0.0
chore(release): prepare release v3.0.0
2 parents 58b3853 + 8a80013 commit 3368303

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
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))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ add something like `scripts-append=/path/to/simple-mpv-webui/` to `mpv.conf`.
5151
add something like `scripts-append=/path/to/simple-mpv-webui/webui.lua` to `mpv.conf`.
5252
</details>
5353

54-
See [Dependencies](#dependencies) for more information about the installation.
54+
See [dependencies](#dependencies) for more information about the installation.
5555

5656
You can access the webui when visiting [http://127.0.0.1:8080](http://127.0.0.1:8080) or
5757
[http://[::1]:8080](http://[::1]:8080) in your webbrowser.
@@ -399,7 +399,7 @@ information about the error.
399399
"ff-index": 0,
400400
"forced": false,
401401
"id": 1,
402-
"image": False,
402+
"image": false,
403403
"main-selection": 0,
404404
"selected": true,
405405
"src-id": 0,

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)