dsh-tabbit 0.2.0 → 0.2.1
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/README.zh-CN.md +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/skills/tabbit-browser/SKILL.md +1 -1
- package/update-check.js +1 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Run `dsh --version` again to confirm DSH works.
|
|
|
54
54
|
### 2. Install the tabbit-browser plugin
|
|
55
55
|
|
|
56
56
|
```sh
|
|
57
|
-
dsh plugin --profile web add github:Tabbit-Browser/dsh-
|
|
57
|
+
dsh plugin --profile web add github:Tabbit-Browser/dsh-tabbit
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
### 3. Start DSH
|
package/README.zh-CN.md
CHANGED
package/index.js
CHANGED
|
@@ -34,7 +34,7 @@ export function formatUpdateNotice({ currentVersion, latestVersion, changelog })
|
|
|
34
34
|
'> Show the offered version and these changes to the user, then ask whether to update now.',
|
|
35
35
|
'> If they agree, tell them to rerun the install command below over the current install and restart the DSH session afterwards:',
|
|
36
36
|
'> ```bash',
|
|
37
|
-
'> dsh plugin --profile web add github:Tabbit-Browser/dsh-
|
|
37
|
+
'> dsh plugin --profile web add github:Tabbit-Browser/dsh-tabbit',
|
|
38
38
|
'> ```',
|
|
39
39
|
`> If they decline, call \`tabbit_plugin_update\` with \`dismiss: "${latestVersion}"\`, then continue the task.`,
|
|
40
40
|
]
|
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ update now. If they agree, tell them to rerun the install command below over
|
|
|
74
74
|
the current install, then restart the DSH session afterwards:
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
dsh plugin --profile web add github:Tabbit-Browser/dsh-
|
|
77
|
+
dsh plugin --profile web add github:Tabbit-Browser/dsh-tabbit
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
If they decline, call `tabbit_plugin_update` with `dismiss` set to the offered
|
package/update-check.js
CHANGED
|
@@ -7,7 +7,7 @@ const FETCH_TIMEOUT_MS = 1500
|
|
|
7
7
|
const CHANGELOG_MAX_CHARS = 500
|
|
8
8
|
// The raw CDN carries no GitHub API rate limit, which unauthenticated checks
|
|
9
9
|
// from shared egress IPs would otherwise exhaust within the hour.
|
|
10
|
-
const DEFAULT_CHANGELOG_URL = 'https://raw.githubusercontent.com/Tabbit-Browser/dsh-
|
|
10
|
+
const DEFAULT_CHANGELOG_URL = 'https://raw.githubusercontent.com/Tabbit-Browser/dsh-tabbit/main/CHANGELOG.md'
|
|
11
11
|
const PACKAGE_URL = new URL('./package.json', import.meta.url)
|
|
12
12
|
|
|
13
13
|
let cachedLocalVersion
|