├── .gitattributes ├── .gitignore ├── LICENSE.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── readme.md ├── root.gradle.kts ├── settings.gradle.kts ├── src └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ ├── cosmetics │ │ ├── Cosmetics.java │ │ ├── Flag.java │ │ ├── FlagCosmetics.java │ │ └── FlagRenderer.java │ │ └── craftify │ │ ├── mixin │ │ └── MouseMixin.java │ │ └── ssl │ │ ├── FixSSL.java │ │ └── LambdaExceptionUtils.java │ ├── kotlin │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ ├── Command.kt │ │ ├── Craftify.kt │ │ ├── CraftifyModMenu.kt │ │ ├── Initializer.kt │ │ ├── config │ │ ├── Config.kt │ │ ├── ConfigMigrations.kt │ │ ├── ReadWritePropertyValue.kt │ │ ├── ServiceConfigs.kt │ │ ├── ServiceProperty.kt │ │ └── SuppliedColoredConstraint.kt │ │ ├── platform │ │ ├── CancellableEventType.kt │ │ ├── EventHandler.kt │ │ ├── EventType.kt │ │ ├── Events.kt │ │ ├── KotlinLanguageAdapter.kt │ │ ├── PlatformSpecific.kt │ │ ├── UKeybind.kt │ │ ├── compat │ │ │ └── obsoverlay │ │ │ │ └── ObsOverlay.kt │ │ └── network │ │ │ ├── ByteBufExtensions.kt │ │ │ ├── GenericCustomPayload.kt │ │ │ └── PacketHandler.kt │ │ ├── screens │ │ ├── changelog │ │ │ └── ChangeLogScreen.kt │ │ ├── servers │ │ │ └── ServersScreen.kt │ │ └── volume │ │ │ ├── VolumeScreen.kt │ │ │ └── VolumeSlider.kt │ │ ├── server │ │ ├── LoginServer.kt │ │ ├── Page.kt │ │ └── SetTokenPage.kt │ │ ├── services │ │ ├── ServiceHelper.kt │ │ ├── ServiceType.kt │ │ ├── addons │ │ │ ├── Addon.kt │ │ │ ├── ConfigAddon.kt │ │ │ ├── EssentialCompatAddon.kt │ │ │ ├── PlayerUIAddon.kt │ │ │ └── ServerShareAddon.kt │ │ ├── ads │ │ │ ├── AdManager.kt │ │ │ └── Advertisment.kt │ │ ├── config │ │ │ ├── BeefwebServiceConfig.kt │ │ │ ├── ServiceConfig.kt │ │ │ ├── SpotifyServiceConfig.kt │ │ │ └── YoutubeServiceConfig.kt │ │ └── update │ │ │ ├── UpdateMessage.kt │ │ │ ├── UpdateVersion.kt │ │ │ └── Updater.kt │ │ ├── themes │ │ ├── ColorSerializer.kt │ │ ├── Theme.kt │ │ ├── ThemeConfig.kt │ │ ├── UrlSerializer.kt │ │ └── library │ │ │ ├── LibraryScreen.kt │ │ │ ├── LibraryStorage.kt │ │ │ ├── LibraryTheme.kt │ │ │ ├── ScreenshotScreen.kt │ │ │ ├── UIThemeButton.kt │ │ │ ├── UIThemeInfo.kt │ │ │ └── UIThemeInstallButton.kt │ │ ├── ui │ │ ├── EmptyImageProvider.kt │ │ ├── Player.kt │ │ ├── PositionEditorScreen.kt │ │ ├── UIButton.kt │ │ ├── UIControls.kt │ │ ├── UIPlayer.kt │ │ ├── UIProgressBar.kt │ │ ├── UITextMarquee.kt │ │ ├── constraints │ │ │ ├── ConfigColorConstraint.kt │ │ │ └── ThemeFontProvider.kt │ │ └── enums │ │ │ ├── Alignment.kt │ │ │ ├── Anchor.kt │ │ │ ├── DisplayMode.kt │ │ │ ├── LinkingMode.kt │ │ │ └── RenderType.kt │ │ └── utils │ │ ├── EssentialUtils.kt │ │ ├── Extensions.kt │ │ ├── MemoryImageCache.kt │ │ ├── RenderUtils.kt │ │ └── Utils.kt │ └── resources │ ├── META-INF │ └── mods.toml │ ├── craftify │ ├── gear.png │ ├── login.html │ └── youtube.html │ ├── fabric.mod.json │ ├── lekeystore.jks │ ├── mcmod.info │ ├── mixins.craftify.json │ └── pack.mcmeta └── versions ├── 1.12.2-1.8.9.txt ├── 1.12.2-forge ├── gradle.properties └── src │ └── main │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ └── platform │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.17.1-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.17.1-forge ├── gradle.properties └── src │ └── main │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.18.2-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.19.2-fabric ├── gradle.properties └── src │ └── main │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.19.4-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.20.1-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.20.4-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.20.6-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── CustomPayloadMixin.java │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ └── network │ └── PacketHandler.kt ├── 1.21-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── CustomPayloadMixin.java │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ ├── compat │ └── obsoverlay │ │ └── ObsOverlay.kt │ └── network │ └── PacketHandler.kt ├── 1.21.3-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── CustomPayloadMixin.java │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ ├── compat │ └── obsoverlay │ │ └── ObsOverlay.kt │ └── network │ └── PacketHandler.kt ├── 1.21.4-fabric ├── gradle.properties └── src │ └── main │ ├── java │ └── tech │ │ └── thatgravyboat │ │ └── craftify │ │ └── mixin │ │ ├── CustomPayloadMixin.java │ │ ├── GameRendererMixin.java │ │ └── MinecraftClientMixin.java │ └── kotlin │ └── tech │ └── thatgravyboat │ └── craftify │ ├── Craftify.kt │ └── platform │ ├── EventHandler.kt │ ├── PlatformSpecific.kt │ ├── compat │ └── obsoverlay │ │ └── ObsOverlay.kt │ └── network │ └── PacketHandler.kt ├── 1.8.9-forge └── gradle.properties └── mainProject /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/gradlew.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/readme.md -------------------------------------------------------------------------------- /root.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/root.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/cosmetics/Cosmetics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/cosmetics/Cosmetics.java -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/cosmetics/Flag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/cosmetics/Flag.java -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/cosmetics/FlagCosmetics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/cosmetics/FlagCosmetics.java -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/cosmetics/FlagRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/cosmetics/FlagRenderer.java -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/craftify/mixin/MouseMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/craftify/mixin/MouseMixin.java -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/craftify/ssl/FixSSL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/craftify/ssl/FixSSL.java -------------------------------------------------------------------------------- /src/main/java/tech/thatgravyboat/craftify/ssl/LambdaExceptionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/java/tech/thatgravyboat/craftify/ssl/LambdaExceptionUtils.java -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/Command.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/Command.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/CraftifyModMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/CraftifyModMenu.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/Initializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/Initializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/config/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/config/Config.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/config/ConfigMigrations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/config/ConfigMigrations.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/config/ReadWritePropertyValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/config/ReadWritePropertyValue.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/config/ServiceConfigs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/config/ServiceConfigs.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/config/ServiceProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/config/ServiceProperty.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/config/SuppliedColoredConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/config/SuppliedColoredConstraint.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/CancellableEventType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/CancellableEventType.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/EventType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventType.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/Events.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/Events.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/KotlinLanguageAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/KotlinLanguageAdapter.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/UKeybind.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/UKeybind.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/network/ByteBufExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/ByteBufExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/network/GenericCustomPayload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/GenericCustomPayload.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/screens/changelog/ChangeLogScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/screens/changelog/ChangeLogScreen.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/screens/servers/ServersScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/screens/servers/ServersScreen.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/screens/volume/VolumeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/screens/volume/VolumeScreen.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/screens/volume/VolumeSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/screens/volume/VolumeSlider.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/server/LoginServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/server/LoginServer.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/server/Page.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/server/Page.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/server/SetTokenPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/server/SetTokenPage.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/ServiceHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/ServiceHelper.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/ServiceType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/ServiceType.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/addons/Addon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/addons/Addon.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/addons/ConfigAddon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/addons/ConfigAddon.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/addons/EssentialCompatAddon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/addons/EssentialCompatAddon.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/addons/PlayerUIAddon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/addons/PlayerUIAddon.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/addons/ServerShareAddon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/addons/ServerShareAddon.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/ads/AdManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/ads/AdManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/ads/Advertisment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/ads/Advertisment.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/config/BeefwebServiceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/config/BeefwebServiceConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/config/ServiceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/config/ServiceConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/config/SpotifyServiceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/config/SpotifyServiceConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/config/YoutubeServiceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/config/YoutubeServiceConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/update/UpdateMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/update/UpdateMessage.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/update/UpdateVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/update/UpdateVersion.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/services/update/Updater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/services/update/Updater.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/ColorSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/ColorSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/Theme.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/ThemeConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/ThemeConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/UrlSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/UrlSerializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/LibraryScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/LibraryScreen.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/LibraryStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/LibraryStorage.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/LibraryTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/LibraryTheme.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/ScreenshotScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/ScreenshotScreen.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/UIThemeButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/UIThemeButton.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/UIThemeInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/UIThemeInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/themes/library/UIThemeInstallButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/themes/library/UIThemeInstallButton.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/EmptyImageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/EmptyImageProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/Player.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/Player.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/PositionEditorScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/PositionEditorScreen.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/UIButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/UIButton.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/UIControls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/UIControls.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/UIPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/UIPlayer.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/UIProgressBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/UIProgressBar.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/UITextMarquee.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/UITextMarquee.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/constraints/ConfigColorConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/constraints/ConfigColorConstraint.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/constraints/ThemeFontProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/constraints/ThemeFontProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/Alignment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/Alignment.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/Anchor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/Anchor.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/DisplayMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/DisplayMode.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/LinkingMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/LinkingMode.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/RenderType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/ui/enums/RenderType.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/utils/EssentialUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/utils/EssentialUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/utils/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/utils/Extensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/utils/MemoryImageCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/utils/MemoryImageCache.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/utils/RenderUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/utils/RenderUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/tech/thatgravyboat/craftify/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/kotlin/tech/thatgravyboat/craftify/utils/Utils.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /src/main/resources/craftify/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/craftify/gear.png -------------------------------------------------------------------------------- /src/main/resources/craftify/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/craftify/login.html -------------------------------------------------------------------------------- /src/main/resources/craftify/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/craftify/youtube.html -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /src/main/resources/lekeystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/lekeystore.jks -------------------------------------------------------------------------------- /src/main/resources/mcmod.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/mcmod.info -------------------------------------------------------------------------------- /src/main/resources/mixins.craftify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/mixins.craftify.json -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /versions/1.12.2-1.8.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.12.2-1.8.9.txt -------------------------------------------------------------------------------- /versions/1.12.2-forge/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.12.2-forge/gradle.properties -------------------------------------------------------------------------------- /versions/1.12.2-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.12.2-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.12.2-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.12.2-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.17.1-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.17.1-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.17.1-forge/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-forge/gradle.properties -------------------------------------------------------------------------------- /versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.17.1-forge/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.18.2-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.18.2-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.18.2-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.18.2-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.18.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.19.2-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.2-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.2-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.19.4-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.19.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.19.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.19.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.20.1-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.20.1-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.20.1-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.1-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.20.4-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.20.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.20.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.20.6-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.20.6-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.21-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt -------------------------------------------------------------------------------- /versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.21.3-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt -------------------------------------------------------------------------------- /versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.3-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.21.4-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/CustomPayloadMixin.java -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/GameRendererMixin.java -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/java/tech/thatgravyboat/craftify/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/Craftify.kt -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/EventHandler.kt -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/PlatformSpecific.kt -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/compat/obsoverlay/ObsOverlay.kt -------------------------------------------------------------------------------- /versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.21.4-fabric/src/main/kotlin/tech/thatgravyboat/craftify/platform/network/PacketHandler.kt -------------------------------------------------------------------------------- /versions/1.8.9-forge/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatGravyBoat/Craftify/HEAD/versions/1.8.9-forge/gradle.properties -------------------------------------------------------------------------------- /versions/mainProject: -------------------------------------------------------------------------------- 1 | 1.8.9-forge --------------------------------------------------------------------------------