├── .gitattributes ├── .github └── workflows │ └── lint.yaml ├── .gitlab-ci.yml ├── .tool-versions ├── api_configuration.md ├── code_of_conduct.md ├── contributing.md ├── license └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | ## GITATTRIBUTES FOR WEB PROJECTS 2 | # 3 | # These settings are for any web project. 4 | # 5 | # Details per file setting: 6 | # text These files should be normalized (i.e. convert CRLF to LF). 7 | # binary These files are binary and should be left untouched. 8 | # 9 | # Note that binary is a macro for -text -diff. 10 | ###################################################################### 11 | 12 | ## AUTO-DETECT 13 | ## Handle line endings automatically for files detected as 14 | ## text and leave all files detected as binary untouched. 15 | ## This will handle all files NOT defined below. 16 | * text=auto 17 | 18 | ## SOURCE CODE 19 | *.bat text eol=crlf 20 | *.coffee text 21 | *.css text 22 | *.htm text 23 | *.html text 24 | *.inc text 25 | *.ini text 26 | *.js text 27 | *.json text 28 | *.jsx text 29 | *.less text 30 | *.od text 31 | *.onlydata text 32 | *.php text 33 | *.pl text 34 | *.py text 35 | *.rb text 36 | *.sass text 37 | *.scm text 38 | *.scss text 39 | *.sh text eol=lf 40 | *.sql text 41 | *.styl text 42 | *.tag text 43 | *.ts text 44 | *.tsx text 45 | *.xml text 46 | *.xhtml text 47 | 48 | ## DOCKER 49 | *.dockerignore text 50 | Dockerfile text 51 | 52 | ## DOCUMENTATION 53 | *.markdown text 54 | *.md text 55 | *.mdwn text 56 | *.mdown text 57 | *.mkd text 58 | *.mkdn text 59 | *.mdtxt text 60 | *.mdtext text 61 | *.txt text 62 | AUTHORS text 63 | CHANGELOG text 64 | CHANGES text 65 | CONTRIBUTING text 66 | COPYING text 67 | copyright text 68 | *COPYRIGHT* text 69 | INSTALL text 70 | license text 71 | LICENSE text 72 | NEWS text 73 | readme text 74 | *README* text 75 | TODO text 76 | 77 | ## TEMPLATES 78 | *.dot text 79 | *.ejs text 80 | *.haml text 81 | *.handlebars text 82 | *.hbs text 83 | *.hbt text 84 | *.jade text 85 | *.latte text 86 | *.mustache text 87 | *.njk text 88 | *.phtml text 89 | *.tmpl text 90 | *.tpl text 91 | *.twig text 92 | 93 | ## LINTERS 94 | .csslintrc text 95 | .eslintrc text 96 | .htmlhintrc text 97 | .jscsrc text 98 | .jshintrc text 99 | .jshintignore text 100 | .stylelintrc text 101 | 102 | ## CONFIGS 103 | *.bowerrc text 104 | *.cnf text 105 | *.conf text 106 | *.config text 107 | .browserslistrc text 108 | .editorconfig text 109 | .gitattributes text 110 | .gitconfig text 111 | .htaccess text 112 | *.npmignore text 113 | *.yaml text 114 | *.yml text 115 | browserslist text 116 | Makefile text 117 | makefile text 118 | 119 | ## HEROKU 120 | Procfile text 121 | .slugignore text 122 | 123 | ## GRAPHICS 124 | *.ai binary 125 | *.bmp binary 126 | *.eps binary 127 | *.gif binary 128 | *.ico binary 129 | *.jng binary 130 | *.jp2 binary 131 | *.jpg binary 132 | *.jpeg binary 133 | *.jpx binary 134 | *.jxr binary 135 | *.pdf binary 136 | *.png binary 137 | *.psb binary 138 | *.psd binary 139 | *.svg text 140 | *.svgz binary 141 | *.tif binary 142 | *.tiff binary 143 | *.wbmp binary 144 | *.webp binary 145 | 146 | ## AUDIO 147 | *.kar binary 148 | *.m4a binary 149 | *.mid binary 150 | *.midi binary 151 | *.mp3 binary 152 | *.ogg binary 153 | *.ra binary 154 | 155 | ## VIDEO 156 | *.3gpp binary 157 | *.3gp binary 158 | *.as binary 159 | *.asf binary 160 | *.asx binary 161 | *.fla binary 162 | *.flv binary 163 | *.m4v binary 164 | *.mng binary 165 | *.mov binary 166 | *.mp4 binary 167 | *.mpeg binary 168 | *.mpg binary 169 | *.ogv binary 170 | *.swc binary 171 | *.swf binary 172 | *.webm binary 173 | 174 | ## ARCHIVES 175 | *.7z binary 176 | *.gz binary 177 | *.jar binary 178 | *.rar binary 179 | *.tar binary 180 | *.zip binary 181 | 182 | ## FONTS 183 | *.ttf binary 184 | *.eot binary 185 | *.otf binary 186 | *.woff binary 187 | *.woff2 binary 188 | 189 | ## EXECUTABLES 190 | *.exe binary 191 | *.pyc binary -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- 1 | name: lint 2 | on: 3 | pull_request: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | awesome-lint: 10 | strategy: 11 | fail-fast: false 12 | matrix: 13 | files: 14 | - "readme.md" 15 | runs-on: ubuntu-latest 16 | steps: 17 | - name: "checkout repo" 18 | uses: actions/checkout@v2 19 | with: 20 | fetch-depth: 0 21 | - name: asdf_install 22 | uses: asdf-vm/actions/install@v1 23 | - name: "linting: ${{ matrix.files }}" 24 | run: npx -y awesome-lint ${{ matrix.files }} 25 | awesome-bot: 26 | strategy: 27 | fail-fast: false 28 | matrix: 29 | files: 30 | - "readme.md" 31 | runs-on: ubuntu-latest 32 | steps: 33 | - name: "checkout repo" 34 | uses: actions/checkout@v2.0.0 35 | with: 36 | fetch-depth: 0 37 | - name: "setup ruby" 38 | uses: ruby/setup-ruby@v1 39 | with: 40 | ruby-version: 3.0.1 41 | bundler-cache: true 42 | - name: "install awesome-bot" 43 | run: gem install awesome_bot 44 | - name: "linting: ${{ matrix.files }}" 45 | run: awesome_bot --allow-redirect ${{ matrix.files }} -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | stages: 2 | - check 3 | 4 | awesome-lint: 5 | stage: check 6 | image: node:lts 7 | cache: 8 | paths: 9 | - node_modules/ 10 | script: 11 | - yarn add awesome-lint 12 | - yarn awesome-lint 13 | 14 | awesome-bot: 15 | stage: check 16 | image: ruby:latest 17 | script: 18 | - gem install awesome_bot 19 | - awesome_bot README.md --allow-redirect --allow-dupe 20 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 16.5.0 -------------------------------------------------------------------------------- /api_configuration.md: -------------------------------------------------------------------------------- 1 | # Contents 2 | - [revolt.js](#revoltjs) 3 | - [Revolt.NET](#revoltnet) 4 | - [RevoltSharp](#revoltsharp) 5 | - [Volt](#volt) 6 | - [Java Revolt Bridge](#java-revolt-bridge) 7 | - [Revolt.io](#revoltio) 8 | - [Voltare](#voltare) 9 | - [Revoltx](#revoltx) 10 | - [Reject.js](#rejectjs) 11 | - [Voltage](#voltage) 12 | - [defectio](#defectio) 13 | - [Revolt.py](#revoltpy) 14 | - [Luster](#luster) 15 | - [Robespierre](#robespierre) 16 | - [Revolt.rs](#revoltrs) 17 | - [Ruvolt](#ruvolt) 18 | - [RevoltKit](#revoltkit) 19 | - [Revolt Uploader](#revolt-uploader) 20 | - Not Compatible: 21 | - [Revolution](#revolution) 22 | - [Revoltgo](#revoltgo) 23 | - [Revoltkt](#revoltkt) 24 | - [pyrevolt](#pyrevolt) 25 | - [TODO](#%EF%B8%8F-todo) 26 | 27 | ## [revolt.js](https://www.npmjs.com/package/revolt.js) 28 | ```js 29 | const { Client } = require("revolt.js"); 30 | let client = new Client(); 31 | 32 | client.configuration = { 33 | app: "https://api.divolt.xyz", 34 | ws: "wss://ws.divolt.xyz", 35 | features: { 36 | autumn: { url: "https://autumn.divolt.xyz" }, 37 | january: { url: "https://january.divolt.xyz" } 38 | } 39 | } 40 | ``` 41 | 42 | ## [Revolt.NET](https://www.nuget.org/packages/Revolt.Net/) 43 | Note: Possibly broken with Divolt, have not been able to login successfully 44 | ```cs 45 | using Revolt; 46 | 47 | var client = new RevoltClient("https://api.divolt.xyz"); 48 | client.LoginAsync(TokenType.Bot, token).Wait(); 49 | ``` 50 | 51 | ## [RevoltSharp](https://github.com/xXBuilderBXx/RevoltSharp) 52 | ```cs 53 | using RevoltSharp; 54 | 55 | var config = new ClientConfig(); 56 | config.ApiUrl = "https://api.divolt.xyz"; 57 | config.Debug.UploadUrl = "https://autumn.divolt.xyz"; 58 | config.Debug.WebsocketUrl = "wss://ws.divolt.xyz"; 59 | 60 | var client = new RevoltClient(token, ClientMode.WebSocket, config); 61 | ``` 62 | 63 | ## [Volt](https://github.com/volt-framework/volt) 64 | ```dart 65 | import 'package:volt/volt.dart'; 66 | 67 | void main() { 68 | final bot = Volt(token, options: ClientOptions( 69 | httpBaseUrl: "api.divolt.xyz", 70 | wsBaseUrl: "ws.divolt.xyz" 71 | )); 72 | } 73 | ``` 74 | 75 | ## [Java Revolt Bridge](https://github.com/jrvlt/jrv) 76 | Note: There's probably a way to set WS and such but jesus is javadocs horrid 77 | ```java 78 | import ga.geist.jrv.RevoltBridge; 79 | import ga.geist.jrv.RevoltEventListener; 80 | 81 | import java.net.URI; 82 | import java.net.URISyntaxException; 83 | 84 | public class Main { 85 | public static class EventManager extends RevoltEventListener { 86 | ... 87 | } 88 | 89 | public static void main(String[] args) throws URISyntaxException { 90 | RevoltBridge jrv = new RevoltBridge(new URI("https://api.divolt.xyz")); 91 | 92 | jrv.registerEventListener(new EventManager()); 93 | } 94 | } 95 | 96 | ``` 97 | 98 | ## [Revolt.io](https://github.com/revolt-io/revolt.io) 99 | Note: AFAIK this package doesn't support CommonJS, you have to set it to ESM in your package.json file. (`"type": "module"`) 100 | ```js 101 | import { Client } from 'revolt.io' 102 | const client = new Client() 103 | 104 | client.configuration = { 105 | app: "https://api.divolt.xyz", 106 | ws: "wss://ws.divolt.xyz", 107 | features: { 108 | autumn: { url: "https://autumn.divolt.xyz" }, 109 | january: { url: "https://january.divolt.xyz" } 110 | } 111 | } 112 | ``` 113 | 114 | ## [Voltare](https://github.com/Dexare/Voltare) 115 | Note: This package is archived. You're also required to use the node parameter `--experimental-specifier-resolution=node` and to use ESM (set `"type": "module"` in package.json) 116 | ```js 117 | import { VoltareClient } from 'voltare'; 118 | 119 | const client = new VoltareClient({ 120 | login: { 121 | type: 'bot', 122 | token: token 123 | }, 124 | revoltOptions: { 125 | apiURL: "https://api.divolt.xyz", 126 | }, 127 | autumnHost: "https://autumn.divolt.xyz" 128 | }); 129 | ``` 130 | 131 | ## [Revoltx](https://github.com/kaname-png/revoltx) 132 | Note: You're required to use the node parameter `--experimental-specifier-resolution=node` and to use ESM (set `"type": "module"` in package.json) 133 | ```js 134 | import { Client } from '@kaname-png/revoltx'; 135 | 136 | const client = new Client({ defaultPrefix: "!" }); 137 | client.x.configuration = { 138 | app: "https://api.divolt.xyz", 139 | ws: "wss://ws.divolt.xyz", 140 | features: { 141 | autumn: { url: "https://autumn.divolt.xyz" }, 142 | january: { url: "https://january.divolt.xyz" } 143 | } 144 | } 145 | ``` 146 | 147 | ## [Reject.js](https://github.com/revoltrejectorg/reject.js) 148 | Note: This does not support Discord.js v14 yet. 149 | ```js 150 | // Reject.js is just a layer for Discord.JS and Revolt.js, so you can just do a normal revolt client: 151 | const RevoltClient = require("revolt.js").Client; 152 | 153 | const bot = new RevoltClient(); 154 | bot.configuration = { 155 | app: "https://api.divolt.xyz", 156 | ws: "wss://ws.divolt.xyz", 157 | features: { 158 | autumn: { url: "https://autumn.divolt.xyz" }, 159 | january: { url: "https://january.divolt.xyz" } 160 | } 161 | }; 162 | 163 | // ...and then add reject: 164 | const reject = new RejectClient(bot); 165 | 166 | const botReady = (client) => { 167 | console.log(`Logged in as ${client.user.username}`); 168 | } 169 | bot.on("ready", () => { 170 | botReady(reject); 171 | }) 172 | ``` 173 | 174 | ## [Voltage](https://github.com/EnokiUN/voltage) 175 | ```py 176 | import voltage 177 | client = voltage.Client() 178 | 179 | client.http.api_url = "https://api.divolt.xyz" 180 | ``` 181 | 182 | ## [defectio](https://github.com/Darkflame72/defectio) 183 | Note: This package is archived. 184 | ```py 185 | import defectio 186 | client = defectio.Client() 187 | 188 | client.api_url = "https://api.divolt.xyz" 189 | 190 | # It is also possible to change the WS URL using... 191 | await client.create() 192 | client.websocket.ws_url = "wss://ws.divolt.xyz" 193 | # ...but good luck figuring out Python's broken async logic 194 | ``` 195 | 196 | ## [Revolt.py](https://github.com/Zomatree/revolt.py) 197 | ```py 198 | import revolt 199 | import asyncio 200 | import aiohttp 201 | 202 | class Client(revolt.Client): 203 | ... 204 | 205 | async def main(): 206 | async with aiohttp.ClientSession() as session: 207 | client = Client(session, "token") 208 | client.api_url = "https://api.divolt.xyz" 209 | await client.start() 210 | 211 | 212 | asyncio.run(main()) 213 | ``` 214 | 215 | ## [Luster](https://github.com/nerdguyahmad/luster) 216 | Note: This package is still in a very early stage. Message sending isn't even supported and you'll have to use the HTTP and WebSocket handlers directly for basic stuff. 217 | ```py 218 | import luster 219 | 220 | client = luster.Client(token="token") 221 | client.http_handler.BASE_URL = "https://api.divolt.xyz" 222 | ``` 223 | 224 | ## [Robespierre](https://github.com/dblanovschi/robespierre) 225 | 226 | ## [Revolt.rs](https://github.com/AkiaCode/revolt.rs) 227 | 228 | ## [Ruvolt](https://github.com/Arthur-Damasceno/ruvolt) 229 | TODO: Suffer through Rust and write up examples for the above 3 packages 230 | 231 | ## [RevoltKit](https://github.com/3PIV/RevoltKit) 232 | Note: I don't own a Mac (so no XCode), there's no docs, and I don't know Swift. This is probably incorrect / incomplete. 233 | ```swift 234 | let clientAPI = RevoltAPIClient 235 | 236 | clientAPI.basePath = "https://api.divolt.xyz" 237 | ``` 238 | 239 | ## [Revolt Uploader](https://github.com/ShadowLp174/revolt-uploader) 240 | ```js 241 | const { Client } = require("revolt.js"); 242 | const Uploader = require("revolt-uploader"); 243 | let client = new Client(); 244 | 245 | client.configuration = {} // see revolt.js 246 | const uploader = new Uploader(client); 247 | ``` 248 | 249 | # ☠️ Not Compatible 250 | 251 | ## [Revolution](https://github.com/li223/Revolution) 252 | See ["Revolt API 0.5.3 Support"](https://github.com/li223/Revolution/issues/1) 253 | 254 | ## [Revoltgo](https://github.com/5elenay/revoltgo) 255 | See ["URLs are constant"](https://github.com/5elenay/revoltgo/issues/10). Project also appears to be dead. 256 | 257 | ## [Revoltkt](https://github.com/XuaTheGrate/RevoltKt) 258 | Dead project, last commit was before API 0.5.3 which had breaking changes. Also the template doesn't even work and I was not able to make it work. 259 | 260 | ## [pyrevolt](https://github.com/GenericNerd/pyrevolt) 261 | No current way to set API / WS URL. I may be incorrect though - the docs are auto-generated garbage and PyCharm didn't help. Also note that this is in Alpha. 262 | 263 | # ⚒️ TODO 264 | 265 | * Add and test the following: 266 | - [Revoice.js](https://github.com/ShadowLp174/revoice.js) 267 | - Note: Project is currently paused due to Revolt's Vortex rewrite 268 | - [TurnipBeams](https://github.com/lexisother/TurnipBeams) 269 | - [RevKit](https://github.com/Revolt-Unofficial-Clients/revkit) 270 | - [revolt-cobol-api](https://github.com/kabylake1/revolt-cobol-api) 271 | -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | - Using welcoming and inclusive language 18 | - Being respectful of differing viewpoints and experiences 19 | - Gracefully accepting constructive criticism 20 | - Focusing on what is best for the community 21 | - Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | - The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | - Trolling, insulting/derogatory comments, and personal or political attacks 28 | - Public or private harassment 29 | - Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | - Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at support@revolt.chat. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | This project abides by a [Contributor Code of Conduct](code_of_conduct.md). By contributing to this project, you agree to abide by its terms. 4 | 5 | ## Pull Requests 6 | 7 | ALWAYS create a new branch with your proposed changes. Thank you! 8 | 9 | ## Adding a new Item 10 | 11 | - Try to fit your item into an existing section. [Open a suggestion here](https://github.com/insert/awesome-revolt/issues/new) to start a discussion about a new section. 12 | - Add a new item to the bottom of the list in a section. 13 | - If a duplicate item exists, discuss why the new item should replace it. 14 | - Check your spelling & grammar. 15 | - The item must follow this format: 16 | ``` 17 | - [item name](https link) - The description should begin with a capital letter and end with a period. 18 | ``` 19 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | [![CC0](https://i.creativecommons.org/p/zero/1.0/88x31.png)](https://creativecommons.org/publicdomain/zero/1.0/) 2 | 3 | Statement of Purpose 4 | 5 | The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). 6 | 7 | Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. 8 | 9 | For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 10 | 11 | 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: 12 | 13 | the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; 14 | moral rights retained by the original author(s) and/or performer(s); 15 | publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; 16 | rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; 17 | rights protecting the extraction, dissemination, use and reuse of data in a Work; 18 | database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and 19 | other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 20 | 21 | 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 22 | 23 | 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 24 | 25 | 4. Limitations and Disclaimers. 26 | 27 | No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. 28 | Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. 29 | Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. 30 | Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 6 | # Awesome Divolt [![Awesome](https://awesome.re/badge.svg)](https://awesome.re) [![lint](https://github.com/ggtylerr/awesome-divolt/actions/workflows/lint.yaml/badge.svg?branch=master)](https://github.com/ggtylerr/awesome-divolt/actions/workflows/lint.yaml) 7 | 8 | 9 | 10 | An awesome list of things for the chat application Divolt. 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Divolt is a self-hosted instance of Revolt - a user-first, privacy-friendly chat platform built with modern web technologies. 21 | 22 | This list is a fork of [awesome-revolt](https://github.com/insertish/awesome-revolt) for stuff that's compatible with it. 23 | 24 |
25 | 26 | 27 | 28 | ## Contents 29 | 30 | - [💬 Servers](#-servers) 31 | - [💻 API Libraries](#-api-libraries) 32 | - [🤖 Bots](#-bots) 33 | - [🎨 Themes](#-themes) 34 | - [🔧 Clients](#-clients) 35 | 36 | 37 | 38 | ## 💬 Servers 39 | 40 | - [FMHY](https://fmhy.divolt.xyz) - Free Media, Heck Yeah! 41 | - [M4D](https://m4d.divolt.xyz) - Movies4Discord Backup. 42 | - [SlavArt](https://slavart.divolt.xyz/) - ART. High quality tunes. 43 | - [CrackHub](https://crackhub.divolt.xyz/) - Software cracking. 44 | - [Gamesdrive](https://gamesdrive.divolt.xyz/) - Gamin'. 45 | - [NBG](https://divolt.xyz/invite/BM9hvM0E) - No Bucks Given. 46 | - [Project Black Pearl](https://pbp.divolt.xyz) - Server for [PBP](https://github.com/ProjectBlackPearl/project_black_pearl/), a FOSS project that aims to unify game sources in one place. 47 | - [iDoISO + Nebula's Essence](https://isoneb.divolt.xyz) - ISO and Nebula releases. 48 | - [NQRARBG](https://nqrarbg.divolt.xyz) - A clone and successor to RARBG (currently under development.) 49 | - One hidden server, if you're worthy, you'll find it. ;) 50 | 51 | ## 💻 API Libraries 52 | 53 | > To make these compatible, see [API Configuration.](api_configuration.md) 54 | 55 | - [Node.js: revolt.js](https://www.npmjs.com/package/revolt.js) - Official JavaScript library for Revolt. 56 | - [C#: Revolt.NET](https://www.nuget.org/packages/Revolt.Net/) - The .NET library for Revolt. 57 | - [C#: RevoltSharp](https://github.com/xXBuilderBXx/RevoltSharp) - C# lib with all the events and easy to use design. 58 | - [Dart: Volt](https://github.com/volt-framework/volt) - Wrapper around Revolt Bot API for Dart. 59 | - [Go: Revoltgo](https://github.com/5elenay/revoltgo) - Go library for Revolt. 60 | - [Go: revolt.go](https://github.com/ben-forster/revolt) - Go wrapper for Revolt. 61 | - [Java: Java Revolt Bridge](https://github.com/jrvlt/jrv) - Java client library for interacting with the Revolt chat platform. 62 | - [Node.js/Deno: Revolt.io](https://github.com/revolt-io/revolt.io) - JavaScript library for Revolt. 63 | - [Node.js: Voltare](https://github.com/Dexare/Voltare) - Typed, modular and extendable Revolt bot framework. 64 | - [Node.js: Revoltx](https://github.com/kaname-png/revoltx) - RevoltX is a framework for creating Revolt bots, powered by the @sapphire/framework Arguments and Preconditions system. 65 | - [Node.js: Reject.js](https://github.com/revoltrejectorg/reject.js) - Compatibility layer for Discord.js bots to port themselves to Revolt.js. 66 | - [Python: Voltage](https://github.com/EnokiUN/voltage) - A simple asynchronous pythonic wrapper for the revolt api. 67 | - [Python: defectio](https://github.com/Darkflame72/defectio) - Asyncronous and typed Python library for Revolt. 68 | - [Python: Revolt.py](https://github.com/Zomatree/revolt.py) - Python library for Revolt. 69 | - [Python: Luster](https://github.com/nerdguyahmad/luster) - Modern Python library for Revolt.chat API. 70 | - [Rust: Robespierre](https://github.com/dblanovschi/robespierre) - Rust library for Revolt. 71 | - [Rust: Revolt.rs](https://github.com/AkiaCode/revolt.rs) - An API wrapper for Revolt. 72 | - [Rust: Ruvolt](https://github.com/Arthur-Damasceno/ruvolt) - Revolt API wrapper for create bots. 73 | - [Swift: RevoltKit](https://github.com/3PIV/RevoltKit) - An API wrapper for Swift. 74 | - [Node.js: Revoice.js](https://github.com/ShadowLp174/revoice.js) - A library for interacting with voice channels on Revolt. 75 | - [Node.js: TurnipBeams](https://github.com/lexisother/TurnipBeams) - A declarative, structure-agnostic, TypeScript-centric command handler for revolt.js. 76 | - [Node.js: Revolt Uploader](https://github.com/ShadowLp174/revolt-uploader) - A utility package that allows you to add attachments to messages. 77 | - [Node.js: RevKit](https://github.com/Revolt-Unofficial-Clients/revkit) - A typed, class-oriented library for interacting with Revolt. Also includes additional packages for voice channels and command handler. 78 | - [COBOL: revolt-cobol-api](https://github.com/kabylake1/revolt-cobol-api) - A COBOL API wrapper for making Revolt bots. 79 | 80 | ## 🤖 Bots 81 | 82 | - [Bolt](https://github.com/williamhorning/bolt) - A cross-platform bot that bridges Discord, Guilded, and Revolt. 83 | - [DiscordBridge](https://github.com/Jan0660/Taco/tree/senpai/DiscordBridge) - Temporary Discord bridge until first-party support is added. 84 | - [PhotoBox](https://github.com/PhotoBoxPW/PhotoBoxRevolt) - A bot that creates and morphs images into fun memes or with crazy filters. 85 | - [Taco](https://github.com/Jan0660/Taco) - Multi-purpose bot, includes Discord bridge. 86 | - [TelegramBridge](https://github.com/o8z/TelegramBridge) - Telegram <==> Revolt bridge. 87 | - [Remix](https://github.com/remix-bot/revolt) - An advanced music bot that supports YouTube, Spotify, and Soundcloud - All the power just a click away ;). 88 | - [revcord](https://github.com/mayudev/revcord) - Discord bridge with setup through commands. Supports edits, images, embeds etc. 89 | - [PHLASH](https://github.com/itzTheMeow/revolt-phlash) - A (mostly music) bot with support for music from YouTube/SoundCloud/MP3s + more, various audio filters, and some other helpful commands. 90 | - [ChatGPT](https://github.com/NoLogicAlan/ChatGPT) - Introducing ChatGPT Bot - the ultimate AI-powered chat companion for your Revolt server!. 91 | - [Revolt.js.template](https://github.com/sympact06/revolt.js.template) - A bot template made with OOP rules and advanced error handling and EmbedBuilder. You can make a bot without knowning the whole revolt.js documentation with it. 92 | - [revolt.guide](https://revolt.guide) - A guide on how to create your own Revolt Bot with revolt.js. 93 | 94 | ## 🎨 Themes 95 | 96 | - [Official Theme Repository](https://github.com/revoltchat/themes) - Themes provided by the Revolt community. 97 | - [Revolt Discord Theme](https://github.com/ThatTonybo/Revolt-Discord-Theme) - Discord-like theme by ThatTonybo. 98 | 99 | ## 🔧 Clients 100 | 101 | > Since this isn't common knowledge, please note that divolt.xyz can be installed by navigating to it in your mobile browser and pressing "install app" when prompted or in your browser's page dropdown. 102 | 103 | - [Divolt Desktop](https://github.com/ggtylerr/divolt-desktop) - A fork of Revolt Desktop, rebuilt for Divolt. 104 | - [Divolt Android](https://github.com/ggtylerr/divolt-android) - A fork of Revolt Android TWA, rebuilt for Divolt. 105 | - [Mobile app: RVMob](https://github.com/revoltchat/rvmob) - An Android app made in React Native, currently in Beta. (Instance support is currently only in the latest commits, [you need to get it from automatic builds.](https://github.com/revoltchat/rvmob/actions)) 106 | - [Minecraft: Unofficial Revolt for Fabric](https://rvf.infi.sh/) - Minecraft-based client for the Revolt chat platform. (Can be configured for Divolt) 107 | 108 | ### Non-ported clients 109 | 110 | > These clients are not directly supported for Divolt, however if you know how to, you can configure the source code to make it compatible. 111 | 112 | - [HTML: Reduct](https://dorudolasu.github.io/Reduct/) - A Revolt client made in a single HTML file (and held by duct tape.) Made for older browsers. 113 | - [HTML: Retaped](https://github.com/ERROR-404-NULL-NOT-FOUND/Retaped) - A fork of Retaped with additional features. 114 | - [Desktop: Retaped-desktop](https://github.com/ERROR-404-NULL-NOT-FOUND/Retaped-desktop) - A version of Retaped in GTK. 115 | - [TUI: Revolt.Cli: TUI client for Revolt](https://github.com/Jan0660/Revolt.Cli) - Terminal.Gui based CLI client writen in C#. 116 | - [Mobile App: Unoffical Revolt Android App](https://github.com/ashpotter/revolt-mobile) - Revolt Android app based on ASW. 117 | - [Svolte](https://github.com/itzTheMeow/revolt-svolte) - Revolt client made in Svelte with better mobile/PWA support and QOL features. 118 | 119 | ### Discontinued Projects 120 | 121 | - [Mobile App: Rebar](https://github.com/jan-software-foundation/rebar) - App for Android and iOS written with Flutter. 122 | - [Disbridge](https://github.com/itzTheMeow/Disbridge) - A Revolt - Discord bridge for people that have friends who won't switch. 123 | 124 | 125 | 126 | ## Contributing 127 | 128 | [Contributions of any kind welcome, just follow the guidelines](contributing.md)! 129 | 130 | ### Contributors 131 | 132 | 133 | --------------------------------------------------------------------------------