claude-rpc 0.11.0 → 0.11.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-rpc",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Discord Rich Presence for Claude Code — live model, project, tokens, and lifetime stats driven by Claude Code's hook system.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -94,7 +94,9 @@ body {
94
94
  .msrow .pct { width: 44px; opacity: 0.85; }
95
95
 
96
96
  /* ── finale summary ──────────────────────────────────────────── */
97
- .summary { width: min(92vw, 460px); }
97
+ /* z-index lifts the card + action buttons ABOVE the full-screen .tap nav
98
+ zones (z-index 20) — otherwise the tap layer swallows every button click. */
99
+ .summary { width: min(92vw, 460px); position: relative; z-index: 24; }
98
100
  .card {
99
101
  background: var(--paper); color: var(--ink); border: 2px solid var(--ink);
100
102
  box-shadow: 8px 9px 0 rgba(0,0,0,0.35); padding: 24px 24px 20px; text-align: left;
package/src/version.js CHANGED
@@ -11,7 +11,7 @@ import { readFileSync } from 'node:fs';
11
11
  import { join } from 'node:path';
12
12
  import { ROOT } from './paths.js';
13
13
 
14
- const BAKED = '0.11.0';
14
+ const BAKED = '0.11.1';
15
15
 
16
16
  function readPkgVersion() {
17
17
  try {