@nextuplodsonnpm/modelwise-pi 0.1.1 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextuplodsonnpm/modelwise-pi",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "license": "MIT",
5
5
  "description": "Automatic repository investigation with cheaper worker models for Pi",
6
6
  "keywords": [
package/src/index.ts CHANGED
@@ -58,9 +58,9 @@ export default function (pi: ExtensionAPI) {
58
58
  };
59
59
  const showStatus = (ctx: ExtensionContext, text: string) => {
60
60
  if (!ctx.hasUI) return;
61
- // Footer statuses are joined with other plugins. A widget owns its row.
62
- ctx.ui.setStatus("modelwise", undefined);
63
- ctx.ui.setWidget("modelwise", [text], { placement: "aboveEditor" });
61
+ // Keep MW in Pi's built-in footer so it follows the project path/footer
62
+ // layout without replacing or changing Pi's editor configuration.
63
+ ctx.ui.setStatus("modelwise", text);
64
64
  };
65
65
  const status = (ctx: ExtensionContext) => showStatus(ctx, statusLabel(ctx));
66
66