Skip to content
This repository has been archived by the owner on Nov 14, 2019. It is now read-only.

v4.6.2

Latest
Compare
Choose a tag to compare
@khanhas khanhas released this 14 Apr 08:27

Add

  • Config windowLocation: change ueli location to a fixed position or relative to center.

To set a fixed location, set numbers for both x field and y field or just one of them. Example:

"windowLocation": {
    "x": 200,
    "y": 300
}
"windowLocation": {
    "y": 100
}
"windowLocation": {
    "x": 400
}

To set a center-relative position, set strings for both field or just one of them. Example:

Move window 200px to the left from the center:

"windowLocation": {
    "x": "-200"
}

Move window 30px to the bottom from the center:

"windowLocation": {
    "y": "+30"
}
  • "all" option for config "musicPlayerType": Auto switching between websocket player and local player to whichever is playing, no need to do it manually now.
    a