Closed felix91gr closed 1 year ago
Okay so this is what I see:
I'm not sure how to fix it. The Makefile mentions no image under that name: 32x32.png.
Makefile
32x32.png
But if we go look at lonewolf-tauri/src-tauri/tauri.conf.json, at lines 53-57 we do seem to find the cause:
lonewolf-tauri/src-tauri/tauri.conf.json
https://github.com/aichingm/lonewolf/blob/afff8b5254628e45822bbe46793cb3788f0ed574/lonewolf-tauri/src-tauri/tauri.conf.json#L53-L57
Indeed, if I delete line 53, the error changes:
I think this error makes sense, since if we look at lonewolf-tauri/src-tauri/icons, we find only 512x512-lonewolf.png.
lonewolf-tauri/src-tauri/icons
512x512-lonewolf.png
If I delete the lines 53-57 and replace them by just "icons/512x512-lonewolf.png", the result I get is this:
"icons/512x512-lonewolf.png"
I'm still not certain the .deb binary I made is correct, but the change does seem to appease the build script.
.deb
All those icons should be created with make icons-tauri. The tauri command npm run tauri icon creates them.
make icons-tauri
npm run tauri icon
https://github.com/aichingm/lonewolf/blob/afff8b5254628e45822bbe46793cb3788f0ed574/Makefile#L207-L207
Ah, I see. Indeed, that's what was missing. Thank you :)
Okay so this is what I see:
I'm not sure how to fix it. The
Makefile
mentions no image under that name:32x32.png
.But if we go look at
lonewolf-tauri/src-tauri/tauri.conf.json
, at lines 53-57 we do seem to find the cause:https://github.com/aichingm/lonewolf/blob/afff8b5254628e45822bbe46793cb3788f0ed574/lonewolf-tauri/src-tauri/tauri.conf.json#L53-L57
Indeed, if I delete line 53, the error changes:
I think this error makes sense, since if we look at
lonewolf-tauri/src-tauri/icons
, we find only512x512-lonewolf.png
.If I delete the lines 53-57 and replace them by just
"icons/512x512-lonewolf.png"
, the result I get is this:I'm still not certain the
.deb
binary I made is correct, but the change does seem to appease the build script.