Skip to content

Commit

Permalink
Merge pull request #316 from open-dynaMIX/update_mpv_in_tests
Browse files Browse the repository at this point in the history
Update mpv in tests
  • Loading branch information
open-dynaMIX committed Aug 18, 2021
2 parents c4b80a5 + 7e115de commit 87fd9e7
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## v2.2.0
### Feature
* Add keyboard shortcut button in settings overlay ([`62b824d`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/62b824d5f11cb5e4cdbe6c982ba6d41bede7c4dd))
* Allow disabling notifications ([`3d2fa0d`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/3d2fa0d2b754c2f017904a9bc4dfe5bdb1a3b374))
* **api:** Respond to OPTIONS requests ([`ec855f4`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/ec855f4ee9e33794aa06d8c438e5f7f00f0efc0e))

### Fix
* Button text should not be selectable ([`034fc50`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/034fc50ae7a7549d383fc35c8e4cb0ea905a91dc))
* Move settings h4 to next line ([`905095e`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/905095ee68586ce147f37bda6bcdf22e1858756c))
* Move shortcuts overlay in front of settings ([`f038794`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/f038794bb6145a3a79b93bbe4a01c0e5bb1a85f1))
* **api:** Correctly handle multiple slashes in url ([`b804ed1`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/b804ed14660e445abf45beed0fa32f80cd92a4f1))
* **api:** Refactor request handling; fix `Allow` header ([`1163b90`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/1163b906b932f8d4171c2696859bc27a51d54494))
* Set charset in webmanifest content-type and also test serving it ([`853209d`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/853209d005bbc98e7c14a1f5c9b01f376da3cfc4))
* Handle missing file parameter in /api/loadfile ([`c7b897d`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/c7b897d7a000ab331f7155299f3fb01313f355c5))
* Allow to modify parameters with underscore ([`411ca7b`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/411ca7bb406193c4a3ac29507c51ac98a8d2d5f8))
* **js:** Sanitize metadata in order to prevent unlikely XSS ([`99822d6`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/99822d6ac6c8f0b223b47e6e29df48624b0b395d))

## v2.1.0
### Feature
* **api:** Expose webui version in /api/status response ([`504bac4`](https://github.com/open-dynaMIX/simple-mpv-webui/commit/504bac4b1069428ff5bcaafba4f2a02f6ca2c265))
Expand Down
6 changes: 4 additions & 2 deletions tests/snapshots/snap_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,20 +205,22 @@
"codec": "mp3",
"decoder-desc": "mp3float (MP3 (MPEG audio layer 3))",
"default": False,
"demux-bitrate": 32000,
"demux-channel-count": 2,
"demux-channels": "stereo",
"demux-samplerate": 48000,
"dependent": False,
"external": False,
"ff-index": 0,
"forced": False,
"hearing-impaired": False,
"id": 1,
"selected": True,
"src-id": 0,
"type": "audio",
"visual-impaired": False,
}
],
"volume": 0,
"volume-max": 130,
"webui-version": "2.1.0",
"webui-version": "2.2.0",
}
2 changes: 1 addition & 1 deletion webui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ local dec64 = require("mime").decode("base64")
local url = require("socket.url")

local MSG_PREFIX = "[webui] "
local VERSION = "2.1.0"
local VERSION = "2.2.0"

function string.starts(String, Start)
return string.sub(String,1,string.len(Start))==Start
Expand Down

0 comments on commit 87fd9e7

Please sign in to comment.