Skip to content

Commit

Permalink
3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchray committed Jan 28, 2025
1 parent 0f4d54e commit 1e6c29d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ample-ampache-client",
"version": "3.5.0-beta1",
"version": "3.5.0",
"type": "module",
"scripts": {
"build": "vite build && npm run copy",
Expand Down
2 changes: 1 addition & 1 deletion src/logic/migrations.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { compareVersions } from "compare-versions";

const migrations = [
{
version: "3.5.0-beta1",
version: "3.5.0",
migrate: async () => {
// migrate indexedDB AmpleUser1 (presumably the sole admin account in most cases)

Expand Down
2 changes: 1 addition & 1 deletion 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.5.0-beta1");
export let ampleVersion = readable("3.5.0");

// Ampache API version this app should use
export let APIVersion = writable("6.6.0");
Expand Down

0 comments on commit 1e6c29d

Please sign in to comment.