quilltap 4.0.1 → 4.1.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.
package/README.md CHANGED
@@ -65,7 +65,7 @@ quilltap --update
65
65
 
66
66
  ## How It Works
67
67
 
68
- The `quilltap` npm package is a lightweight CLI launcher (~10 KB). On first run, it downloads the pre-built application from [GitHub Releases](https://github.com/foundry-9/quilltap/releases) and caches it in a platform-specific directory. Native modules (`better-sqlite3`, `sharp`) are compiled for your platform when you install the npm package.
68
+ The `quilltap` npm package is a lightweight CLI launcher (~10 KB). On first run, it downloads the pre-built application from [GitHub Releases](https://github.com/foundry-9/quilltap-server/releases) and caches it in a platform-specific directory. Native modules (`better-sqlite3`, `sharp`) are compiled for your platform when you install the npm package.
69
69
 
70
70
  ### Cache Locations
71
71
 
@@ -112,14 +112,14 @@ quilltap themes registry add <url> # Add a registry source
112
112
 
113
113
  ## Other Ways to Run Quilltap
114
114
 
115
- - **Electron desktop app** (macOS, Windows) - [Download](https://github.com/foundry-9/quilltap/releases)
115
+ - **Electron desktop app** (macOS, Windows) - [Download](https://github.com/foundry-9/quilltap-server/releases)
116
116
  - **Docker** - `docker run -d -p 3000:3000 -v /path/to/data:/app/quilltap foundry9/quilltap`
117
117
 
118
118
  ## Links
119
119
 
120
120
  - **Website:** [quilltap.ai](https://quilltap.ai)
121
- - **GitHub:** [github.com/foundry-9/quilltap](https://github.com/foundry-9/quilltap)
122
- - **Issues:** [github.com/foundry-9/quilltap/issues](https://github.com/foundry-9/quilltap/issues)
121
+ - **GitHub:** [github.com/foundry-9/quilltap-server](https://github.com/foundry-9/quilltap-server)
122
+ - **Issues:** [github.com/foundry-9/quilltap-server/issues](https://github.com/foundry-9/quilltap-server/issues)
123
123
 
124
124
  ## License
125
125
 
@@ -19,7 +19,7 @@ const { extractTarGz } = require('./tar-extract');
19
19
 
20
20
  const MAX_RETRIES = 3;
21
21
  const PROGRESS_THROTTLE_MS = 250;
22
- const GITHUB_REPO = 'foundry-9/quilltap';
22
+ const GITHUB_REPO = 'foundry-9/quilltap-server';
23
23
 
24
24
  /**
25
25
  * Get the platform-specific cache directory for standalone files.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quilltap",
3
- "version": "4.0.1",
3
+ "version": "4.1.0",
4
4
  "description": "Self-hosted AI workspace for writers, worldbuilders, and roleplayers. Run with npx quilltap.",
5
5
  "author": {
6
6
  "name": "Charles Sebold",
@@ -10,7 +10,7 @@
10
10
  "license": "MIT",
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "https://github.com/foundry-9/quilltap.git",
13
+ "url": "https://github.com/foundry-9/quilltap-server.git",
14
14
  "directory": "packages/quilltap"
15
15
  },
16
16
  "homepage": "https://quilltap.ai",