├── .eslintrc.cjs ├── .github └── dependabot.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── adapter ├── Bot │ ├── bot.js │ └── icqq.js ├── LLOneBot │ ├── api.js │ └── index.js ├── LagrangeCore │ ├── api.js │ └── index.js ├── QQBot │ ├── QQGuild.js │ ├── QQSDK.js │ ├── index.js │ └── plugins.js ├── WeChat-Web │ └── index.js ├── WeChat │ ├── api.js │ └── index.js ├── WebSocket.js ├── adapter.js ├── shamrock │ ├── api.js │ ├── index.js │ └── xiaofei │ │ ├── music.js │ │ └── weather.js └── stdin │ └── stdin.js ├── apps ├── admin.js ├── clear_msgs.js ├── config.js ├── dau.js ├── help.js ├── index.js ├── login.js ├── master.js ├── restart.js ├── shamrock.js └── task.js ├── config ├── config │ └── .gitignore └── defSet │ ├── Config-QQGuild.yaml │ ├── Config-Shamrock.yaml │ ├── Config-bot.yaml │ ├── Config-group.yaml │ ├── Config-other.yaml │ └── token.yaml ├── docs ├── CHANGELOG_qg.md ├── Lagrange.Core.md ├── QQBot.md ├── Shamrock.md ├── WeChat.md ├── WeXin.md └── stdin.md ├── guoba.support.js ├── index.js ├── lain.support.js ├── lib ├── bot.js ├── common │ └── common.js ├── config │ └── config.js └── init.js ├── model ├── YamlHandler.js ├── config.js ├── help.js ├── render.js ├── shamrock │ ├── client.js │ ├── face.js │ └── shamrock.js └── version.js ├── package.json ├── plugins ├── loader.js └── 纯文模板.js └── resources ├── DAU ├── font │ └── ruizizhenyan.ttf ├── img │ └── bg.jpg ├── index.css └── index.html ├── QRCode └── QRCode.html ├── admin ├── imgs │ ├── bg.png │ ├── bg1.jpg │ ├── cfg-right.jpg │ └── cfg-right.png ├── index.css ├── index.html └── index.less ├── common ├── base.css ├── base.less ├── bg │ ├── bg-anemo.jpg │ ├── bg-cryo.jpg │ ├── bg-dendro.jpg │ ├── bg-electro.jpg │ ├── bg-geo.jpg │ ├── bg-hydro.jpg │ └── bg-pyro.jpg ├── common.css ├── common.less ├── cont │ ├── card-bg.png │ └── logo.png ├── font │ ├── HYWH-65W.ttf │ ├── HYWH-65W.woff │ ├── NZBZ.ttf │ ├── NZBZ.woff │ ├── tttgbnumber.ttf │ ├── tttgbnumber.woff │ └── 华文中宋.TTF └── layout │ ├── default.html │ └── elem.html ├── default_avatar.jpg ├── help ├── icon.png ├── imgs │ ├── bg.jpg │ ├── config.js │ └── main.png ├── index.css ├── index.html ├── index.less ├── version-info.css ├── version-info.html └── version-info.less ├── icon.png ├── index.html └── shamrock ├── img ├── code-branch.svg ├── eye.svg ├── github-logo-white.png ├── shamrock.webp └── star.png ├── index.css ├── index.html └── index1.html /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/README.md -------------------------------------------------------------------------------- /adapter/Bot/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/Bot/bot.js -------------------------------------------------------------------------------- /adapter/Bot/icqq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/Bot/icqq.js -------------------------------------------------------------------------------- /adapter/LLOneBot/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/LLOneBot/api.js -------------------------------------------------------------------------------- /adapter/LLOneBot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/LLOneBot/index.js -------------------------------------------------------------------------------- /adapter/LagrangeCore/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/LagrangeCore/api.js -------------------------------------------------------------------------------- /adapter/LagrangeCore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/LagrangeCore/index.js -------------------------------------------------------------------------------- /adapter/QQBot/QQGuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/QQBot/QQGuild.js -------------------------------------------------------------------------------- /adapter/QQBot/QQSDK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/QQBot/QQSDK.js -------------------------------------------------------------------------------- /adapter/QQBot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/QQBot/index.js -------------------------------------------------------------------------------- /adapter/QQBot/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/QQBot/plugins.js -------------------------------------------------------------------------------- /adapter/WeChat-Web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/WeChat-Web/index.js -------------------------------------------------------------------------------- /adapter/WeChat/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/WeChat/api.js -------------------------------------------------------------------------------- /adapter/WeChat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/WeChat/index.js -------------------------------------------------------------------------------- /adapter/WebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/WebSocket.js -------------------------------------------------------------------------------- /adapter/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/adapter.js -------------------------------------------------------------------------------- /adapter/shamrock/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/shamrock/api.js -------------------------------------------------------------------------------- /adapter/shamrock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/shamrock/index.js -------------------------------------------------------------------------------- /adapter/shamrock/xiaofei/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/shamrock/xiaofei/music.js -------------------------------------------------------------------------------- /adapter/shamrock/xiaofei/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/shamrock/xiaofei/weather.js -------------------------------------------------------------------------------- /adapter/stdin/stdin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/adapter/stdin/stdin.js -------------------------------------------------------------------------------- /apps/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/admin.js -------------------------------------------------------------------------------- /apps/clear_msgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/clear_msgs.js -------------------------------------------------------------------------------- /apps/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/config.js -------------------------------------------------------------------------------- /apps/dau.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/dau.js -------------------------------------------------------------------------------- /apps/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/help.js -------------------------------------------------------------------------------- /apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/index.js -------------------------------------------------------------------------------- /apps/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/login.js -------------------------------------------------------------------------------- /apps/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/master.js -------------------------------------------------------------------------------- /apps/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/restart.js -------------------------------------------------------------------------------- /apps/shamrock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/shamrock.js -------------------------------------------------------------------------------- /apps/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/apps/task.js -------------------------------------------------------------------------------- /config/config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /config/defSet/Config-QQGuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/config/defSet/Config-QQGuild.yaml -------------------------------------------------------------------------------- /config/defSet/Config-Shamrock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/config/defSet/Config-Shamrock.yaml -------------------------------------------------------------------------------- /config/defSet/Config-bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/config/defSet/Config-bot.yaml -------------------------------------------------------------------------------- /config/defSet/Config-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/config/defSet/Config-group.yaml -------------------------------------------------------------------------------- /config/defSet/Config-other.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/config/defSet/Config-other.yaml -------------------------------------------------------------------------------- /config/defSet/token.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/config/defSet/token.yaml -------------------------------------------------------------------------------- /docs/CHANGELOG_qg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/CHANGELOG_qg.md -------------------------------------------------------------------------------- /docs/Lagrange.Core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/Lagrange.Core.md -------------------------------------------------------------------------------- /docs/QQBot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/QQBot.md -------------------------------------------------------------------------------- /docs/Shamrock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/Shamrock.md -------------------------------------------------------------------------------- /docs/WeChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/WeChat.md -------------------------------------------------------------------------------- /docs/WeXin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/WeXin.md -------------------------------------------------------------------------------- /docs/stdin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/docs/stdin.md -------------------------------------------------------------------------------- /guoba.support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/guoba.support.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/index.js -------------------------------------------------------------------------------- /lain.support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/lain.support.js -------------------------------------------------------------------------------- /lib/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/lib/bot.js -------------------------------------------------------------------------------- /lib/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/lib/common/common.js -------------------------------------------------------------------------------- /lib/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/lib/config/config.js -------------------------------------------------------------------------------- /lib/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/lib/init.js -------------------------------------------------------------------------------- /model/YamlHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/YamlHandler.js -------------------------------------------------------------------------------- /model/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/config.js -------------------------------------------------------------------------------- /model/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/help.js -------------------------------------------------------------------------------- /model/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/render.js -------------------------------------------------------------------------------- /model/shamrock/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/shamrock/client.js -------------------------------------------------------------------------------- /model/shamrock/face.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/shamrock/face.js -------------------------------------------------------------------------------- /model/shamrock/shamrock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/shamrock/shamrock.js -------------------------------------------------------------------------------- /model/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/model/version.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugins/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/plugins/loader.js -------------------------------------------------------------------------------- /plugins/纯文模板.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/plugins/纯文模板.js -------------------------------------------------------------------------------- /resources/DAU/font/ruizizhenyan.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/DAU/font/ruizizhenyan.ttf -------------------------------------------------------------------------------- /resources/DAU/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/DAU/img/bg.jpg -------------------------------------------------------------------------------- /resources/DAU/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/DAU/index.css -------------------------------------------------------------------------------- /resources/DAU/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/DAU/index.html -------------------------------------------------------------------------------- /resources/QRCode/QRCode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/QRCode/QRCode.html -------------------------------------------------------------------------------- /resources/admin/imgs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/imgs/bg.png -------------------------------------------------------------------------------- /resources/admin/imgs/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/imgs/bg1.jpg -------------------------------------------------------------------------------- /resources/admin/imgs/cfg-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/imgs/cfg-right.jpg -------------------------------------------------------------------------------- /resources/admin/imgs/cfg-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/imgs/cfg-right.png -------------------------------------------------------------------------------- /resources/admin/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/index.css -------------------------------------------------------------------------------- /resources/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/index.html -------------------------------------------------------------------------------- /resources/admin/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/admin/index.less -------------------------------------------------------------------------------- /resources/common/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/base.css -------------------------------------------------------------------------------- /resources/common/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/base.less -------------------------------------------------------------------------------- /resources/common/bg/bg-anemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-anemo.jpg -------------------------------------------------------------------------------- /resources/common/bg/bg-cryo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-cryo.jpg -------------------------------------------------------------------------------- /resources/common/bg/bg-dendro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-dendro.jpg -------------------------------------------------------------------------------- /resources/common/bg/bg-electro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-electro.jpg -------------------------------------------------------------------------------- /resources/common/bg/bg-geo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-geo.jpg -------------------------------------------------------------------------------- /resources/common/bg/bg-hydro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-hydro.jpg -------------------------------------------------------------------------------- /resources/common/bg/bg-pyro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/bg/bg-pyro.jpg -------------------------------------------------------------------------------- /resources/common/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/common.css -------------------------------------------------------------------------------- /resources/common/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/common.less -------------------------------------------------------------------------------- /resources/common/cont/card-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/cont/card-bg.png -------------------------------------------------------------------------------- /resources/common/cont/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/cont/logo.png -------------------------------------------------------------------------------- /resources/common/font/HYWH-65W.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/HYWH-65W.ttf -------------------------------------------------------------------------------- /resources/common/font/HYWH-65W.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/HYWH-65W.woff -------------------------------------------------------------------------------- /resources/common/font/NZBZ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/NZBZ.ttf -------------------------------------------------------------------------------- /resources/common/font/NZBZ.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/NZBZ.woff -------------------------------------------------------------------------------- /resources/common/font/tttgbnumber.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/tttgbnumber.ttf -------------------------------------------------------------------------------- /resources/common/font/tttgbnumber.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/tttgbnumber.woff -------------------------------------------------------------------------------- /resources/common/font/华文中宋.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/font/华文中宋.TTF -------------------------------------------------------------------------------- /resources/common/layout/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/layout/default.html -------------------------------------------------------------------------------- /resources/common/layout/elem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/common/layout/elem.html -------------------------------------------------------------------------------- /resources/default_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/default_avatar.jpg -------------------------------------------------------------------------------- /resources/help/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/icon.png -------------------------------------------------------------------------------- /resources/help/imgs/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/imgs/bg.jpg -------------------------------------------------------------------------------- /resources/help/imgs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/imgs/config.js -------------------------------------------------------------------------------- /resources/help/imgs/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/imgs/main.png -------------------------------------------------------------------------------- /resources/help/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/index.css -------------------------------------------------------------------------------- /resources/help/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/index.html -------------------------------------------------------------------------------- /resources/help/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/index.less -------------------------------------------------------------------------------- /resources/help/version-info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/version-info.css -------------------------------------------------------------------------------- /resources/help/version-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/version-info.html -------------------------------------------------------------------------------- /resources/help/version-info.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/help/version-info.less -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/index.html -------------------------------------------------------------------------------- /resources/shamrock/img/code-branch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/img/code-branch.svg -------------------------------------------------------------------------------- /resources/shamrock/img/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/img/eye.svg -------------------------------------------------------------------------------- /resources/shamrock/img/github-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/img/github-logo-white.png -------------------------------------------------------------------------------- /resources/shamrock/img/shamrock.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/img/shamrock.webp -------------------------------------------------------------------------------- /resources/shamrock/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/img/star.png -------------------------------------------------------------------------------- /resources/shamrock/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/index.css -------------------------------------------------------------------------------- /resources/shamrock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/index.html -------------------------------------------------------------------------------- /resources/shamrock/index1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XZhouQD/Lain-plugin/HEAD/resources/shamrock/index1.html --------------------------------------------------------------------------------