Skip to content

Commit

Permalink
Clarify icon not found warning (#26)
Browse files Browse the repository at this point in the history
* clarify icon not found warning

* rephrasing

* remove redundant PNG

* remove duplicate whitespace

* change icon resolution requirement
  • Loading branch information
matthme authored Jan 14, 2025
1 parent f867d67 commit db27c2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create-icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function generateIcons() {
const icnsOutPath = path.join(buildDir, 'icon.icns');

if (!fs.existsSync(pngPath)) {
console.warn("WARNING: No icon.png found in your webhapp's UI assets.");
console.warn("WARNING: No icon.png found. If you're using the systray option, an icon.png (256x256 pixel) is required to be provided at the root level of your webhapp's UI assets.");
return;
}

Expand Down

0 comments on commit db27c2e

Please sign in to comment.