Rename project to trailhead-path-bookmarker

- npm name: trailhead-path-bookmarker (package.json + lockfile)
- electron-builder appId: com.dbeuttel.trailhead-path-bookmarker
- AppUserModelId in main.js matches the new appId
- README title updated; userData path now %APPDATA%\Trailhead Path Bookmarker

Icon generator now emits both sizes:
- assets/tray-icon.png (32x32) for the system tray
- assets/app-icon.png (256x256) for electron-builder's win.icon, which
  rejects PNGs smaller than 256
This commit is contained in:
David
2026-04-29 10:27:25 -04:00
parent 77c06d664b
commit 704e172da9
7 changed files with 91 additions and 65 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
{
"name": "folder-bookmark-tray",
"name": "trailhead-path-bookmarker",
"version": "0.1.0",
"description": "Windows system tray app for bookmarking folders with quick-action buttons (Explorer, Terminal, Claude, Visual Studio).",
"main": "electron/main.js",
@@ -28,7 +28,7 @@
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.dbeuttel.folder-bookmark-tray",
"appId": "com.dbeuttel.trailhead-path-bookmarker",
"productName": "Trailhead Path Bookmarker",
"files": [
"electron/**/*",
@@ -37,7 +37,7 @@
],
"win": {
"target": "nsis",
"icon": "assets/tray-icon.png"
"icon": "assets/app-icon.png"
},
"nsis": {
"oneClick": false,