badclaude-linux 1.0.0 → 1.0.2

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 (3) hide show
  1. package/main.js +2 -0
  2. package/overlay.html +3 -3
  3. 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/overlay.html CHANGED
@@ -49,9 +49,9 @@ const P = {
49
49
  wallFriction: 0.86, // tangential damping on wall hit
50
50
 
51
51
  // Crack detection
52
- crackSpeed: 340, // tip velocity threshold to trigger crack
53
- crackCooldownMs:200, // min ms between cracks
54
- firstCrackGraceMs: 350, // no crack (macro) until this long after spawn
52
+ crackSpeed: 150, // tip velocity threshold to trigger crack (lower = more sensitive)
53
+ crackCooldownMs:150, // min ms between cracks
54
+ firstCrackGraceMs: 250, // no crack (macro) until this long after spawn
55
55
 
56
56
  // Visuals
57
57
  lineWidthHandle: 7, // rope thickness near handle
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "badclaude-linux",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
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",