visionclaw 0.1.189-beta.0 → 0.1.189
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/CHANGELOG.md +7 -0
- package/dist-agent/bundle.cjs +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [0.1.189](https://github.com/babelcloud/visionclaw/compare/v0.1.188...v0.1.189) (2026-04-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fall back to screencapture+sips for display size on Tart VMs ([ad208bf](https://github.com/babelcloud/visionclaw/commit/ad208bf2a23a9dcf48b06bc4aa71fc88a249f1e6))
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
## [0.1.188](https://github.com/babelcloud/visionclaw/compare/v0.1.187...v0.1.188) (2026-04-26)
|
|
2
9
|
|
|
3
10
|
### Bug Fixes
|
package/dist-agent/bundle.cjs
CHANGED
|
@@ -20369,7 +20369,7 @@ var require_prompts3 = __commonJS({
|
|
|
20369
20369
|
|
|
20370
20370
|
// dist/utils/version-check.js
|
|
20371
20371
|
function isBundled() {
|
|
20372
|
-
const v16 = "0.1.189
|
|
20372
|
+
const v16 = "0.1.189";
|
|
20373
20373
|
return typeof v16 === "string" && v16 !== "undefined";
|
|
20374
20374
|
}
|
|
20375
20375
|
function getPackageRoot() {
|
|
@@ -20386,7 +20386,7 @@ function getInstallationInfo() {
|
|
|
20386
20386
|
};
|
|
20387
20387
|
}
|
|
20388
20388
|
function getCurrentVersion() {
|
|
20389
|
-
const bundledVersion = "0.1.189
|
|
20389
|
+
const bundledVersion = "0.1.189";
|
|
20390
20390
|
if (bundledVersion && bundledVersion !== "undefined") {
|
|
20391
20391
|
return bundledVersion;
|
|
20392
20392
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visionclaw",
|
|
3
|
-
"version": "0.1.189
|
|
3
|
+
"version": "0.1.189",
|
|
4
4
|
"description": "A personal assistant agent that runs on your desktop, receives commands from messaging channels, and executes tasks autonomously.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"changelog": "node scripts/changelog.mjs",
|
|
125
125
|
"build:bundle": "node scripts/esbuild-bundle.cjs",
|
|
126
126
|
"build:obfuscate": "javascript-obfuscator dist/ --output dist/ --compact true --identifier-names-generator hexadecimal --string-array true --string-array-encoding base64 --rename-properties false",
|
|
127
|
-
"release": "
|
|
127
|
+
"release": "pnpm lint && pnpm build && pnpm version patch --no-git-tag-version && pnpm run build:bundle && pnpm changelog && git add -A && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag \"v$(node -p 'require(\"./package.json\").version')\" && pnpm publish",
|
|
128
128
|
"release:manual": "node scripts/check-integration-gate.mjs && test -z \"$(git status --porcelain)\" && pnpm lint && pnpm build && pnpm version patch --no-git-tag-version && pnpm run build:bundle && pnpm changelog && printf '\\nRelease prepared. Edit CHANGELOG.md, then run: pnpm release:manual:finalize\\n'",
|
|
129
129
|
"release:manual:finalize": "git add package.json pnpm-lock.yaml CHANGELOG.md && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag \"v$(node -p 'require(\"./package.json\").version')\" && pnpm publish --no-git-checks",
|
|
130
130
|
"release:beta": "pnpm lint && pnpm build && pnpm version prerelease --preid beta --no-git-tag-version && pnpm run build:bundle && git add -A && git commit -m \"chore(release): v$(node -p 'require(\"./package.json\").version')\" && git tag \"v$(node -p 'require(\"./package.json\").version')\" && pnpm publish --tag beta --no-git-checks",
|