@wonderwhy-er/desktop-commander 0.2.44 → 0.2.45
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/dist/server.js +4 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -139,12 +139,13 @@ server.setRequestHandler(InitializeRequestSchema, async (request) => {
|
|
|
139
139
|
if (clientInfo) {
|
|
140
140
|
await updateCurrentClient(clientInfo);
|
|
141
141
|
// Welcome page for new users (A/B test controlled) — all clients except
|
|
142
|
-
// the Desktop Commander app
|
|
143
|
-
//
|
|
144
|
-
//
|
|
142
|
+
// the Desktop Commander app, remote contexts, and `claude-code`.
|
|
143
|
+
// Claude Code and Claude Cowork plugin sessions both identify as
|
|
144
|
+
// `claude-code` and provide their own onboarding surface.
|
|
145
145
|
if (currentClient.name !== 'desktop-commander-app'
|
|
146
146
|
&& currentClient.name !== 'desktop-commander'
|
|
147
147
|
&& !isRemoteClientContext(currentClient.name)
|
|
148
|
+
&& currentClient.name !== 'claude-code'
|
|
148
149
|
&& !global.disableOnboarding) {
|
|
149
150
|
await handleWelcomePageOnboarding(currentClient.name);
|
|
150
151
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.2.
|
|
1
|
+
export declare const VERSION = "0.2.45";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.2.
|
|
1
|
+
export const VERSION = '0.2.45';
|
package/package.json
CHANGED