diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90eccb8..be37768 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: Build on: push: - branches: [rewrite] + branches: [main] jobs: build: @@ -12,9 +12,9 @@ jobs: - uses: actions/checkout@v3 - uses: actions/checkout@v3 with: - repository: "vendetta-mod/builds" + repository: "pyoncord/detta-builds" path: "builds" - token: ${{ secrets.BEEF_TOKEN }} + token: ${{ secrets.PYLIX_TOKEN }} - uses: actions/setup-node@v3 with: node-version: 16 @@ -40,5 +40,5 @@ jobs: - name: Purge CDN cache run: | - curl https://purge.jsdelivr.net/gh/vendetta-mod/builds + curl https://purge.jsdelivr.net/gh/pyoncord/detta-builds diff --git a/build.mjs b/build.mjs index 1593917..64986ac 100644 --- a/build.mjs +++ b/build.mjs @@ -23,7 +23,7 @@ try { minify: isRelease, format: "iife", target: "esnext", - outfile: "dist/pyoncord.js", + outfile: "dist/pyondetta.js", keepNames: true, define: { __vendettaIsDev: `${!isRelease}`, diff --git a/src/entry.ts b/src/entry.ts index 0a06e95..e25b792 100644 --- a/src/entry.ts +++ b/src/entry.ts @@ -1,7 +1,7 @@ import { ClientInfoManager } from "@lib/native"; // This logs in the native logging implementation, e.g. logcat -console.log("Hello from Pyon-ified Vendetta!"); +console.log("Hello from Pyondetta!"); // Make 'freeze' and 'seal' do nothing Object.freeze = Object; diff --git a/src/lib/plugins.ts b/src/lib/plugins.ts index a73c20b..d4dc167 100644 --- a/src/lib/plugins.ts +++ b/src/lib/plugins.ts @@ -62,7 +62,7 @@ export async function evalPlugin(plugin: Plugin) { // Wrapping this with wrapSync is NOT an option. storage: await createStorage>(createMMKVBackend(plugin.id)), }, - logger: new logModule(`Vendetta » ${plugin.manifest.name}`), + logger: new logModule(`Pyondetta » ${plugin.manifest.name}`), }; const pluginString = `vendetta=>{return ${plugin.js}}\n//# sourceURL=${plugin.id}`;