Skip to content

Commit

Permalink
3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchray committed Sep 15, 2024
1 parent 813d674 commit cb94796
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [3.0.3] - 2024-09-15

### Requires at least Ampache 6.6.0

### Fixed

- Share toggles were not set correctly
- Avoid recursive loop edge case when no items in queue are eligible to play
- Mass rating would only work on the last disk in multi-disk releases

## [3.0.2] - 2024-09-13

### Requires at least Ampache 6.6.0
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ample-ampache-client",
"version": "3.0.2",
"version": "3.0.3",
"type": "module",
"scripts": {
"build": "vite build && npm run copy",
Expand Down Expand Up @@ -54,4 +54,4 @@
"uuid": "^9.0.1",
"wavesurfer.js": "7.8.0"
}
}
}
4 changes: 2 additions & 2 deletions src/components/action/items/actionShareCreate.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
import DrawerShareEdit from "~/components/action/drawers/drawerShareEdit.svelte";
import MaterialSymbol from "~/components/materialSymbol.svelte";
import { API } from "~/stores/state.js";
import { systemPreference } from "~/logic/preferences.js";
import { userPreference } from "~/logic/preferences.js";
export let contextKey;
const { _item, _type } = getContext(contextKey);
const sharePreference = systemPreference("share");
const sharePreference = userPreference("share");
let drawerShare;
let loaded = false;
let newShare;
Expand Down
4 changes: 2 additions & 2 deletions src/components/sidebar/sidebar_content.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
import MaterialSymbol from "~/components/materialSymbol.svelte";
import { Saved } from "~/stores/settings.js";
import { onMount } from "svelte";
import { systemPreference } from "~/logic/preferences.js";
import { userPreference } from "~/logic/preferences.js";
const sharePreference = systemPreference("share");
const sharePreference = userPreference("share");
let savedStatuses = {};
let featuresReady = false;
Expand Down
4 changes: 2 additions & 2 deletions src/stores/state.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import AmpacheAPI from "javascript-ampache";
export let debugMode = writable(false);

// Ample version
export let ampleVersion = readable("3.0.2");
export let ampleVersion = readable("3.0.3");

// Ampache API version this app should use
export let APIVersion = writable("6.6.0");
Expand Down Expand Up @@ -72,5 +72,5 @@ export const IsMobile = readable(false, function start(set) {
// Kick-off
handleDeviceChange(mobile);

return function stop() {};
return function stop() { };
});

0 comments on commit cb94796

Please sign in to comment.