omegon-pi 0.14.0 → 0.14.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.
|
@@ -46,7 +46,7 @@ const MARKER_VERSION = "2"; // bump to re-trigger bootstrap after adding operato
|
|
|
46
46
|
|
|
47
47
|
// --- Version Check State (absorbed from version-check.ts) ---
|
|
48
48
|
const REPO_OWNER = "styrene-lab";
|
|
49
|
-
const REPO_NAME = "omegon";
|
|
49
|
+
const REPO_NAME = "omegon-pi";
|
|
50
50
|
const CHECK_INTERVAL_MS = 60 * 60 * 1000; // 1 hour
|
|
51
51
|
const FETCH_TIMEOUT_MS = 10_000;
|
|
52
52
|
|
|
@@ -320,7 +320,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
320
320
|
|
|
321
321
|
/** Read installed version from package.json (absorbed from version-check.ts) */
|
|
322
322
|
function getInstalledVersion(): string {
|
|
323
|
-
const pkgPath = join(dirname(fileURLToPath(import.meta.url)), "..", "package.json");
|
|
323
|
+
const pkgPath = join(dirname(fileURLToPath(import.meta.url)), "..", "..", "package.json");
|
|
324
324
|
const pkg = JSON.parse(readFileSync(pkgPath, "utf-8"));
|
|
325
325
|
return pkg.version;
|
|
326
326
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omegon-pi",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "Omegon — an opinionated distribution of pi (by Mario Zechner) with extensions for lifecycle management, memory, orchestration, and visualization",
|
|
5
5
|
"bin": {
|
|
6
6
|
"omegon-pi": "bin/omegon-pi.mjs",
|