diff --git a/README.md b/README.md index abac078..a881ed5 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The web version of [listen.tidal.com](https://listen.tidal.com) running in elect -- [TIDAL Hi-Fi (Max quality)](#tidal-hi-fi-max-quality-) +- [TIDAL Hi-Fi (Max quality) ](#tidal-hi-fi-max-quality-) - [Table of Contents](#table-of-contents) - [Features](#features) - [Contributions](#contributions) @@ -41,6 +41,7 @@ The web version of [listen.tidal.com](https://listen.tidal.com) running in elect - Notifications - Custom [theming](./docs/theming.md) - Custom hotkeys ([source](https://defkey.com/tidal-desktop-shortcuts)) +- Better icons thanks to [Papirus-icon-theme](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/) - [Settings feature](./docs/images/settings.png) to disable certain functionality. (`ctrl+=` or `ctrl+0`) - API for status and playback - Disabled audio & visual ads, unlocked lyrics, suggested track, track info, and unlimited skips thanks to uBlockOrigin custom filters ([source](https://github.com/uBlockOrigin/uAssets/issues/17495)) diff --git a/assets/TIDAL.icns b/assets/TIDAL.icns deleted file mode 100755 index e587578..0000000 Binary files a/assets/TIDAL.icns and /dev/null differ diff --git a/assets/icon-inverted.png b/assets/icon-inverted.png index 17abbd5..c3d1e38 100644 Binary files a/assets/icon-inverted.png and b/assets/icon-inverted.png differ diff --git a/assets/icon.png b/assets/icon.png index 31838df..0ff0d5b 100644 Binary files a/assets/icon.png and b/assets/icon.png differ diff --git a/assets/icons/128x128.png b/assets/icons/128x128.png index b627e54..d8effde 100644 Binary files a/assets/icons/128x128.png and b/assets/icons/128x128.png differ diff --git a/assets/icons/16x16.png b/assets/icons/16x16.png index 245778c..0f1cb27 100644 Binary files a/assets/icons/16x16.png and b/assets/icons/16x16.png differ diff --git a/assets/icons/22x22.png b/assets/icons/22x22.png index 69bd795..ab4d4ec 100644 Binary files a/assets/icons/22x22.png and b/assets/icons/22x22.png differ diff --git a/assets/icons/24x24.png b/assets/icons/24x24.png index 949e47a..0dc67a3 100644 Binary files a/assets/icons/24x24.png and b/assets/icons/24x24.png differ diff --git a/assets/icons/256x256.png b/assets/icons/256x256.png index 16f86f2..66a099a 100644 Binary files a/assets/icons/256x256.png and b/assets/icons/256x256.png differ diff --git a/assets/icons/32x32.png b/assets/icons/32x32.png index 7e502ab..956117d 100644 Binary files a/assets/icons/32x32.png and b/assets/icons/32x32.png differ diff --git a/assets/icons/384x384.png b/assets/icons/384x384.png index 3215e4c..4bb67f8 100644 Binary files a/assets/icons/384x384.png and b/assets/icons/384x384.png differ diff --git a/assets/icons/48x48.png b/assets/icons/48x48.png index 6821fe2..c44b423 100644 Binary files a/assets/icons/48x48.png and b/assets/icons/48x48.png differ diff --git a/assets/icons/64x64.png b/assets/icons/64x64.png index 1e02797..5b4cc85 100644 Binary files a/assets/icons/64x64.png and b/assets/icons/64x64.png differ diff --git a/build/icon-inverted.png b/build/icon-inverted.png index 17abbd5..c3d1e38 100644 Binary files a/build/icon-inverted.png and b/build/icon-inverted.png differ diff --git a/build/icon.icns b/build/icon.icns old mode 100755 new mode 100644 index e587578..5e75873 Binary files a/build/icon.icns and b/build/icon.icns differ diff --git a/build/icon.png b/build/icon.png index 31838df..0ff0d5b 100644 Binary files a/build/icon.png and b/build/icon.png differ diff --git a/scripts/resize-icons.sh b/scripts/resize-icons.sh new file mode 100644 index 0000000..a5e2d78 --- /dev/null +++ b/scripts/resize-icons.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +if [ "$1" != "" ]; then # check if arg 1 is present + FILE=$1 +else + echo "Please provide a file as an argument." + exit 1 +fi + +SIZES=("16x16" "22x22" "24x24" "32x32" "48x48" "64x64" "128x128" "256x256" "384x384") + +echo "Resizing $FILE..." + +for i in "${SIZES[@]}"; do + convert "$FILE" -resize "$i" "$i.png" +done diff --git a/listen.tidal.com-parsing-scripts/verifyElements.js b/scripts/verifyElements.js similarity index 100% rename from listen.tidal.com-parsing-scripts/verifyElements.js rename to scripts/verifyElements.js diff --git a/src/pages/settings/icon.png b/src/pages/settings/icon.png index 31838df..0ff0d5b 100644 Binary files a/src/pages/settings/icon.png and b/src/pages/settings/icon.png differ