This commit is contained in:
Tomas Sardyha
2020-04-02 18:57:43 +02:00
parent 535a8b6c68
commit ba371a0b27
2 changed files with 31 additions and 2 deletions

View File

@@ -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.
Initial release.

View File

@@ -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.