diff --git a/CHANGELOG.md b/CHANGELOG.md index 9124f9e..72ef806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +## 1.1.0 + +New: +- Proximity UI elements now hide on `cursor-autohide` (mpv's cursor autohide time option). +- Added chapter indicators for both seekbar and progressbar. They can be configured with these new options: + ```conf + # seekbar chapters indicator style: dots, lines, lines-top, lines-bottom + # set to empty to disable + seekbar_chapters=dots + # seekbar chapters indicator opacity + seekbar_chapters_opacity=0.3 + # progressbar chapters indicator style: dots, lines, lines-top, lines-bottom + # set to empty to disable + progressbar_chapters=dots + # progressbar chapters indicator opacity + progressbar_chapters_opacity=0.3 + ``` + +Changed: +- Now renders a 1px bottom border for both bars in no-border window mode so they can be visible when window is over a light background. +- Improved formula for seekbar font size so it's more readable in thinner seekbar sizes. +- Tweaked some default option values for sizes and visibility of both bars. +- `bar_opacity` option got split up into `seekbar_opacity` and `progressbar_opacity`. +- `bar_color_foreground` renamed to `color_foreground`. +- `bar_color_background` renamed to `color_background`. + +Fixed: +- Default examples as well as `uosc.conf` file were not working because comments were on the same line as option declarations, which apparently mpv can't parse. So that's fixed now. + ### 1.0.5 Ensures time text seen above the cursor during seeking doesn't overflow the screen. This is a naive implementation that is only guessing the width of the text, since there is no other API to use for this. @@ -41,4 +70,4 @@ Fixed long window titles wrapping all over the place instead of being clipped by # 1.0.0 -Initial release. \ No newline at end of file +Initial release. diff --git a/uosc.lua b/uosc.lua index 203f77b..9f42018 100644 --- a/uosc.lua +++ b/uosc.lua @@ -1,6 +1,6 @@ --[[ -uosc 1.0.5 | https://github.com/darsain/uosc +uosc 1.1.0 | https://github.com/darsain/uosc Minimalistic proximity based UI for MPV player.