├── .githooks └── pre-commit ├── .github └── workflows │ ├── build-appimage.yml │ ├── build-appimageNuitka.yml │ ├── crowdin.yml │ └── sync.yml ├── .gitignore ├── LICENSE ├── LutionConfig.toml ├── README.md ├── crowdin.yml ├── md ├── appleblox.svg ├── bar.png ├── checkout.svg ├── fihstrap.svg ├── installation.svg ├── lucem.svg ├── lution.svg ├── ober.svg ├── stars.svg └── vinegarhq.svg ├── screenshots ├── Appearance.png ├── FastFlags.png ├── Ingame_esc.png ├── Ingame_esc2.png ├── LT_home.png ├── LutionSettings.png ├── Marketplace1.png ├── Marketplace2.png ├── Marketplace3.png ├── Mods.png ├── Roblox_font.png └── screenshots.md └── src ├── Lution ├── .streamlit │ ├── config.toml │ └── credentials.toml ├── boostrap.py ├── files │ ├── RobloxEmoji.ttf │ ├── cooked.png │ ├── customcursor │ │ ├── new │ │ │ ├── ArrowCursor.png │ │ │ ├── ArrowFarCursor.png │ │ │ └── IBeamCursor.png │ │ ├── old2006 │ │ │ ├── ArrowCursor.png │ │ │ ├── ArrowFarCursor.png │ │ │ └── IBeamCursor.png │ │ └── old2013 │ │ │ ├── ArrowCursor.png │ │ │ ├── ArrowFarCursor.png │ │ │ └── IBeamCursor.png │ ├── languages │ │ ├── Afrikaans │ │ │ └── en.json │ │ ├── Arabic │ │ │ └── en.json │ │ ├── Catalan │ │ │ └── en.json │ │ ├── Chinese Simplified │ │ │ └── en.json │ │ ├── Chinese Traditional │ │ │ └── en.json │ │ ├── Czech │ │ │ └── en.json │ │ ├── Danish │ │ │ └── en.json │ │ ├── Dutch │ │ │ └── en.json │ │ ├── English, Indonesia │ │ │ └── en.json │ │ ├── English │ │ │ └── en.json │ │ ├── Finnish │ │ │ └── en.json │ │ ├── Flemish │ │ │ └── en.json │ │ ├── French │ │ │ └── en.json │ │ ├── German │ │ │ └── en.json │ │ ├── Greek │ │ │ └── en.json │ │ ├── Hebrew │ │ │ └── en.json │ │ ├── Hungarian │ │ │ └── en.json │ │ ├── Italian │ │ │ └── en.json │ │ ├── Japanese │ │ │ └── en.json │ │ ├── Korean │ │ │ └── en.json │ │ ├── Latvian │ │ │ └── en.json │ │ ├── Limburgish │ │ │ └── en.json │ │ ├── Lithuanian │ │ │ └── en.json │ │ ├── Norwegian │ │ │ └── en.json │ │ ├── Polish │ │ │ └── en.json │ │ ├── Portuguese, Brazilian │ │ │ └── en.json │ │ ├── Portuguese │ │ │ └── en.json │ │ ├── Romanian │ │ │ └── en.json │ │ ├── Russian │ │ │ └── en.json │ │ ├── Serbian (Cyrillic) │ │ │ └── en.json │ │ ├── Spanish │ │ │ └── en.json │ │ ├── Swedish │ │ │ └── en.json │ │ ├── Turkish │ │ │ └── en.json │ │ ├── Ukrainian │ │ │ └── en.json │ │ └── Vietnamese │ │ │ └── en.json │ ├── logo.old │ │ ├── gubby.png │ │ ├── lution1.png │ │ ├── lution1.svg │ │ ├── lution1old.png │ │ ├── lution1old.svg │ │ ├── lutiontext.svg │ │ └── lutiontextold.svg │ ├── lol │ │ └── ballin-cat.png │ ├── lution1.png │ ├── lution1.svg │ ├── lutionhq.png │ ├── lutiontext.svg │ ├── mesh │ │ ├── leftarm.mesh │ │ ├── leftleg.mesh │ │ ├── rightarm.mesh │ │ ├── rightleg.mesh │ │ └── torso.mesh │ ├── playerlogs.ui │ ├── sounds │ │ ├── action_footsteps_plastic.mp3 │ │ ├── action_get_up.mp3 │ │ ├── action_jump.mp3 │ │ └── ouch.ogg │ ├── spooky.svg │ └── spookylogo.svg ├── launch.py ├── main.py ├── markdown │ ├── about.md │ ├── whatsnew.md │ └── whatsnew.md.example ├── modules │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ ├── applyfun.py │ │ └── genconfig.py │ ├── deployments │ │ ├── __init__.py │ │ ├── deploy_history.py │ │ ├── latest_version.py │ │ ├── package_manifest.py │ │ └── roblox_version.py │ ├── filesystem │ │ ├── __init__.py │ │ ├── download.py │ │ ├── exceptions.py │ │ ├── extract.py │ │ ├── open.py │ │ └── paths.py │ ├── marketplace │ │ ├── __init__.py │ │ └── downloadandinstall.py │ ├── mod │ │ ├── __init__.py │ │ ├── clientsettings.py │ │ └── fontreplacer.py │ ├── mod_generator │ │ ├── __init__.py │ │ ├── dataclasses.py │ │ ├── exceptions.py │ │ ├── preview_data │ │ │ ├── image.png │ │ │ └── index.json │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── imagesets.py │ │ │ └── mask_storage.py │ ├── mod_updater │ │ ├── __init__.py │ │ ├── exceptions.py │ │ └── imagesets.py │ ├── networking │ │ ├── __init__.py │ │ ├── api.py │ │ ├── cache.py │ │ └── requests.py │ └── utils │ │ ├── VERSION.py │ │ ├── __init__.py │ │ ├── contributors.py │ │ ├── files.py │ │ ├── lang.py │ │ ├── logging.py │ │ ├── messages.py │ │ └── sidebar.py ├── pages │ ├── about.py │ ├── appearance.py │ ├── apply.py │ ├── contributors.py │ ├── fflags.py │ ├── lutionsettings.py │ ├── marketplace.py │ └── mods.py └── requirements.txt ├── boostrap.sh ├── run.sh ├── runwithoutqt.sh └── update.sh /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/workflows/build-appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/.github/workflows/build-appimage.yml -------------------------------------------------------------------------------- /.github/workflows/build-appimageNuitka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/.github/workflows/build-appimageNuitka.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/LICENSE -------------------------------------------------------------------------------- /LutionConfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/LutionConfig.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/crowdin.yml -------------------------------------------------------------------------------- /md/appleblox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/appleblox.svg -------------------------------------------------------------------------------- /md/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/bar.png -------------------------------------------------------------------------------- /md/checkout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/checkout.svg -------------------------------------------------------------------------------- /md/fihstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/fihstrap.svg -------------------------------------------------------------------------------- /md/installation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/installation.svg -------------------------------------------------------------------------------- /md/lucem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/lucem.svg -------------------------------------------------------------------------------- /md/lution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/lution.svg -------------------------------------------------------------------------------- /md/ober.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/ober.svg -------------------------------------------------------------------------------- /md/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/stars.svg -------------------------------------------------------------------------------- /md/vinegarhq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/md/vinegarhq.svg -------------------------------------------------------------------------------- /screenshots/Appearance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Appearance.png -------------------------------------------------------------------------------- /screenshots/FastFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/FastFlags.png -------------------------------------------------------------------------------- /screenshots/Ingame_esc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Ingame_esc.png -------------------------------------------------------------------------------- /screenshots/Ingame_esc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Ingame_esc2.png -------------------------------------------------------------------------------- /screenshots/LT_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/LT_home.png -------------------------------------------------------------------------------- /screenshots/LutionSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/LutionSettings.png -------------------------------------------------------------------------------- /screenshots/Marketplace1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Marketplace1.png -------------------------------------------------------------------------------- /screenshots/Marketplace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Marketplace2.png -------------------------------------------------------------------------------- /screenshots/Marketplace3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Marketplace3.png -------------------------------------------------------------------------------- /screenshots/Mods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Mods.png -------------------------------------------------------------------------------- /screenshots/Roblox_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/Roblox_font.png -------------------------------------------------------------------------------- /screenshots/screenshots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/screenshots/screenshots.md -------------------------------------------------------------------------------- /src/Lution/.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/.streamlit/config.toml -------------------------------------------------------------------------------- /src/Lution/.streamlit/credentials.toml: -------------------------------------------------------------------------------- 1 | [general] 2 | email = "" 3 | -------------------------------------------------------------------------------- /src/Lution/boostrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/boostrap.py -------------------------------------------------------------------------------- /src/Lution/files/RobloxEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/RobloxEmoji.ttf -------------------------------------------------------------------------------- /src/Lution/files/cooked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/cooked.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/new/ArrowCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/new/ArrowCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/new/ArrowFarCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/new/ArrowFarCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/new/IBeamCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/new/IBeamCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/old2006/ArrowCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/old2006/ArrowCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/old2006/ArrowFarCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/old2006/ArrowFarCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/old2006/IBeamCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/old2006/IBeamCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/old2013/ArrowCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/old2013/ArrowCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/old2013/ArrowFarCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/old2013/ArrowFarCursor.png -------------------------------------------------------------------------------- /src/Lution/files/customcursor/old2013/IBeamCursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/customcursor/old2013/IBeamCursor.png -------------------------------------------------------------------------------- /src/Lution/files/languages/Afrikaans/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Afrikaans/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Arabic/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Arabic/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Catalan/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Catalan/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Chinese Simplified/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Chinese Simplified/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Chinese Traditional/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Chinese Traditional/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Czech/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Czech/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Danish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Danish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Dutch/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Dutch/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/English, Indonesia/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/English, Indonesia/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/English/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/English/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Finnish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Finnish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Flemish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Flemish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/French/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/French/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/German/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/German/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Greek/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Greek/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Hebrew/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Hebrew/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Hungarian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Hungarian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Italian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Italian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Japanese/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Japanese/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Korean/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Korean/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Latvian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Latvian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Limburgish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Limburgish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Lithuanian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Lithuanian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Norwegian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Norwegian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Polish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Polish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Portuguese, Brazilian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Portuguese, Brazilian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Portuguese/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Portuguese/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Romanian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Romanian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Russian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Russian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Serbian (Cyrillic)/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Serbian (Cyrillic)/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Spanish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Spanish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Swedish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Swedish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Turkish/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Turkish/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Ukrainian/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Ukrainian/en.json -------------------------------------------------------------------------------- /src/Lution/files/languages/Vietnamese/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/languages/Vietnamese/en.json -------------------------------------------------------------------------------- /src/Lution/files/logo.old/gubby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/gubby.png -------------------------------------------------------------------------------- /src/Lution/files/logo.old/lution1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/lution1.png -------------------------------------------------------------------------------- /src/Lution/files/logo.old/lution1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/lution1.svg -------------------------------------------------------------------------------- /src/Lution/files/logo.old/lution1old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/lution1old.png -------------------------------------------------------------------------------- /src/Lution/files/logo.old/lution1old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/lution1old.svg -------------------------------------------------------------------------------- /src/Lution/files/logo.old/lutiontext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/lutiontext.svg -------------------------------------------------------------------------------- /src/Lution/files/logo.old/lutiontextold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/logo.old/lutiontextold.svg -------------------------------------------------------------------------------- /src/Lution/files/lol/ballin-cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/lol/ballin-cat.png -------------------------------------------------------------------------------- /src/Lution/files/lution1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/lution1.png -------------------------------------------------------------------------------- /src/Lution/files/lution1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/lution1.svg -------------------------------------------------------------------------------- /src/Lution/files/lutionhq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/lutionhq.png -------------------------------------------------------------------------------- /src/Lution/files/lutiontext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/lutiontext.svg -------------------------------------------------------------------------------- /src/Lution/files/mesh/leftarm.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/mesh/leftarm.mesh -------------------------------------------------------------------------------- /src/Lution/files/mesh/leftleg.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/mesh/leftleg.mesh -------------------------------------------------------------------------------- /src/Lution/files/mesh/rightarm.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/mesh/rightarm.mesh -------------------------------------------------------------------------------- /src/Lution/files/mesh/rightleg.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/mesh/rightleg.mesh -------------------------------------------------------------------------------- /src/Lution/files/mesh/torso.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/mesh/torso.mesh -------------------------------------------------------------------------------- /src/Lution/files/playerlogs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/playerlogs.ui -------------------------------------------------------------------------------- /src/Lution/files/sounds/action_footsteps_plastic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/sounds/action_footsteps_plastic.mp3 -------------------------------------------------------------------------------- /src/Lution/files/sounds/action_get_up.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/sounds/action_get_up.mp3 -------------------------------------------------------------------------------- /src/Lution/files/sounds/action_jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/sounds/action_jump.mp3 -------------------------------------------------------------------------------- /src/Lution/files/sounds/ouch.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/sounds/ouch.ogg -------------------------------------------------------------------------------- /src/Lution/files/spooky.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/spooky.svg -------------------------------------------------------------------------------- /src/Lution/files/spookylogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/files/spookylogo.svg -------------------------------------------------------------------------------- /src/Lution/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/launch.py -------------------------------------------------------------------------------- /src/Lution/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/main.py -------------------------------------------------------------------------------- /src/Lution/markdown/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/markdown/about.md -------------------------------------------------------------------------------- /src/Lution/markdown/whatsnew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/markdown/whatsnew.md -------------------------------------------------------------------------------- /src/Lution/markdown/whatsnew.md.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/markdown/whatsnew.md.example -------------------------------------------------------------------------------- /src/Lution/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Lution/modules/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Lution/modules/config/applyfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/config/applyfun.py -------------------------------------------------------------------------------- /src/Lution/modules/config/genconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/config/genconfig.py -------------------------------------------------------------------------------- /src/Lution/modules/deployments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/deployments/__init__.py -------------------------------------------------------------------------------- /src/Lution/modules/deployments/deploy_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/deployments/deploy_history.py -------------------------------------------------------------------------------- /src/Lution/modules/deployments/latest_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/deployments/latest_version.py -------------------------------------------------------------------------------- /src/Lution/modules/deployments/package_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/deployments/package_manifest.py -------------------------------------------------------------------------------- /src/Lution/modules/deployments/roblox_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/deployments/roblox_version.py -------------------------------------------------------------------------------- /src/Lution/modules/filesystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/filesystem/__init__.py -------------------------------------------------------------------------------- /src/Lution/modules/filesystem/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/filesystem/download.py -------------------------------------------------------------------------------- /src/Lution/modules/filesystem/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/filesystem/exceptions.py -------------------------------------------------------------------------------- /src/Lution/modules/filesystem/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/filesystem/extract.py -------------------------------------------------------------------------------- /src/Lution/modules/filesystem/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/filesystem/open.py -------------------------------------------------------------------------------- /src/Lution/modules/filesystem/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/filesystem/paths.py -------------------------------------------------------------------------------- /src/Lution/modules/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Lution/modules/marketplace/downloadandinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/marketplace/downloadandinstall.py -------------------------------------------------------------------------------- /src/Lution/modules/mod/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Lution/modules/mod/clientsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod/clientsettings.py -------------------------------------------------------------------------------- /src/Lution/modules/mod/fontreplacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod/fontreplacer.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/__init__.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/dataclasses.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/exceptions.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/preview_data/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/preview_data/image.png -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/preview_data/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/preview_data/index.json -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/utils/__init__.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/utils/imagesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/utils/imagesets.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_generator/utils/mask_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_generator/utils/mask_storage.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_updater/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_updater/__init__.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_updater/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_updater/exceptions.py -------------------------------------------------------------------------------- /src/Lution/modules/mod_updater/imagesets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/mod_updater/imagesets.py -------------------------------------------------------------------------------- /src/Lution/modules/networking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/networking/__init__.py -------------------------------------------------------------------------------- /src/Lution/modules/networking/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/networking/api.py -------------------------------------------------------------------------------- /src/Lution/modules/networking/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/networking/cache.py -------------------------------------------------------------------------------- /src/Lution/modules/networking/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/networking/requests.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/VERSION.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/VERSION.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Lution/modules/utils/contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/contributors.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/files.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/lang.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/logging.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/messages.py -------------------------------------------------------------------------------- /src/Lution/modules/utils/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/modules/utils/sidebar.py -------------------------------------------------------------------------------- /src/Lution/pages/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/about.py -------------------------------------------------------------------------------- /src/Lution/pages/appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/appearance.py -------------------------------------------------------------------------------- /src/Lution/pages/apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/apply.py -------------------------------------------------------------------------------- /src/Lution/pages/contributors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/contributors.py -------------------------------------------------------------------------------- /src/Lution/pages/fflags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/fflags.py -------------------------------------------------------------------------------- /src/Lution/pages/lutionsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/lutionsettings.py -------------------------------------------------------------------------------- /src/Lution/pages/marketplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/marketplace.py -------------------------------------------------------------------------------- /src/Lution/pages/mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/Lution/pages/mods.py -------------------------------------------------------------------------------- /src/Lution/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | PyGithub 3 | rich 4 | PySide6 5 | toml -------------------------------------------------------------------------------- /src/boostrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/boostrap.sh -------------------------------------------------------------------------------- /src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/run.sh -------------------------------------------------------------------------------- /src/runwithoutqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/runwithoutqt.sh -------------------------------------------------------------------------------- /src/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wookhq/Lution/HEAD/src/update.sh --------------------------------------------------------------------------------