badclaude-linux 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/main.js +2 -0
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -299,6 +299,8 @@ app.whenReady().then(async () => {
299
299
  tray.setToolTip('Bad Claude – click for whip');
300
300
  tray.setContextMenu(
301
301
  Menu.buildFromTemplate([
302
+ { label: 'Whip!', click: () => toggleOverlay() },
303
+ { type: 'separator' },
302
304
  { label: 'Quit', click: () => app.quit() },
303
305
  ])
304
306
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "badclaude-linux",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Whip Claude into shape – Linux fork with multi-monitor support. Original by GitFrog1111.",
5
5
  "license": "MIT",
6
6
  "main": "main.js",