Is your feature request related to a problem? Please describe.
The main app icon has very pixelated edges on Win 10. This applies to the taskbar as well as to the tray. Given the modern and polished appearance of the GUI itself that looks very unfitting
Describe the solution you'd like
Include a high quality scalable app icon
Is this similar to #159?
Probably the same
What version are you using?
5.4.0
Hmm ok, the issue I linked should have fixed this in 5.4.0 but it looks like it didn't - reopening the issue
I have windows scaled to 110% but all other icons look sharp without exception


I think the point ist to include a multisize-ico in the exe file, not just a single size. From the looks of it you inluded a singel size icon, and windows does not scale that down nicely. So I took the largest icon-PNG from the repo and converted it to a multisize-ico with all sizes from 32 to 256px. With resource hacker I replaced the icon in ferdi.exe with the multisize-version - viola! :)

I could not find the tray icon to replace that, though.
I am not sure what to change here and I'm missing a Windows install to give it a try; nonetheless, I see we are already referencing an 256px icon in the electron-builder file, but maybe we need to include more size for Windows to resolve the relevant one and show the scaled version correctly?
Please note — build resources is not packed into the app. If you need to use some files, e.g. as tray icon, please include required files explicitly: "files": ["*/", "build/icon.*"]
Via https://www.electron.build/configuration/configuration#MetadataDirectories-buildResources
Will have to give it a try by specifically adding builder-helper/images/icons files to the win section?
I don't know how this is built on your side, but Resource Hacker excepts an .ico file. And just like for favicon.ico files that file can be multisize / multilayer - containing different sizes from 16px up to 256px (usually, I don't think there is a limit, though). If windows does the scaling down from 256px, it looks rugged. With the exe providing different sizes Windows will use the appropriate one.
Maybe you can simply use an ico like that instead of the single size img?

btw which file contains the tray icon?
I think it's the file referenced here for now. Maybe we can try to replace the current (not-multisize) .ico file with the (multisize) .ico you generated?
I used the icon-ferdi-seamless.png and sent it through a converter like this: https://icoconvert.com/
In Step 4 select custom multisize and the sizes required (I selected all from 16 to 256), then "Convert ICO"
I would paste it here, but the editor does not take .ico files
Roger that, giving it a try now.
Shipped in v5.4.1-beta.4.
@VOOM108 Can you confirm that fixed it?
Yes, that fixed it, looks good :)