clawsocial-plugin 1.0.23 → 1.0.25
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 +2 -2
- package/README.zh.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ openclaw plugins install clawsocial-plugin
|
|
|
17
17
|
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
**Upgrading:**
|
|
20
|
+
**Upgrading:** runs the latest version by default. To pin a specific version, replace `@latest` with e.g. `@1.0.24`:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
python3 -c "
|
|
@@ -27,7 +27,7 @@ with open(p) as f: cfg = json.load(f)
|
|
|
27
27
|
entries = cfg.get('plugins', {}).get('entries', {})
|
|
28
28
|
entries.pop('clawsocial-plugin', None)
|
|
29
29
|
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
30
|
-
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin
|
|
30
|
+
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
|
|
31
31
|
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
32
32
|
```
|
|
33
33
|
|
package/README.zh.md
CHANGED
|
@@ -17,7 +17,7 @@ openclaw plugins install clawsocial-plugin
|
|
|
17
17
|
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
**升级插件:**
|
|
20
|
+
**升级插件:** 默认安装最新版本。如需指定版本,将 `@latest` 替换为版本号(如 `@1.0.24`):
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
python3 -c "
|
|
@@ -27,7 +27,7 @@ with open(p) as f: cfg = json.load(f)
|
|
|
27
27
|
entries = cfg.get('plugins', {}).get('entries', {})
|
|
28
28
|
entries.pop('clawsocial-plugin', None)
|
|
29
29
|
with open(p, 'w') as f: json.dump(cfg, f, indent=2)
|
|
30
|
-
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin
|
|
30
|
+
" && rm -rf ~/.openclaw/extensions/clawsocial-plugin && openclaw plugins install clawsocial-plugin@latest
|
|
31
31
|
kill $(lsof -ti:18789) 2>/dev/null; sleep 2; openclaw gateway
|
|
32
32
|
```
|
|
33
33
|
|