Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new macOS icon #372

Merged
merged 5 commits into from
Feb 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update electron-builder.js
  • Loading branch information
mdibella-dev committed Feb 5, 2023
commit 61e26c5f1ea31625bc40c3563497b4bc6d6176e0
9 changes: 5 additions & 4 deletions script/electron-builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ const builder = require("electron-builder")
const Platform = builder.Platform


const pngIcon = 'resources/app-icons/beta.png'
const icoIcon = 'resources/app-icons/beta.ico'
const svgIcon = 'resources/app-icons/beta.svg'
const pngIcon = 'resources/app-icons/beta.png'
const icoIcon = 'resources/app-icons/beta.ico'
const svgIcon = 'resources/app-icons/beta.svg'
mdibella-dev marked this conversation as resolved.
Show resolved Hide resolved
const icnsIcon = 'resources/app-icons/beta.icns'

let options = {
"appId": "dev.pulsar-edit.pulsar",
Expand Down Expand Up @@ -168,7 +169,7 @@ let options = {
// Extra SVG icon included in the resources folder to give a chance to
// Linux packagers to add a scalable desktop icon under
// /usr/share/icons/hicolor/scalable
// (used only by desktops to show it on bar/switcher and app menus).
// (used only by desktops to show it on bar/switcher and app menus).
"from": svgIcon,
"to": "pulsar.svg"
},
Expand Down