Replace .ico/.icns icons with higher-res versions.

'pesterchum.ico' contains pc_chummy.png upscaled with Gimp to 16x16, 32x32, 64x64, 128x128, and 256x256. The previous icon only contained 16x16 and 32x32.
'pesterchum.icns' is pc_chummy.png upscaled to 512x512 with Gimp, converted to .icns with Pillow.

Should hopefully solve the awful anti-aliasing and interpolation artifacts some systems introduce when upscaling the icons.
This commit is contained in:
Dpeta 2023-03-08 15:38:50 +01:00
parent 5b42a2cd71
commit 7ac5106e02
No known key found for this signature in database
GPG key ID: 51227517CEA0030C
6 changed files with 3 additions and 3 deletions

BIN
img/icon/pesterchum.icns Normal file

Binary file not shown.

BIN
img/icon/pesterchum.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -364,7 +364,7 @@ if sys.platform == "win32":
"--name=Pesterchum",
#'--noconfirm', # Overwrite output directory.
#'--windowed', # Hide console
"--icon=pesterchum.ico",
"--icon={}".format(os.path.join("img", "icon", "pesterchum.ico")),
"--clean", # Clear cache
]
@ -702,7 +702,7 @@ elif sys.platform == "darwin":
"--name=Pesterchum",
#'--windowed', # Hide console
#'--noconfirm', # Overwrite output directory.
"--icon=trayicon32.icns", # Icon
"--icon={}".format(os.path.join("img", "icon", "pesterchum.icns")),
"--onedir",
"--clean", # Clear cache
#'--noupx'
@ -734,7 +734,7 @@ elif sys.platform == "linux":
"--name=Pesterchum",
#'--windowed', # Hide console
#'--noconfirm', # Overwrite output directory.
"--icon=trayicon32.icns", # Icon
"--icon={}".format(os.path.join("img", "icon", "pesterchum.ico")),
"--clean", # Clear cache
]

Binary file not shown.