This commit is contained in:
tomasklaen
2022-03-21 09:26:06 +01:00
parent 7d7915dfda
commit bff64dc1ad
2 changed files with 13 additions and 2 deletions

View File

@@ -1,3 +1,14 @@
## 2.16.0 - 2022-Mar-21
Added:
- `flash-top-bar` command, useful when navigating between files.
Changed:
- Apart of `#!`, you can also use `#menu:` to declare menu items. This adds compatibility with mpv.net.
Fixed:
- `delete-file-next` command now correctly uses playlist to decide next item to play.
## 2.15.1 - 2022-Feb-12
Fixed:

View File

@@ -1,6 +1,6 @@
--[[
uosc 2.15.1 - 2022-Feb-12 | https://github.com/darsain/uosc
uosc 2.16.0 - 2022-Mar-21 | https://github.com/darsain/uosc
Minimalist cursor proximity based UI for MPV player.
@@ -3542,7 +3542,7 @@ mp.add_key_binding(nil, 'delete-file-next', function()
if is_local_file then
next_file = get_adjacent_file(path, 'forward', options.media_types)
end
if next_file then
mp.commandv('loadfile', next_file)
else