pnpm inject/uninject instead of patch/unpatch
This commit is contained in:
parent
25fcc528ea
commit
a9e67aa340
|
@ -36,7 +36,7 @@ Don't close your terminal just yet!
|
||||||
Now to patch vencord into your Discord client, run the following command and follow the interactive prompt.
|
Now to patch vencord into your Discord client, run the following command and follow the interactive prompt.
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
pnpm run patch
|
pnpm inject
|
||||||
```
|
```
|
||||||
|
|
||||||
Now fully close Discord. Start and confirm Vencord successfully installed by checking if you have a new Vencord section in Settings.
|
Now fully close Discord. Start and confirm Vencord successfully installed by checking if you have a new Vencord section in Settings.
|
||||||
|
@ -45,7 +45,7 @@ If you ever need to get back to the Vencord folder, just open a new terminal and
|
||||||
|
|
||||||
All plugins are disabled by default, so your first step should be opening Settings and enabling the plugins you want.
|
All plugins are disabled by default, so your first step should be opening Settings and enabling the plugins you want.
|
||||||
|
|
||||||
You can unpatch Vencord using `pnpm run unpatch`
|
You can unpatch Vencord using `pnpm uninject`
|
||||||
|
|
||||||
|
|
||||||
## Installing on Browser
|
## Installing on Browser
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
"buildWeb": "node buildWeb.mjs",
|
"buildWeb": "node buildWeb.mjs",
|
||||||
"build": "node build.mjs",
|
"build": "node build.mjs",
|
||||||
"watch": "node build.mjs --watch",
|
"watch": "node build.mjs --watch",
|
||||||
"patch": "node scripts/patcher/install.js",
|
"inject": "node scripts/patcher/install.js",
|
||||||
"unpatch": "node scripts/patcher/uninstall.js"
|
"uninject": "node scripts/patcher/uninstall.js"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ async function install(installations) {
|
||||||
console.log("Failed to give write perms to Discord Flatpak.");
|
console.log("Failed to give write perms to Discord Flatpak.");
|
||||||
console.log(
|
console.log(
|
||||||
"Try running this script as an administrator:",
|
"Try running this script as an administrator:",
|
||||||
"sudo pnpm run patch"
|
"sudo pnpm inject"
|
||||||
);
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
@ -71,7 +71,7 @@ async function install(installations) {
|
||||||
console.error("No write access to", selected.location);
|
console.error("No write access to", selected.location);
|
||||||
console.error(
|
console.error(
|
||||||
"Try running this script as an administrator:",
|
"Try running this script as an administrator:",
|
||||||
"sudo pnpm run patch"
|
"sudo pnpm inject"
|
||||||
);
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,7 @@ async function uninstall(installations) {
|
||||||
console.error("No write access to", selected.location);
|
console.error("No write access to", selected.location);
|
||||||
console.error(
|
console.error(
|
||||||
"Try running this script as an administrator:",
|
"Try running this script as an administrator:",
|
||||||
"sudo pnpm run unpatch"
|
"sudo pnpm uninject"
|
||||||
);
|
);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue