Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #175 from leaphy-robotics/icon-mac-and-linux
Browse files Browse the repository at this point in the history
Fix #79 #74 Fix icons multiple platforms
  • Loading branch information
Paul authored Jan 28, 2022
2 parents 022b3e1 + d8e905b commit 2e52c1c
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,27 @@ module.exports = {
{
name: "@electron-forge/maker-dmg",
config: {
iconUrl: "file://easybloqs-icon.ico"
icon: './easybloqs-icon.ico',
name: 'Easybloqs'
}
},
{
name: "@electron-forge/maker-deb",
config: {}
config: {
options: {
icon: './easybloqs-icon.ico',
productName: 'Easybloqs'
}
}
},
{
name: "@electron-forge/maker-rpm",
config: {},
config: {
options: {
icon: './easybloqs-icon.ico',
productName: 'Easybloqs'
}
}
}
],
publishers: [
Expand Down

0 comments on commit 2e52c1c

Please sign in to comment.