Skip to content

Commit

Permalink
docs: bump version to v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 18, 2023
1 parent 0d06ab4 commit 564358a
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 65 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "chorus",
"private": true,
"type": "module",
"version": "1.8.1",
"version": "1.9.0",
"scripts": {
"build:chrome": "TARGET=chrome rollup -c",
"watch:chrome": "TARGET=chrome rollup -c -w",
Expand Down
66 changes: 34 additions & 32 deletions src/manifest.chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"short_name": "Chorus",
"name": "Chorus - Spotify Enhancer",
"description": "Enhance Spotify with controls to save favourite snips, auto-skip tracks, and set global and custom speed. More to come!",
"version": "1.8.1",
"version": "1.9.0",
"manifest_version": 3,
"author": "cdrani",
"action": {},
Expand Down Expand Up @@ -46,36 +46,36 @@
}
],
"commands": {
"next": {
"description": "Next Track"
},
"play/pause": {
"description": "Play/Pause"
},
"repeat": {
"description": "Repeat Track"
},
"shuffle": {
"description": "Shuffle Tracks"
},
"previous": {
"description": "Previous Track"
},
"settings": {
"description": "Display Controls"
},
"mute/unmute": {
"description": "Mute/Unmute Track"
},
"seek-fastforward": {
"description": "Seek Track Forwards"
},
"seek-rewind": {
"description": "Seek Track Backwards"
},
"save/unsave": {
"description": "Save/Unsave Track"
}
"next": {
"description": "Next Track"
},
"play/pause": {
"description": "Play/Pause"
},
"repeat": {
"description": "Repeat Track"
},
"shuffle": {
"description": "Shuffle Tracks"
},
"previous": {
"description": "Previous Track"
},
"settings": {
"description": "Display Controls"
},
"mute/unmute": {
"description": "Mute/Unmute Track"
},
"seek-fastforward": {
"description": "Seek Track Forwards"
},
"seek-rewind": {
"description": "Seek Track Backwards"
},
"save/unsave": {
"description": "Save/Unsave Track"
}
},
"permissions": [
"activeTab",
Expand All @@ -84,7 +84,9 @@
"storage",
"unlimitedStorage"
],
"host_permissions": ["*://open.spotify.com/"],
"host_permissions": [
"*://open.spotify.com/"
],
"background": {
"service_worker": "background.js"
}
Expand Down
66 changes: 34 additions & 32 deletions src/manifest.firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"short_name": "Chorus",
"name": "Chorus - Spotify Enhancer",
"description": "Enhance Spotify with controls to save favourite snips, auto-skip tracks, and set global and custom speed. More to come!",
"version": "1.8.1",
"version": "1.9.0",
"manifest_version": 3,
"author": "cdrani",
"action": {},
Expand Down Expand Up @@ -46,36 +46,36 @@
}
],
"commands": {
"next": {
"description": "Next Track"
},
"play/pause": {
"description": "Play/Pause"
},
"repeat": {
"description": "Repeat Track"
},
"shuffle": {
"description": "Shuffle Tracks"
},
"previous": {
"description": "Previous Track"
},
"settings": {
"description": "Display Controls"
},
"mute/unmute": {
"description": "Mute/Unmute Track"
},
"seek-fastforward": {
"description": "Seek Track Forwards"
},
"seek-rewind": {
"description": "Seek Track Backwards"
},
"save/unsave": {
"description": "Save/Unsave Track"
}
"next": {
"description": "Next Track"
},
"play/pause": {
"description": "Play/Pause"
},
"repeat": {
"description": "Repeat Track"
},
"shuffle": {
"description": "Shuffle Tracks"
},
"previous": {
"description": "Previous Track"
},
"settings": {
"description": "Display Controls"
},
"mute/unmute": {
"description": "Mute/Unmute Track"
},
"seek-fastforward": {
"description": "Seek Track Forwards"
},
"seek-rewind": {
"description": "Seek Track Backwards"
},
"save/unsave": {
"description": "Save/Unsave Track"
}
},
"permissions": [
"tabs",
Expand All @@ -84,7 +84,9 @@
"scripting",
"unlimitedStorage"
],
"host_permissions": ["*://open.spotify.com/"],
"host_permissions": [
"*://open.spotify.com/"
],
"background": {
"scripts": [
"background.js"
Expand Down

0 comments on commit 564358a

Please sign in to comment.