├── .gitignore ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src ├── commonMain └── kotlin │ ├── Discord.kt │ ├── Main.kt │ ├── OptionSelector.kt │ └── Vencord.kt ├── linuxMain └── kotlin │ ├── Discord.kt │ └── Vencord.kt └── windowsMain └── kotlin ├── Discord.kt └── Vencord.kt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .gradle 3 | build -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "VencordInstaller" -------------------------------------------------------------------------------- /src/commonMain/kotlin/Discord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/commonMain/kotlin/Discord.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/commonMain/kotlin/Main.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/OptionSelector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/commonMain/kotlin/OptionSelector.kt -------------------------------------------------------------------------------- /src/commonMain/kotlin/Vencord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/commonMain/kotlin/Vencord.kt -------------------------------------------------------------------------------- /src/linuxMain/kotlin/Discord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/linuxMain/kotlin/Discord.kt -------------------------------------------------------------------------------- /src/linuxMain/kotlin/Vencord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/linuxMain/kotlin/Vencord.kt -------------------------------------------------------------------------------- /src/windowsMain/kotlin/Discord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/windowsMain/kotlin/Discord.kt -------------------------------------------------------------------------------- /src/windowsMain/kotlin/Vencord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X1nto/VencordInstaller/HEAD/src/windowsMain/kotlin/Vencord.kt --------------------------------------------------------------------------------