Browse Source

Update for 0.3.0

master
jeffvli 3 years ago
committed by Jeff
parent
commit
82ec28a756
  1. 29
      CHANGELOG.md
  2. 2
      package.json
  3. 4
      src/package.json

29
CHANGELOG.md

@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.3.0] - 2021-10-16
### Added
- Added folder browser (#1)
- Added context menu button `View in folder`
- Requires that your server has support for the original `/getIndexes` and `/getMusicDirectory` endpoints
- Added configurable row-hover highlight for list-view
- (Windows) Added playback controls in thumbnail toolbar (#32)
- (Windows/macOS) Added window size/position remembering on application close (#31)
### Changed
- Changed styling for various views/components
- Tooltips added on grid-view card hover buttons
- Mini-player removed rounded borders and increased opacity
- Mini-player removed animation on open/close
- Search bar now activated from button -> input on click / CTRL+F
- Page header toolbar buttons styling consistency
- Album list filter moved from right -> left
- Reordered context menu button `Move selected to [...]`
- Decreased horizontal width of expanded sidebar from 193px -> 165px
### Fixed
- Fixed duplicate scrobble requests when pause/resuming a song after the scrobble threshold (#30)
- Fixed genre column not applying in the song list-view
- Fixed default titlebar set on first run
## [0.2.1] - 2021-10-11
### Fixed

2
package.json

@ -101,7 +101,7 @@
"url": "https://github.com/jeffvli/"
},
"contributors": [],
"license": "MIT",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/jeffvli/sonixd/issues"
},

4
src/package.json

@ -1,7 +1,7 @@
{
"name": "sonixd",
"productName": "sonixd",
"version": "0.2.1",
"version": "0.3.0",
"description": "An electron-based subsonic-api compatible desktop media player",
"main": "./main.prod.js",
"author": {
@ -12,6 +12,6 @@
"electron-rebuild": "node -r ../.erb/scripts/BabelRegister.js ../.erb/scripts/ElectronRebuild.js",
"postinstall": "yarn electron-rebuild"
},
"license": "MIT",
"license": "GPL-2.0",
"dependencies": {}
}

Loading…
Cancel
Save