@zerwiz/sessrumnir 0.1.9 → 0.1.11
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/out/main/index.js
CHANGED
|
@@ -5563,8 +5563,8 @@ function applyLanguageSetting(setting) {
|
|
|
5563
5563
|
if (language2 !== i18n.language) void i18n.changeLanguage(language2);
|
|
5564
5564
|
}
|
|
5565
5565
|
const LINUX_AUTOSTART_FILENAME = "pi-desktop.desktop";
|
|
5566
|
-
const APP_DISPLAY_NAME = "
|
|
5567
|
-
const APP_COMMENT = "Automatically start
|
|
5566
|
+
const APP_DISPLAY_NAME = "Sessrúmnir";
|
|
5567
|
+
const APP_COMMENT = "Automatically start Sessrúmnir at login";
|
|
5568
5568
|
function linuxAutostartPath(env = process.env, home2 = os.homedir()) {
|
|
5569
5569
|
const configHome = env.XDG_CONFIG_HOME?.trim() || path.join(home2, ".config");
|
|
5570
5570
|
return path.join(configHome, "autostart", LINUX_AUTOSTART_FILENAME);
|
|
@@ -10514,7 +10514,7 @@ function createMainWindow() {
|
|
|
10514
10514
|
height: WINDOW_HEIGHT,
|
|
10515
10515
|
minWidth: MIN_WINDOW_WIDTH,
|
|
10516
10516
|
minHeight: MIN_WINDOW_HEIGHT,
|
|
10517
|
-
title: "
|
|
10517
|
+
title: "Sessrúmnir",
|
|
10518
10518
|
backgroundColor: "#0a0a0a",
|
|
10519
10519
|
icon: appIcon,
|
|
10520
10520
|
show: false,
|
|
@@ -10770,7 +10770,7 @@ async function applyWorkspaceFromEnv(manager) {
|
|
|
10770
10770
|
if (!raw) return;
|
|
10771
10771
|
const path$1 = path.resolve(raw);
|
|
10772
10772
|
if (!fs.existsSync(path$1)) {
|
|
10773
|
-
console.warn(`[
|
|
10773
|
+
console.warn(`[Sessrúmnir] ${WORKSPACE_ENV_VAR}=${raw} does not exist; ignoring`);
|
|
10774
10774
|
return;
|
|
10775
10775
|
}
|
|
10776
10776
|
const existing = manager.getWorkspaces().find((w) => w.path === path$1);
|
|
@@ -21230,7 +21230,7 @@ function StatusPopover() {
|
|
|
21230
21230
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "px-4 py-2 border-t border-border flex items-center justify-between text-[10px] text-faint", children: [
|
|
21231
21231
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", { children: [
|
|
21232
21232
|
"v",
|
|
21233
|
-
"0.1.
|
|
21233
|
+
"0.1.10"
|
|
21234
21234
|
] }),
|
|
21235
21235
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
21236
21236
|
"button",
|
package/out/renderer/index.html
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<link rel="icon" type="image/svg+xml" href="./assets/pi-logo-B48rElrT.svg" />
|
|
11
11
|
<title>Sessrúmnir</title>
|
|
12
12
|
<script src="./theme-boot.js"></script>
|
|
13
|
-
<script type="module" crossorigin src="./assets/index-
|
|
13
|
+
<script type="module" crossorigin src="./assets/index-BS9g6EfW.js"></script>
|
|
14
14
|
<link rel="stylesheet" crossorigin href="./assets/index-DaKov4Fl.css">
|
|
15
15
|
</head>
|
|
16
16
|
<body class="bg-app text-primary antialiased">
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zerwiz/sessrumnir",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Desktop GUI frontend for the Pi coding agent",
|
|
5
5
|
"main": "out/main/index.js",
|
|
6
6
|
"desktopName": "pi-desktop.desktop",
|
|
7
|
-
"author": "
|
|
7
|
+
"author": "Zerwiz",
|
|
8
8
|
"license": "Apache-2.0",
|
|
9
9
|
"homepage": "https://github.com/FaqFirebase/pi-desktop",
|
|
10
10
|
"repository": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"ide"
|
|
21
21
|
],
|
|
22
22
|
"bin": {
|
|
23
|
-
"
|
|
23
|
+
"sessrumnir": "./bin/sessrumnir.js"
|
|
24
24
|
},
|
|
25
25
|
"scripts": {
|
|
26
26
|
"dev": "electron-vite build && electron-vite preview -- --no-sandbox",
|
|
@@ -79,7 +79,8 @@
|
|
|
79
79
|
"remark-gfm": "^4.0.1",
|
|
80
80
|
"style-mod": "^4.1.3",
|
|
81
81
|
"yaml": "^2.9.0",
|
|
82
|
-
"zustand": "^5.0.5"
|
|
82
|
+
"zustand": "^5.0.5",
|
|
83
|
+
"electron": "^43.0.0"
|
|
83
84
|
},
|
|
84
85
|
"devDependencies": {
|
|
85
86
|
"@eslint/js": "^10.0.1",
|
|
@@ -87,7 +88,6 @@
|
|
|
87
88
|
"@types/react": "^19.1.4",
|
|
88
89
|
"@types/react-dom": "^19.1.5",
|
|
89
90
|
"@vitejs/plugin-react": "^4.5.2",
|
|
90
|
-
"electron": "^43.0.0",
|
|
91
91
|
"electron-builder": "^26.0.12",
|
|
92
92
|
"electron-vite": "^3.1.0",
|
|
93
93
|
"eslint": "^10.6.0",
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
},
|
|
103
103
|
"build": {
|
|
104
104
|
"appId": "org.zerwiz.sessrumnir",
|
|
105
|
-
"productName": "
|
|
106
|
-
"copyright": "Copyright 2026
|
|
105
|
+
"productName": "Sessr\u00famnir",
|
|
106
|
+
"copyright": "Copyright 2026 Zerwiz. Licensed under the Apache License, Version 2.0.",
|
|
107
107
|
"files": [
|
|
108
108
|
"out/**/*",
|
|
109
109
|
"bin/**/*"
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
"icon": "resources/icons",
|
|
131
131
|
"synopsis": "Desktop GUI for the Pi coding agent",
|
|
132
132
|
"description": "An Electron desktop application that provides a GUI frontend for the Pi coding agent.",
|
|
133
|
-
"maintainer": "
|
|
133
|
+
"maintainer": "Sessr\u00famnir GUI Contributors",
|
|
134
134
|
"artifactName": "Pi-Desktop-${version}-${os}-${arch}.${ext}"
|
|
135
135
|
},
|
|
136
136
|
"mac": {
|
|
@@ -158,11 +158,11 @@
|
|
|
158
158
|
"allowToChangeInstallationDirectory": true,
|
|
159
159
|
"createDesktopShortcut": true,
|
|
160
160
|
"createStartMenuShortcut": true,
|
|
161
|
-
"shortcutName": "
|
|
161
|
+
"shortcutName": "Sessr\u00famnir",
|
|
162
162
|
"installerIcon": "resources/icons/icon.ico",
|
|
163
163
|
"uninstallerIcon": "resources/icons/icon.ico",
|
|
164
164
|
"artifactName": "Pi-Desktop-${version}-${os}-${arch}-setup.${ext}"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
|
-
"productName": "
|
|
168
|
-
}
|
|
167
|
+
"productName": "Sessr\u00famnir"
|
|
168
|
+
}
|
|
@@ -11,8 +11,8 @@ import { join } from 'path'
|
|
|
11
11
|
// old entry is reused (not duplicated) after an update.
|
|
12
12
|
export const LINUX_AUTOSTART_FILENAME = 'pi-desktop.desktop'
|
|
13
13
|
|
|
14
|
-
const APP_DISPLAY_NAME = '
|
|
15
|
-
const APP_COMMENT = 'Automatically start
|
|
14
|
+
const APP_DISPLAY_NAME = 'Sessrúmnir'
|
|
15
|
+
const APP_COMMENT = 'Automatically start Sessrúmnir at login'
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Absolute path to the per-user autostart entry, honoring `$XDG_CONFIG_HOME`
|
package/src/main/index.ts
CHANGED
|
@@ -174,7 +174,7 @@ function createMainWindow(): BrowserWindow {
|
|
|
174
174
|
height: WINDOW_HEIGHT,
|
|
175
175
|
minWidth: MIN_WINDOW_WIDTH,
|
|
176
176
|
minHeight: MIN_WINDOW_HEIGHT,
|
|
177
|
-
title: '
|
|
177
|
+
title: 'Sessrúmnir',
|
|
178
178
|
backgroundColor: '#0a0a0a',
|
|
179
179
|
icon: appIcon,
|
|
180
180
|
show: false,
|
|
@@ -544,7 +544,7 @@ async function applyWorkspaceFromEnv(manager: WorkspaceManager): Promise<void> {
|
|
|
544
544
|
|
|
545
545
|
const path = resolvePath(raw)
|
|
546
546
|
if (!existsSync(path)) {
|
|
547
|
-
console.warn(`[
|
|
547
|
+
console.warn(`[Sessrúmnir] ${WORKSPACE_ENV_VAR}=${raw} does not exist; ignoring`)
|
|
548
548
|
return
|
|
549
549
|
}
|
|
550
550
|
|
|
File without changes
|