Skip to content

Commit

Permalink
feat(config): adapt to the new mac icon
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream committed Jul 6, 2021
1 parent 35b182a commit 97e10b0
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
Binary file removed public/icons/Icon.icns
Binary file not shown.
File renamed without changes.
File renamed without changes
Binary file added public/icons/mac/Icon.icns
Binary file not shown.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
height: 300px;
display: inline-block;
overflow: hidden;
background: url('./app.png') no-repeat;
background: url('./icons/app.png') no-repeat;
background-size: 32% 32%;
background-position: 50%;
}
Expand Down
6 changes: 3 additions & 3 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ module.exports = {
productName: 'MQTTX',
win: {
artifactName: 'MQTTX.Setup.${version}.${ext}',
icon: './public/app.ico',
icon: './public/icons/app.ico',
},
mac: {
icon: './public/icons/Icon.icns',
icon: './public/icons/mac/Icon.icns',
target: ['pkg', 'dmg', 'zip'],
},
linux: {
icon: './public/app.png',
icon: './public/icons/app.png',
target: ['AppImage', 'deb', 'rpm', 'snap'],
},
},
Expand Down

0 comments on commit 97e10b0

Please sign in to comment.