├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yaml │ ├── config.yml │ └── new-feature.yaml └── workflows │ └── release.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── install.md └── migrate-from-official.md ├── package.json └── src ├── app_launcher ├── adm-zip.js ├── index.js └── launcher.js ├── builtin_plugins └── emojifix │ ├── LICENSE │ ├── manifest.json │ └── renderer.js ├── components ├── renderer.js └── static │ ├── style.css │ └── template.html ├── easter_eggs └── renderer.js ├── init.js ├── liteloader_api ├── main.js └── preload.js ├── loader_core ├── main.js ├── plugin_loader.js ├── preload.js └── renderer.js ├── main.js ├── preload.js ├── protocol_scheme └── main.js ├── renderer.js ├── settings ├── renderer.js ├── renderer.uno.js ├── static │ ├── config.json │ ├── default.png │ ├── default.svg │ ├── style.css │ └── view.html ├── uno.modules │ ├── experimental.js │ ├── general.js │ └── modules.json └── utils │ └── create_element.js └── uno ├── default.json └── renderer.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/.github/ISSUE_TEMPLATE/bug-report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/.github/ISSUE_TEMPLATE/new-feature.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | plugins/ 2 | data/ 3 | application/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/migrate-from-official.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/docs/migrate-from-official.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/package.json -------------------------------------------------------------------------------- /src/app_launcher/adm-zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/app_launcher/adm-zip.js -------------------------------------------------------------------------------- /src/app_launcher/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/app_launcher/index.js -------------------------------------------------------------------------------- /src/app_launcher/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/app_launcher/launcher.js -------------------------------------------------------------------------------- /src/builtin_plugins/emojifix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/builtin_plugins/emojifix/LICENSE -------------------------------------------------------------------------------- /src/builtin_plugins/emojifix/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/builtin_plugins/emojifix/manifest.json -------------------------------------------------------------------------------- /src/builtin_plugins/emojifix/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/builtin_plugins/emojifix/renderer.js -------------------------------------------------------------------------------- /src/components/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/components/renderer.js -------------------------------------------------------------------------------- /src/components/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/components/static/style.css -------------------------------------------------------------------------------- /src/components/static/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/components/static/template.html -------------------------------------------------------------------------------- /src/easter_eggs/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/easter_eggs/renderer.js -------------------------------------------------------------------------------- /src/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/init.js -------------------------------------------------------------------------------- /src/liteloader_api/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/liteloader_api/main.js -------------------------------------------------------------------------------- /src/liteloader_api/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/liteloader_api/preload.js -------------------------------------------------------------------------------- /src/loader_core/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/loader_core/main.js -------------------------------------------------------------------------------- /src/loader_core/plugin_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/loader_core/plugin_loader.js -------------------------------------------------------------------------------- /src/loader_core/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/loader_core/preload.js -------------------------------------------------------------------------------- /src/loader_core/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/loader_core/renderer.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/main.js -------------------------------------------------------------------------------- /src/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/preload.js -------------------------------------------------------------------------------- /src/protocol_scheme/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/protocol_scheme/main.js -------------------------------------------------------------------------------- /src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/renderer.js -------------------------------------------------------------------------------- /src/settings/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/renderer.js -------------------------------------------------------------------------------- /src/settings/renderer.uno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/renderer.uno.js -------------------------------------------------------------------------------- /src/settings/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/static/config.json -------------------------------------------------------------------------------- /src/settings/static/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/static/default.png -------------------------------------------------------------------------------- /src/settings/static/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/static/default.svg -------------------------------------------------------------------------------- /src/settings/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/static/style.css -------------------------------------------------------------------------------- /src/settings/static/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/static/view.html -------------------------------------------------------------------------------- /src/settings/uno.modules/experimental.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/uno.modules/experimental.js -------------------------------------------------------------------------------- /src/settings/uno.modules/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/uno.modules/general.js -------------------------------------------------------------------------------- /src/settings/uno.modules/modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/uno.modules/modules.json -------------------------------------------------------------------------------- /src/settings/utils/create_element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/settings/utils/create_element.js -------------------------------------------------------------------------------- /src/uno/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/uno/default.json -------------------------------------------------------------------------------- /src/uno/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuiltNT/LLQQNT-unofficial/HEAD/src/uno/renderer.js --------------------------------------------------------------------------------