clauddy 1.2.0 → 1.3.0

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/README.md +19 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -52,15 +52,15 @@ Plus a welcome **wave** on launch. You can [poke the pet from the terminal](#pla
52
52
 
53
53
  macOS (Apple Silicon). Two ways, depending on what you want:
54
54
 
55
- ### 1. Download the app — opens at login (recommended)
55
+ ### 1. Install as an app — opens at login (recommended)
56
56
 
57
- For everyday use, grab the prebuilt app no terminal, no setup:
57
+ One command it downloads the latest release and drops it in `/Applications`:
58
58
 
59
- 1. Download the latest **`Claude Usage Monitor-…-mac.zip`** from the [**Releases**](https://github.com/renatoaug/claude-usage-monitor/releases/latest) page.
60
- 2. Unzip it and drag **Claude Usage Monitor.app** into `/Applications`.
61
- 3. First open: right-click the app → **Open** → **Open** (it's unsigned).
59
+ ```bash
60
+ curl -fsSL https://raw.githubusercontent.com/renatoaug/claude-usage-monitor/main/install.sh | bash
61
+ ```
62
62
 
63
- It registers itself in **Login Items**, so it **starts automatically** with your Mac — set it and forget it.
63
+ No Gatekeeper warning: files fetched with `curl` aren't quarantined like browser downloads, so the (unsigned) app just opens. It registers itself in **Login Items**, so it **starts automatically** with your Mac — set it and forget it.
64
64
 
65
65
  ### 2. Run it via `bunx` (no install)
66
66
 
@@ -74,6 +74,19 @@ The first run downloads Electron, so give it a moment. Handy for a quick run, bu
74
74
 
75
75
  > The app keeps its data in `~/.claude-usage-monitor`, regardless of how you run it.
76
76
 
77
+ <details>
78
+ <summary>Prefer to download the app by hand?</summary>
79
+
80
+ Grab the **`…-mac.zip`** from [Releases](https://github.com/renatoaug/claude-usage-monitor/releases/latest), unzip, and drag the app to `/Applications`. The browser quarantines it, so macOS will call it *"damaged"* — clear the flag once (Terminal needs **Full Disk Access**):
81
+
82
+ ```bash
83
+ xattr -dr com.apple.quarantine "/Applications/Claude Usage Monitor.app"
84
+ ```
85
+
86
+ The `curl` installer above avoids all of this.
87
+
88
+ </details>
89
+
77
90
  ## Controls
78
91
 
79
92
  - **Drag** the widget anywhere on screen
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clauddy",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "description": "A cute desktop pet that tracks your Claude Code usage",
5
5
  "main": "main.js",
6
6
  "bin": {