Revenge/README.md

51 lines
2.1 KiB
Markdown
Raw Normal View History

2024-02-06 23:45:41 +00:00
> [!IMPORTANT]
> As of 06/02/24, Vendetta has been discontinued.
2023-02-01 18:40:11 +00:00
# Vendetta
A mod for Discord's mobile apps.
## Installing
Vendetta's codebase is platform-agnostic, but you need a platform-specific loader.
### Android
2023-06-05 06:27:03 +00:00
* Root - [VendettaXposed](https://github.com/vendetta-mod/VendettaXposed/releases/latest)
* Non-root - [VendettaManager](https://github.com/vendetta-mod/VendettaManager/releases/latest)
2023-03-28 19:35:55 +00:00
- Manager not working? No problem! Pre-built APKs are provided [here](https://discord.k6.tf/).
2023-06-05 06:27:03 +00:00
- The minimum Android version required is 9. It will not work any lower.
2023-02-01 18:40:11 +00:00
### iOS
2023-06-05 06:19:24 +00:00
* Jailbroken - [VendettaTweak](https://github.com/vendetta-mod/VendettaTweak)
2023-06-05 06:27:03 +00:00
- You can get prebuilt `.deb` files from GitHub Actions - we support rootful and rootless jailbreaks!
* Jailed - You can get IPAs from [the thread](https://discord.com/channels/1015931589865246730/1087295482667208766) in our [Discord server](https://discord.gg/n9QQ4XhhJP) or from our [host](https://discord.k6.tf/ios/).
- These IPAs do *not* work with AltStore! You should use [Sideloadly](https://sideloadly.io).
2023-02-01 18:40:11 +00:00
## Contributing
2023-02-15 16:12:58 +00:00
1. Install a Vendetta loader with loader config support (any mentioned in the [Installing](#installing) section).
2023-02-01 18:40:11 +00:00
2023-02-15 16:12:58 +00:00
2. Go to Settings > General and enable Developer Settings.
3. Clone the repo:
2023-02-01 18:40:11 +00:00
```
git clone https://github.com/vendetta-mod/Vendetta
```
2023-02-15 16:12:58 +00:00
4. Install dependencies:
2023-02-01 18:40:11 +00:00
```
pnpm i
```
<sup>`npm` or `yarn` should also work.</sup>
5. Build Vendetta's code:
```
pnpm build
```
<sup>`npm` or `yarn` should also work.</sup>
2023-02-15 16:12:58 +00:00
6. In the newly created `dist` directory, run a HTTP server. I recommend [http-server](https://www.npmjs.com/package/http-server).
2023-02-15 16:16:55 +00:00
7. Go to Settings > Developer enabled earlier). Enable `Load from custom url` and input the IP address and port of the server (e.g. e.g. `http://192.168.1.236:4040`) in the new input box labelled `VENDETTA URL`.
2023-02-01 18:40:11 +00:00
2023-02-15 16:12:58 +00:00
8. Restart Discord. Upon reload, you should notice that your device will download Vendetta's bundled code from your server, rather than GitHub.
2023-02-01 18:40:11 +00:00
2023-03-28 19:35:55 +00:00
9. Make your changes, rebuild, reload, go wild!