Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchray committed Apr 6, 2022
1 parent 86a1cfa commit 1c3fdf2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.32.0] - 2022-04-06
### Fixed
- Could not scroll queue using touch devices

### Changed
- Reorder queue items by dragging the cover art
- A few colour tweaks here and there

## [0.31.0] - 2022-01-23
### Fixed
- Lister column resize handles and checkboxes were not visible in dark mode
Expand Down
5 changes: 5 additions & 0 deletions src/components/queue.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@
margin-right: var(--spacing-md);
border: 1px solid hsla(0, 0%, 50%, 0.2);
line-height: 0;
cursor: grab;
}
.thumb img {
Expand Down Expand Up @@ -324,6 +325,10 @@
box-shadow: var(--shadow-lg);
}
:global(.queue-dragging) .thumb {
cursor: grabbing;
}
.queue-item + .queue-item {
margin-top: 2px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/stores/player.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { readable, writable } from 'svelte/store';
import Player from '../logic/player'

export let ampleVersion = readable("0.31.0");
export let ampleVersion = readable("0.32.0");

export let MediaPlayer = writable(new Player);

Expand Down

0 comments on commit 1c3fdf2

Please sign in to comment.