├── .gitignore ├── README.md ├── bexp.txt ├── bin └── ChakraCore.dll ├── changelog_last_updated ├── client_changelog ├── game_versions ├── injector ├── Injector.exe ├── Installer.exe └── InterFont.ttf ├── injector_changelog ├── latest_version.txt ├── launcher ├── Assets │ └── Background.png └── mlv2.dll ├── launcher_version ├── script_hashes.txt ├── supported_versions └── upd_message /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Latite Client Releases 2 | -------------------------------------------------------------------------------- /bexp.txt: -------------------------------------------------------------------------------- 1 | b1.5.5 -------------------------------------------------------------------------------- /bin/ChakraCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/bin/ChakraCore.dll -------------------------------------------------------------------------------- /changelog_last_updated: -------------------------------------------------------------------------------- 1 | May 5th, 2024 -------------------------------------------------------------------------------- /client_changelog: -------------------------------------------------------------------------------- 1 | 1. Latite Client 2.0.0 released! 2 | 2. 3 | 3. 4 | 4. 5 | -------------------------------------------------------------------------------- /game_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/game_versions -------------------------------------------------------------------------------- /injector/Injector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/injector/Injector.exe -------------------------------------------------------------------------------- /injector/Installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/injector/Installer.exe -------------------------------------------------------------------------------- /injector/InterFont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/injector/InterFont.ttf -------------------------------------------------------------------------------- /injector_changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/injector_changelog -------------------------------------------------------------------------------- /latest_version.txt: -------------------------------------------------------------------------------- 1 | v2.6.1 -------------------------------------------------------------------------------- /launcher/Assets/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/launcher/Assets/Background.png -------------------------------------------------------------------------------- /launcher/mlv2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/launcher/mlv2.dll -------------------------------------------------------------------------------- /launcher_version: -------------------------------------------------------------------------------- 1 | 29 -------------------------------------------------------------------------------- /script_hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/script_hashes.txt -------------------------------------------------------------------------------- /supported_versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/supported_versions -------------------------------------------------------------------------------- /upd_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Imrglop/Latite-Releases/HEAD/upd_message --------------------------------------------------------------------------------