Compare commits
No commits in common. "510812f38499d19f552d1617d3448fbca08c8daa" and "1610e3cc05e6ceba081f784d271ea836ccf12dff" have entirely different histories.
510812f384
...
1610e3cc05
@ -10,7 +10,6 @@ The web version of [listen.tidal.com](https://listen.tidal.com) running in elect
|
|||||||
|
|
||||||
<!-- toc -->
|
<!-- toc -->
|
||||||
|
|
||||||
|
|
||||||
- [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)
|
- [Table of Contents](#table-of-contents)
|
||||||
- [Features](#features)
|
- [Features](#features)
|
||||||
@ -42,7 +41,6 @@ The web version of [listen.tidal.com](https://listen.tidal.com) running in elect
|
|||||||
- Notifications
|
- Notifications
|
||||||
- Custom [theming](./docs/theming.md)
|
- Custom [theming](./docs/theming.md)
|
||||||
- Custom hotkeys ([source](https://defkey.com/tidal-desktop-shortcuts))
|
- 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`)
|
- [Settings feature](./docs/images/settings.png) to disable certain functionality. (`ctrl+=` or `ctrl+0`)
|
||||||
- API for status and playback
|
- 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))
|
- 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))
|
||||||
|
BIN
assets/TIDAL.icns
Executable file
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 102 KiB |
BIN
assets/icon.png
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 102 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 5.6 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 9.8 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 102 KiB |
BIN
build/icon.icns
Normal file → Executable file
BIN
build/icon.png
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 102 KiB |
@ -1,16 +0,0 @@
|
|||||||
#!/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
|
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 102 KiB |