@ait-co/devtools 0.1.57 → 0.1.58
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/mcp/cli.js +17 -17
- package/dist/mcp/cli.js.map +1 -1
- package/dist/mcp/server.js +10 -10
- package/dist/mcp/server.js.map +1 -1
- package/dist/panel/index.js +2 -2
- package/package.json +1 -1
package/dist/panel/index.js
CHANGED
|
@@ -1108,7 +1108,7 @@ function readGlobalString(key) {
|
|
|
1108
1108
|
}
|
|
1109
1109
|
const TELEMETRY_ENDPOINT = readGlobalString("__TELEMETRY_ENDPOINT__") ?? "https://t.aitc.dev";
|
|
1110
1110
|
function getVersion() {
|
|
1111
|
-
return "0.1.
|
|
1111
|
+
return "0.1.58";
|
|
1112
1112
|
}
|
|
1113
1113
|
let panelVisibleSince = null;
|
|
1114
1114
|
let accumulatedMs = 0;
|
|
@@ -4923,7 +4923,7 @@ function mount() {
|
|
|
4923
4923
|
mockBadge.textContent = aitState.state.panelEditable ? t("panel.editMode.on") : t("panel.editMode.off");
|
|
4924
4924
|
refreshPanel();
|
|
4925
4925
|
});
|
|
4926
|
-
const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.
|
|
4926
|
+
const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.58`), closeBtn);
|
|
4927
4927
|
const header = h("div", { className: "ait-panel-header" }, h("span", {}, t("panel.title")), headerRight);
|
|
4928
4928
|
tabsEl = h("div", { className: "ait-panel-tabs" });
|
|
4929
4929
|
for (const tab of getTabs()) {
|
package/package.json
CHANGED