cc-claw 0.16.2 → 0.16.3
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/cli.js +3 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -33,7 +33,7 @@ var VERSION;
|
|
|
33
33
|
var init_version = __esm({
|
|
34
34
|
"src/version.ts"() {
|
|
35
35
|
"use strict";
|
|
36
|
-
VERSION = true ? "0.16.
|
|
36
|
+
VERSION = true ? "0.16.3" : (() => {
|
|
37
37
|
try {
|
|
38
38
|
return JSON.parse(readFileSync(join(process.cwd(), "package.json"), "utf-8")).version ?? "unknown";
|
|
39
39
|
} catch {
|
|
@@ -16273,7 +16273,8 @@ Tap to toggle:`,
|
|
|
16273
16273
|
const active = pinnedId ? slots.find((s) => s.id === pinnedId) : enabledSlots[0];
|
|
16274
16274
|
if (active) {
|
|
16275
16275
|
const label2 = active.label || `slot-${active.id}`;
|
|
16276
|
-
|
|
16276
|
+
const icon = active.slotType === "oauth" ? "\u{1F468}\u{1F3FD}\u200D\u{1F4BB}" : "\u{1F511}";
|
|
16277
|
+
slotInfo = ` \xB7 ${icon} ${label2} (${enabledSlots.length} slots)`;
|
|
16277
16278
|
}
|
|
16278
16279
|
}
|
|
16279
16280
|
} catch {
|
package/package.json
CHANGED