Skip to content

Commit 2a992b3

Browse files
committed
Bump version
1 parent 7c004f1 commit 2a992b3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

client/main.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const server = createServer((req, res) => {
1919
// extract URL path
2020
let pathname1 = `./${
2121
_parse(
22-
join(app.isPackaged ? join(app.getAppPath(), "dist") : "dist", req.url)
22+
join(app.isPackaged ? join(app.getAppPath(), "dist") : "dist", req.url),
2323
).pathname
2424
}`;
2525
pathname1 = existsSync(pathname1)
@@ -70,7 +70,7 @@ const a = {
7070
resizable: true,
7171
webPreferences: {
7272
zoomFactor: 0.9,
73-
preload: resolve(__dirname, "preload.js"),
73+
preload: resolve(__dirname, "preload.mjs"),
7474
},
7575
};
7676
server.listen(0, () => {
@@ -87,7 +87,7 @@ server.listen(0, () => {
8787
});
8888
ipcMain.handle("title-bar", (_e, background, foreground) => {
8989
const win2 = BrowserWindow.getAllWindows().find(
90-
(c) => c.webContents.id === _e.sender.id
90+
(c) => c.webContents.id === _e.sender.id,
9191
);
9292
if (win2 && "setTitleBarOverlay" in win2) {
9393
win2.setTitleBarOverlay({
File renamed without changes.

client/src/public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"short_name": "Posthoc",
33
"name": "Posthoc",
4-
"version": "1.5.0",
4+
"version": "1.5.0-1",
55
"description": "Understand sequential decision-making through visualisation.",
6-
"version_name": "1.5.0; early November 2025",
6+
"version_name": "1.5.0-1; early December 2025",
77
"repository": "https://github.com/ShortestPathLab/posthoc-app",
88
"changelog": "http://posthoc.pathfinding.ai/blog",
99
"docs": "https://posthoc.pathfinding.ai/docs/overview",

0 commit comments

Comments
 (0)