codewhale 0.8.42 → 0.8.43
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 +1 -1
- package/package.json +13 -3
- package/scripts/install.js +5 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# codewhale
|
|
2
2
|
|
|
3
|
-
Install and run CodeWhale,
|
|
3
|
+
Install and run CodeWhale, the agentic terminal for open-source and open-weight coding
|
|
4
4
|
models, from GitHub release artifacts.
|
|
5
5
|
|
|
6
6
|
> Previously published as `deepseek-tui`. See `docs/REBRAND.md` in the upstream
|
package/package.json
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codewhale",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"codewhaleBinaryVersion": "0.8.
|
|
5
|
-
"description": "Install and run CodeWhale,
|
|
3
|
+
"version": "0.8.43",
|
|
4
|
+
"codewhaleBinaryVersion": "0.8.43",
|
|
5
|
+
"description": "Install and run CodeWhale, the agentic terminal for open-source and open-weight coding models, from GitHub release artifacts.",
|
|
6
6
|
"author": "Hmbown",
|
|
7
7
|
"license": "MIT",
|
|
8
|
+
"funding": [
|
|
9
|
+
{
|
|
10
|
+
"type": "github",
|
|
11
|
+
"url": "https://github.com/sponsors/Hmbown"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"type": "buymeacoffee",
|
|
15
|
+
"url": "https://www.buymeacoffee.com/hmbown"
|
|
16
|
+
}
|
|
17
|
+
],
|
|
8
18
|
"homepage": "https://github.com/Hmbown/CodeWhale",
|
|
9
19
|
"repository": {
|
|
10
20
|
"type": "git",
|
package/scripts/install.js
CHANGED
|
@@ -577,6 +577,7 @@ function httpRequest(rawUrl, opts = {}) {
|
|
|
577
577
|
try {
|
|
578
578
|
req = client.request(reqOptions, (response) => {
|
|
579
579
|
res = response;
|
|
580
|
+
response.pause();
|
|
580
581
|
armStallTimer();
|
|
581
582
|
response.on("data", () => {
|
|
582
583
|
armStallTimer();
|
|
@@ -649,6 +650,7 @@ function httpRequest(rawUrl, opts = {}) {
|
|
|
649
650
|
},
|
|
650
651
|
(response) => {
|
|
651
652
|
res = response;
|
|
653
|
+
response.pause();
|
|
652
654
|
armStallTimer();
|
|
653
655
|
response.on("data", () => armStallTimer());
|
|
654
656
|
response.on("end", () => cleanup());
|
|
@@ -712,6 +714,7 @@ function httpRequest(rawUrl, opts = {}) {
|
|
|
712
714
|
try {
|
|
713
715
|
req = https.request(reqOptions, (response) => {
|
|
714
716
|
res = response;
|
|
717
|
+
response.pause();
|
|
715
718
|
armStallTimer();
|
|
716
719
|
response.on("data", () => armStallTimer());
|
|
717
720
|
response.on("end", () => cleanup());
|
|
@@ -944,6 +947,7 @@ async function downloadText(url, options = {}) {
|
|
|
944
947
|
resolve(chunks.join(""));
|
|
945
948
|
});
|
|
946
949
|
response.on("error", reject);
|
|
950
|
+
response.resume();
|
|
947
951
|
});
|
|
948
952
|
}, context);
|
|
949
953
|
}
|
|
@@ -1171,4 +1175,4 @@ if (require.main === module) {
|
|
|
1171
1175
|
}
|
|
1172
1176
|
process.exit(1);
|
|
1173
1177
|
});
|
|
1174
|
-
}
|
|
1178
|
+
}
|