-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from Pithaya/develop
Update better local files, fixes and refactor
- Loading branch information
Showing
197 changed files
with
3,872 additions
and
6,835 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
spicetify.d.ts | ||
dist | ||
node_modules | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
.vscode | ||
node_modules | ||
custom-apps/*/dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"eslint.workingDirectories": [ | ||
{ | ||
"mode": "auto" | ||
} | ||
], | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,26 @@ | ||
{ | ||
"name": "better-local-files", | ||
"version": "1.0.0", | ||
"version": "2.0.0", | ||
"private": true, | ||
"scripts": { | ||
"init": "npm run build && npm run apply", | ||
"build": "spicetify-creator", | ||
"build-local": "spicetify-creator --out=dist --minify", | ||
"watch": "spicetify-creator --watch", | ||
"launch-watch": "spicetify enable-devtools && spicetify watch -le", | ||
"launch-watch": "spicetify watch -a", | ||
"apply": "spicetify config custom_apps better-local-files && spicetify apply", | ||
"unapply": "spicetify config custom_apps better-local-files- && spicetify apply", | ||
"lint": "npx eslint --ext .tsx,.ts src/" | ||
"lint": "npx tsc --noemit && npx eslint --ext .tsx,.ts src/", | ||
"format": "npx prettier --write src/" | ||
}, | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/pixelmatch": "^5.2.4", | ||
"lucide-react": "^0.115.0", | ||
"lucide-react": "^0.299.0", | ||
"observable-hooks": "^4.2.3", | ||
"pixelmatch": "^5.3.0", | ||
"react-markdown": "8.0.6", | ||
"rxjs": "^7.8.0", | ||
"spcr-whats-new": "^1.0.1" | ||
"rxjs": "^7.8.1", | ||
"spcr-whats-new": "^1.0.1", | ||
"use-fit-text": "^2.4.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export const CHANGE_NOTES = ` | ||
* New "Clear cache" option in the menu. | ||
* A notification will show if a new update is available. | ||
`; | ||
export const CHANGE_NOTES = [ | ||
'Added drag and drop to the track list and album cards', | ||
'Select multiple tracks by holding the Ctrl key and clicking on the tracks', | ||
'Switch between list and compact display modes', | ||
]; |
Oops, something went wrong.