Skip to content

Commit

Permalink
Merge branch 'release/1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
adufr committed Jun 13, 2023
2 parents b1c3f0a + abe22a1 commit 9f274a7
Show file tree
Hide file tree
Showing 10 changed files with 2,317 additions and 883 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module.exports = {
env: {
es2021: true,
node: true
},
extends: 'standard-with-typescript',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: './tsconfig.json'
},
rules: {
}
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.formatDocument": false,
}
}
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,21 @@ Once you have selected a playlist, you can use the new topbar button to quickly

![](https://i.imgur.com/JrgLaUk.png)

This extension is fully compatible all spicetify theme, thanks to its settions section.

You can find it by clicking on your avatar -> Settings -> Quick add to playlist (at the very bottom)
There, you can customize the "selected playlist" background color to match your current theme!

![](https://i.imgur.com/kjkgPrO.png)

## Usage Notes

- If you find any issues, please report them on the [issues page.](https://github.com/woosy/spicetify-quick-add-to-playlist/issues/new/choose)
- If you find any issues, please report them on the [issues page](https://github.com/woosy/spicetify-quick-add-to-playlist/issues/new/choose).


## Upcoming Features

- Settings, to customize the "selected playlist" background color
- Feel free to suggest any features in the [issues page](https://github.com/woosy/spicetify-quick-add-to-playlist/issues/new/choose).


## Credits
Expand Down
29 changes: 16 additions & 13 deletions dist/quick-add-to-playlist.js

Large diffs are not rendered by default.

20 changes: 16 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,28 @@
{
"name": "quick-add-to-playlist",
"version": "1.0.3",
"version": "1.1.0",
"private": true,
"scripts": {
"build": "spicetify-creator",
"build-local": "spicetify-creator --out=dist --minify",
"watch": "spicetify-creator --watch"
"watch": "spicetify-creator --watch",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix"
},
"license": "MIT",
"devDependencies": {
"@types/react": "^18.2.9",
"@types/react": "^18.2.11",
"@types/react-dom": "^18.2.4",
"spicetify-creator": "^1.0.13"
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.1.1",
"spicetify-creator": "^1.0.13",
"typescript": "5.0.4"
},
"dependencies": {
"spcr-settings": "^1.1.0"
}
}
Loading

0 comments on commit 9f274a7

Please sign in to comment.