Browse Source

Update for 0.5.0

- Add new preview screenshots
master
jeffvli 3 years ago
parent
commit
28809f0d2d
  1. 37
      CHANGELOG.md
  2. 8
      README.md
  3. BIN
      assets/screenshots/0.5.0/album.png
  4. BIN
      assets/screenshots/0.5.0/album_list.png
  5. BIN
      assets/screenshots/0.5.0/artist.png
  6. BIN
      assets/screenshots/0.5.0/context_menu.png
  7. BIN
      assets/screenshots/0.5.0/now_playing.png
  8. 2
      src/package.json

37
CHANGELOG.md

@ -5,6 +5,43 @@ 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.5.0] - 2021-11-05
### Added
- Added extensible theming (#60)
- Added playback presets (gapless, fade, normal) to the config
- Added persistence for column sort for all list-views (except playlist and search) (#47)
- Added playback filters to the config to filter out songs based on regex (#53)
- Added music folder selector in auto playlist (this may or may not work depending on your server)
- Added improved playlist, artist, and album pages
- Added dynamic images on the Playlist page for servers that don't support playlist images (e.g. Navidrome)
- Added link to open the local `settings.json` file
- Added setting to use legacy authentication (#63)
### Changed
- Improved overall application keyboard accessibility
- Playback no longer automatically starts if adding songs to the queue using `Add to queue`
- Prevent accidental page navigation when using [Ctrl/Shift + Click] when multi-selecting rows in list-view
- Standardized buttons between the Now Playing page and the mini player
- "Add random" renamed to "Auto playlist"
- Increased 'info' notification timeout from 1500ms -> 2000ms
- Changed default mini player columns to better fit
- Updated default themes to more modern standards (Default Dark, Default Light)
### Fixed
- Fixed title sort on the `Title (Combined)` column on the album list
- Fixed 2nd song in queue being skipped when using the "Play" button multiple pages (album, artist, auto playlist)
- Fixed `Title` column not showing the title on the Folder page (#69)
- Fixed context menu windows showing underneath the mini player
- Fixed `Add to queue (next)` adding songs to the wrong unshuffled index when shuffle is enabled
- Fixed local search on the root Folder page
- Fixed input picker dropdowns following the page on scroll
- Fixed the current playing song not highlighted when using `Add to queue` on an empty play queue
- Fixed artist list not using the `artistImageUrl` returned by Navidrome
## [0.4.1] - 2021-10-27
### Added

8
README.md

@ -33,10 +33,10 @@ Sonixd is a cross-platform desktop client built for Subsonic-API compatible musi
## Screenshots
<a href="assets/screenshots/dashboard.png"><img src="assets/screenshots/dashboard.png" width="49.5%"/></a>
<a href="assets/screenshots/playlist_list.png"><img src="assets/screenshots/playlist_list.png" width="49.5%"/></a>
<a href="assets/screenshots/favorites.png"><img src="assets/screenshots/favorites.png" width="49.5%"/></a>
<a href="assets/screenshots/contextmenu.png"><img src="assets/screenshots/contextmenu.png" width="49.5%"/></a>
<a href="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/album.png"><img src="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/album.png" width="49.5%"/></a>
<a href="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/artist.png"><img src="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/artist.png" width="49.5%"/></a>
<a href="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/context_menu.png"><img src="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/context_menu.png" width="49.5%"/></a>
<a href="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/now_playing.png"><img src="https://raw.githubusercontent.com/jeffvli/sonixd/main/assets/screenshots/0.5.0/now_playing.png" width="49.5%"/></a>
## Install

BIN
assets/screenshots/0.5.0/album.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

BIN
assets/screenshots/0.5.0/album_list.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 637 KiB

BIN
assets/screenshots/0.5.0/artist.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 KiB

BIN
assets/screenshots/0.5.0/context_menu.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

BIN
assets/screenshots/0.5.0/now_playing.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

2
src/package.json

@ -1,7 +1,7 @@
{
"name": "sonixd",
"productName": "Sonixd",
"version": "0.4.1",
"version": "0.5.0",
"description": "A full-featured Subsonic API compatible cross-platform desktop client",
"main": "./main.prod.js",
"author": {

Loading…
Cancel
Save