Files
BizGaze_Remote/desktop/package.json
T
Sravan e5c94ebf6d fix: login submits on Enter (real <form>) + desktop notifications show "Biz Connect"
- home.html: login is now a real <form> with a submit button, so Enter (or click) both
  submit natively — replaces the ad-hoc keydown handler. (build batch19; header stays removed)
- desktop/main.js: app.setAppUserModelId('com.bizgaze.connect.desktop') so Windows resolves
  the installed shortcut and toasts read "Biz Connect" instead of "electron.app.BizConnect".
- desktop version → 0.1.1; installer rebuilt.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-01 18:19:01 +05:30

38 lines
1.2 KiB
JSON

{
"name": "biz-connect-desktop",
"version": "0.1.1",
"description": "Biz Connect technician desktop client — loads the Connect web UI with native screen capture",
"author": { "name": "BizGaze", "email": "support@bizgaze.com" },
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"dependencies": {
"electron-updater": "^6.3.9"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.bizgaze.connect.desktop",
"productName": "Biz Connect",
"directories": { "buildResources": "build", "output": "dist" },
"publish": [
{ "provider": "generic", "url": "https://remote.bizgaze.com/downloads/" }
],
"win": { "target": "nsis", "icon": "build/icon.ico" },
"nsis": {
"oneClick": true,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Biz Connect",
"runAfterFinish": true
},
"mac": { "target": "dmg", "category": "public.app-category.business", "icon": "build/icon.ico" },
"linux": { "target": "AppImage", "category": "Network" }
}
}