When packaging an appx format installer using electron-builder, it seems that the corresponding icons are missing. #17750
Unanswered
LuSrackhall
asked this question in
CLI - Electron mode
Replies: 1 comment
-
appx 所需图标文件列表如下
由于没有默认提供, 目前的工作流程需要通过
{
"params": {
"icon": "your icon srouce file",
"quality": 12,
"themeColor": "ffffff"
},
"assets": [
{
"generator": "png",
"name": "StoreLogo.png",
"folder": "src-electron/appx",
"sizes": [50]
},
{
"generator": "png",
"name": "Square150x150Logo.png",
"folder": "src-electron/appx",
"sizes": [150]
},
{
"generator": "png",
"name": "Square44x44Logo.png",
"folder": "src-electron/appx",
"sizes": [44]
},
{
"generator": "png",
"name": "Wide310x150Logo.png",
"folder": "src-electron/appx",
"sizes": [310, 150]
},
{
"generator": "png",
"name": "BadgeLogo.png",
"folder": "src-electron/appx",
"sizes": [24]
},
{
"generator": "png",
"name": "LargeTile.png",
"folder": "src-electron/appx",
"sizes": [310]
},
{
"generator": "png",
"name": "SmallTile.png",
"folder": "src-electron/appx",
"sizes": [71]
},
{
"generator": "png",
"name": "SplashScreen.png",
"folder": "src-electron/appx",
"sizes": [620, 300]
}
]
}
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Icons currently generable in Quasar.
Icon requirements for appx packaging
Currently, in the Quasar community, I did a simple search and it seems that no one has raised a similar issue. (Perhaps because it's not too difficult to solve.)
However, if it could be documented or directly integrated, it would make Quasar more user-friendly. (I spent nearly a few hours solving this issue myself.)
The reason for recording this discussion is to help others who might need it.
Beta Was this translation helpful? Give feedback.
All reactions