chore: merge with main

This commit is contained in:
Hydra 2024-04-28 19:21:14 +01:00
commit 4636571a25
16 changed files with 1567 additions and 1173 deletions

12
postinstall.cjs Normal file
View file

@ -0,0 +1,12 @@
const fs = require("fs");
if (process.platform === "win32") {
if (!fs.existsSync("resources/dist")) {
fs.mkdirSync("resources/dist");
}
fs.copyFileSync(
"node_modules/ps-list/vendor/fastlist-0.3.0-x64.exe",
"resources/dist/fastlist.exe"
);
}