Skip to content

Commit 591f06b

Browse files
committed
-
1 parent 519b12a commit 591f06b

69 files changed

Lines changed: 458 additions & 50 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"real-suns-run",
5454
"ripe-trams-hug",
5555
"shaky-moments-crash",
56+
"silent-taxis-cry",
5657
"silver-eels-cough",
5758
"smooth-memes-sit",
5859
"sunny-rats-wash",

.changeset/silent-taxis-cry.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
"@pipelab/plugin-filesystem": patch
3+
"@pipelab/plugin-construct": patch
4+
"@pipelab/plugin-electron": patch
5+
"@pipelab/plugin-discord": patch
6+
"@pipelab/plugin-netlify": patch
7+
"@pipelab/plugin-nvpatch": patch
8+
"mini-c3-electron": patch
9+
"@pipelab/asset-electron": patch
10+
"@pipelab/plugin-minify": patch
11+
"@pipelab/plugin-system": patch
12+
"@pipelab/asset-discord": patch
13+
"@pipelab/asset-netlify": patch
14+
"@pipelab/cloud-azure": patch
15+
"@pipelab/plugin-steam": patch
16+
"@pipelab/plugin-tauri": patch
17+
"@pipelab/test-utils": patch
18+
"@pipelab/plugin-core": patch
19+
"@pipelab/plugin-itch": patch
20+
"@pipelab/plugin-poki": patch
21+
"@pipelab/asset-tauri": patch
22+
"@pipelab/constants": patch
23+
"@pipelab/core-node": patch
24+
"@pipelab/migration": patch
25+
"@pipelab/tsconfig": patch
26+
"@pipelab/shared": patch
27+
"@pipelab/cloud": patch
28+
"@pipelab/app": patch
29+
"@pipelab/cli": patch
30+
"@pipelab/ui": patch
31+
---
32+
33+
sd

apps/cli/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @pipelab/cli
22

3+
## 2.0.0-beta.28
4+
5+
### Patch Changes
6+
7+
- sd
8+
- Updated dependencies
9+
- @pipelab/constants@1.0.0-beta.24
10+
- @pipelab/core-node@1.0.0-beta.28
11+
- @pipelab/shared@1.0.0-beta.23
12+
313
## 2.0.0-beta.27
414

515
### Patch Changes

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/cli",
3-
"version": "2.0.0-beta.27",
3+
"version": "2.0.0-beta.28",
44
"private": true,
55
"description": "The command line interface for Pipelab",
66
"license": "FSL-1.1-MIT",

apps/desktop/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @pipelab/app
22

3+
## 2.0.0-beta.23
4+
5+
### Patch Changes
6+
7+
- sd
8+
39
## 2.0.0-beta.22
410

511
### Patch Changes

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipelab/app",
3-
"version": "2.0.0-beta.22",
3+
"version": "2.0.0-beta.23",
44
"private": true,
55
"description": "-",
66
"homepage": "https://pipelab.app",

apps/desktop/src/main/ipc-handlers.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,9 @@ export const registerIpcHandlers = () => {
5353
ipcMain.handle("path:isBlacklisted", (event, pathToCheck: string) => {
5454
return isPathBlacklisted(pathToCheck);
5555
});
56+
57+
ipcMain.handle("app:relaunch", () => {
58+
app.relaunch();
59+
app.exit(0);
60+
});
5661
};

apps/desktop/src/preload.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ if (process.contextIsolated) {
4747
openExternal: (url: string) => ipcRenderer.invoke("shell:openExternal", url),
4848
showItemInFolder: (path: string) => ipcRenderer.invoke("shell:showItemInFolder", path),
4949
isPathBlacklisted: (path: string) => ipcRenderer.invoke("path:isBlacklisted", path),
50+
relaunch: () => ipcRenderer.invoke("app:relaunch"),
5051
});
5152
contextBridge.exposeInMainWorld("version", version);
5253
contextBridge.exposeInMainWorld("isPackaged", process.env.NODE_ENV !== "development");
@@ -68,6 +69,7 @@ if (process.contextIsolated) {
6869
openExternal: (url: string) => ipcRenderer.invoke("shell:openExternal", url),
6970
showItemInFolder: (path: string) => ipcRenderer.invoke("shell:showItemInFolder", path),
7071
isPathBlacklisted: (path: string) => ipcRenderer.invoke("path:isBlacklisted", path),
72+
relaunch: () => ipcRenderer.invoke("app:relaunch"),
7173
};
7274
window.version = version;
7375
window.isPackaged = process.env.NODE_ENV !== "development";

apps/mini-c3-electron/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# mini-c3-electron
22

3+
## 0.0.1-beta.14
4+
5+
### Patch Changes
6+
7+
- sd
8+
39
## 0.0.1-beta.13
410

511
### Patch Changes

apps/mini-c3-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mini-c3-electron",
33
"private": true,
4-
"version": "0.0.1-beta.13",
4+
"version": "0.0.1-beta.14",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)