Android Icons + Debug Fixes
continuous-integration/drone/pr Build is passing
Details
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 8.8 KiB |
After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 9.7 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
@ -1,31 +1,38 @@
|
||||
#!/bin/sh
|
||||
|
||||
orig=assets/core/knott-white.svg
|
||||
transparent=assets/core/knott-transparent.svg
|
||||
|
||||
# app icon used in profile manager bar
|
||||
inkscape -w 512 -h 512 -e assets/core/knott-white.png $orig
|
||||
inkscape -w 512 -h 512 -o assets/core/knott-white.png $orig
|
||||
inkscape -w 512 -h 512 -o assets/core/knott-transparent.png transparent
|
||||
|
||||
# linux deploy icon
|
||||
inkscape -w 512 -h 512 -e linux/cwtch.png $orig
|
||||
inkscape -w 512 -h 512 -e cwtch.png $orig
|
||||
inkscape -w 512 -h 512 -o linux/cwtch.png $orig
|
||||
inkscape -w 512 -h 512 -o cwtch.png $orig
|
||||
|
||||
# windows icons
|
||||
inkscape -w 256 -h 256 -e windows/runner/resources/knot_256.png $orig
|
||||
inkscape -w 256 -h 256 -o windows/runner/resources/knot_256.png $orig
|
||||
convert windows/runner/resources/knot_256.png windows/runner/resources/knot_256.ico
|
||||
inkscape -w 128 -h 128 -e windows/runner/resources/knot_128.png $orig
|
||||
inkscape -w 128 -h 128 -o windows/runner/resources/knot_128.png $orig
|
||||
convert windows/runner/resources/knot_128.png windows/runner/resources/knot_128.ico
|
||||
inkscape -w 64 -h 64 -e windows/runner/resources/knot_64.png $orig
|
||||
inkscape -w 64 -h 64 -o windows/runner/resources/knot_64.png $orig
|
||||
convert windows/runner/resources/knot_64.png windows/runner/resources/knot_64.ico
|
||||
inkscape -w 48 -h 48 -e windows/runner/resources/knot_48.png $orig
|
||||
inkscape -w 48 -h 48 -o windows/runner/resources/knot_48.png $orig
|
||||
convert windows/runner/resources/knot_48.png windows/runner/resources/knot_48.ico
|
||||
inkscape -w 32 -h 32 -e windows/runner/resources/knot_32.png $orig
|
||||
inkscape -w 32 -h 32 -o windows/runner/resources/knot_32.png $orig
|
||||
convert windows/runner/resources/knot_32.png windows/runner/resources/knot_32.ico
|
||||
inkscape -w 16 -h 16 -e windows/runner/resources/knot_16.png $orig
|
||||
inkscape -w 16 -h 16 -o windows/runner/resources/knot_16.png $orig
|
||||
convert windows/runner/resources/knot_16.png windows/runner/resources/knot_16.ico
|
||||
|
||||
# android icons
|
||||
inkscape -w 48 -h 48 -e android/app/src/main/res/mipmap-mdpi/knott.png $orig
|
||||
inkscape -w 72 -h 72 -e android/app/src/main/res/mipmap-hdpi/knott.png $orig
|
||||
inkscape -w 96 -h 96 -e android/app/src/main/res/mipmap-xhdpi/knott.png $orig
|
||||
inkscape -w 144 -h 144 -e android/app/src/main/res/mipmap-xxhdpi/knott.png $orig
|
||||
inkscape -w 192 -h 192 -e android/app/src/main/res/mipmap-xxxhdpi/knott.png $orig
|
||||
inkscape -w 48 -h 48 -o android/app/src/main/res/mipmap-mdpi/knott_transparent.png $transparent
|
||||
inkscape -w 48 -h 48 -o android/app/src/main/res/mipmap-mdpi/knott.png $orig
|
||||
inkscape -w 72 -h 72 -o android/app/src/main/res/mipmap-hdpi/knott_transparent.png $transparent
|
||||
inkscape -w 72 -h 72 -o android/app/src/main/res/mipmap-hdpi/knott.png $orig
|
||||
inkscape -w 96 -h 96 -o android/app/src/main/res/mipmap-xhdpi/knott_transparent.png $transparent
|
||||
inkscape -w 96 -h 96 -o android/app/src/main/res/mipmap-xhdpi/knott.png $orig
|
||||
inkscape -w 144 -h 144 -o android/app/src/main/res/mipmap-xxhdpi/knott_transparent.png $transparent
|
||||
inkscape -w 144 -h 144 -o android/app/src/main/res/mipmap-xxhdpi/knott.png $orig
|
||||
inkscape -w 192 -h 192 -o android/app/src/main/res/mipmap-xxxhdpi/knott_transparent.png $transparent
|
||||
inkscape -w 192 -h 192 -o android/app/src/main/res/mipmap-xxxhdpi/knott.png $orig
|
||||
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 899 B |
After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 5.3 KiB |