├── .eslintignore ├── .github └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── .prettierrc.js ├── .stylelintrc.js ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── commitlint.config.js ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── GLayout.vue │ │ ├── index.ts │ │ └── style.css ├── development │ └── getting-started.md ├── en │ └── index.md ├── getting-started.md ├── index.md ├── parts │ ├── screenshot.md │ └── wip.md ├── public │ ├── logo.png │ ├── logo.webp │ ├── qq_qr.png │ ├── screenshot │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ └── team │ │ ├── duchuanbo.jpg │ │ ├── kongqi.jpg │ │ ├── tiger.jpg │ │ └── 吉王义昊.webp ├── team.md └── tutorial │ ├── basic.md │ ├── community.md │ ├── concepts.md │ ├── functions.md │ └── setting.md ├── husky.sh ├── package.json ├── quickapp.config.js ├── src ├── app.ux ├── common │ ├── css │ │ └── page.css │ ├── icon │ │ ├── author.png │ │ ├── back.png │ │ ├── book-code.png │ │ ├── catalog.png │ │ ├── check-active.png │ │ ├── check.png │ │ ├── close.png │ │ ├── code.png │ │ ├── down.png │ │ ├── explore-active.png │ │ ├── explore.png │ │ ├── group.png │ │ ├── help.png │ │ ├── history.png │ │ ├── home-active.png │ │ ├── home.png │ │ ├── info.png │ │ ├── latest.png │ │ ├── left-double.png │ │ ├── left.png │ │ ├── library.png │ │ ├── magic.png │ │ ├── menu.png │ │ ├── password.png │ │ ├── refresh.png │ │ ├── right-double.png │ │ ├── right.png │ │ ├── search.png │ │ ├── setting.png │ │ ├── source.png │ │ ├── submit.png │ │ ├── trash.png │ │ ├── ui.png │ │ ├── up.png │ │ ├── user-active.png │ │ ├── user.png │ │ └── web.png │ ├── image │ │ ├── bookcover.png │ │ ├── cover.jpg │ │ ├── qr-feed.png │ │ ├── qr-github.png │ │ └── qr-qq.png │ └── logo │ │ ├── 192-round.png │ │ └── 96-round.png ├── config-watch.json ├── i18n │ ├── defaults.json │ ├── en.json │ └── zh-CN.json ├── manifest.json ├── pages │ ├── about │ │ └── about.ux │ ├── catalog │ │ └── catalog.ux │ ├── content │ │ └── content.ux │ ├── detail │ │ └── detail.ux │ ├── index │ │ └── index.ux │ ├── search │ │ └── search.ux │ ├── searchResult │ │ └── searchResult.ux │ ├── setting │ │ └── setting.ux │ └── source │ │ └── source.ux ├── third-party │ └── JSONPath │ │ └── jsonpath.ts └── utils │ ├── book.ts │ ├── chapter.ts │ ├── cookie.ts │ ├── fetch.ts │ ├── index.ts │ ├── jsExtension.ts │ ├── source.ts │ └── tsimports.js └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/GLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/.vitepress/theme/GLayout.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /docs/development/getting-started.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/parts/screenshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/parts/screenshot.md -------------------------------------------------------------------------------- /docs/parts/wip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/parts/wip.md -------------------------------------------------------------------------------- /docs/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/logo.png -------------------------------------------------------------------------------- /docs/public/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/logo.webp -------------------------------------------------------------------------------- /docs/public/qq_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/qq_qr.png -------------------------------------------------------------------------------- /docs/public/screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/1.png -------------------------------------------------------------------------------- /docs/public/screenshot/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/10.png -------------------------------------------------------------------------------- /docs/public/screenshot/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/11.png -------------------------------------------------------------------------------- /docs/public/screenshot/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/12.png -------------------------------------------------------------------------------- /docs/public/screenshot/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/13.png -------------------------------------------------------------------------------- /docs/public/screenshot/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/14.png -------------------------------------------------------------------------------- /docs/public/screenshot/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/15.png -------------------------------------------------------------------------------- /docs/public/screenshot/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/16.png -------------------------------------------------------------------------------- /docs/public/screenshot/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/17.png -------------------------------------------------------------------------------- /docs/public/screenshot/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/18.png -------------------------------------------------------------------------------- /docs/public/screenshot/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/19.png -------------------------------------------------------------------------------- /docs/public/screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/2.png -------------------------------------------------------------------------------- /docs/public/screenshot/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/20.png -------------------------------------------------------------------------------- /docs/public/screenshot/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/21.png -------------------------------------------------------------------------------- /docs/public/screenshot/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/22.png -------------------------------------------------------------------------------- /docs/public/screenshot/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/23.png -------------------------------------------------------------------------------- /docs/public/screenshot/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/24.png -------------------------------------------------------------------------------- /docs/public/screenshot/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/25.png -------------------------------------------------------------------------------- /docs/public/screenshot/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/26.png -------------------------------------------------------------------------------- /docs/public/screenshot/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/27.png -------------------------------------------------------------------------------- /docs/public/screenshot/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/28.png -------------------------------------------------------------------------------- /docs/public/screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/3.png -------------------------------------------------------------------------------- /docs/public/screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/4.png -------------------------------------------------------------------------------- /docs/public/screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/5.png -------------------------------------------------------------------------------- /docs/public/screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/6.png -------------------------------------------------------------------------------- /docs/public/screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/7.png -------------------------------------------------------------------------------- /docs/public/screenshot/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/8.png -------------------------------------------------------------------------------- /docs/public/screenshot/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/screenshot/9.png -------------------------------------------------------------------------------- /docs/public/team/duchuanbo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/team/duchuanbo.jpg -------------------------------------------------------------------------------- /docs/public/team/kongqi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/team/kongqi.jpg -------------------------------------------------------------------------------- /docs/public/team/tiger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/team/tiger.jpg -------------------------------------------------------------------------------- /docs/public/team/吉王义昊.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/public/team/吉王义昊.webp -------------------------------------------------------------------------------- /docs/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/team.md -------------------------------------------------------------------------------- /docs/tutorial/basic.md: -------------------------------------------------------------------------------- 1 | # 基础教程 2 | 3 | 4 | 5 | ::: warning 6 | 新人必看! 7 | ::: 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /docs/tutorial/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/tutorial/community.md -------------------------------------------------------------------------------- /docs/tutorial/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/tutorial/concepts.md -------------------------------------------------------------------------------- /docs/tutorial/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/tutorial/functions.md -------------------------------------------------------------------------------- /docs/tutorial/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/docs/tutorial/setting.md -------------------------------------------------------------------------------- /husky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/husky.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/package.json -------------------------------------------------------------------------------- /quickapp.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/quickapp.config.js -------------------------------------------------------------------------------- /src/app.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/app.ux -------------------------------------------------------------------------------- /src/common/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/css/page.css -------------------------------------------------------------------------------- /src/common/icon/author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/author.png -------------------------------------------------------------------------------- /src/common/icon/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/back.png -------------------------------------------------------------------------------- /src/common/icon/book-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/book-code.png -------------------------------------------------------------------------------- /src/common/icon/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/catalog.png -------------------------------------------------------------------------------- /src/common/icon/check-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/check-active.png -------------------------------------------------------------------------------- /src/common/icon/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/check.png -------------------------------------------------------------------------------- /src/common/icon/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/close.png -------------------------------------------------------------------------------- /src/common/icon/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/code.png -------------------------------------------------------------------------------- /src/common/icon/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/down.png -------------------------------------------------------------------------------- /src/common/icon/explore-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/explore-active.png -------------------------------------------------------------------------------- /src/common/icon/explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/explore.png -------------------------------------------------------------------------------- /src/common/icon/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/group.png -------------------------------------------------------------------------------- /src/common/icon/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/help.png -------------------------------------------------------------------------------- /src/common/icon/history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/history.png -------------------------------------------------------------------------------- /src/common/icon/home-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/home-active.png -------------------------------------------------------------------------------- /src/common/icon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/home.png -------------------------------------------------------------------------------- /src/common/icon/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/info.png -------------------------------------------------------------------------------- /src/common/icon/latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/latest.png -------------------------------------------------------------------------------- /src/common/icon/left-double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/left-double.png -------------------------------------------------------------------------------- /src/common/icon/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/left.png -------------------------------------------------------------------------------- /src/common/icon/library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/library.png -------------------------------------------------------------------------------- /src/common/icon/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/magic.png -------------------------------------------------------------------------------- /src/common/icon/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/menu.png -------------------------------------------------------------------------------- /src/common/icon/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/password.png -------------------------------------------------------------------------------- /src/common/icon/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/refresh.png -------------------------------------------------------------------------------- /src/common/icon/right-double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/right-double.png -------------------------------------------------------------------------------- /src/common/icon/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/right.png -------------------------------------------------------------------------------- /src/common/icon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/search.png -------------------------------------------------------------------------------- /src/common/icon/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/setting.png -------------------------------------------------------------------------------- /src/common/icon/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/source.png -------------------------------------------------------------------------------- /src/common/icon/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/submit.png -------------------------------------------------------------------------------- /src/common/icon/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/trash.png -------------------------------------------------------------------------------- /src/common/icon/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/ui.png -------------------------------------------------------------------------------- /src/common/icon/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/up.png -------------------------------------------------------------------------------- /src/common/icon/user-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/user-active.png -------------------------------------------------------------------------------- /src/common/icon/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/user.png -------------------------------------------------------------------------------- /src/common/icon/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/icon/web.png -------------------------------------------------------------------------------- /src/common/image/bookcover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/image/bookcover.png -------------------------------------------------------------------------------- /src/common/image/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/image/cover.jpg -------------------------------------------------------------------------------- /src/common/image/qr-feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/image/qr-feed.png -------------------------------------------------------------------------------- /src/common/image/qr-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/image/qr-github.png -------------------------------------------------------------------------------- /src/common/image/qr-qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/image/qr-qq.png -------------------------------------------------------------------------------- /src/common/logo/192-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/logo/192-round.png -------------------------------------------------------------------------------- /src/common/logo/96-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/common/logo/96-round.png -------------------------------------------------------------------------------- /src/config-watch.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/i18n/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/i18n/defaults.json -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/i18n/en.json -------------------------------------------------------------------------------- /src/i18n/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/i18n/zh-CN.json -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/pages/about/about.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/about/about.ux -------------------------------------------------------------------------------- /src/pages/catalog/catalog.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/catalog/catalog.ux -------------------------------------------------------------------------------- /src/pages/content/content.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/content/content.ux -------------------------------------------------------------------------------- /src/pages/detail/detail.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/detail/detail.ux -------------------------------------------------------------------------------- /src/pages/index/index.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/index/index.ux -------------------------------------------------------------------------------- /src/pages/search/search.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/search/search.ux -------------------------------------------------------------------------------- /src/pages/searchResult/searchResult.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/searchResult/searchResult.ux -------------------------------------------------------------------------------- /src/pages/setting/setting.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/setting/setting.ux -------------------------------------------------------------------------------- /src/pages/source/source.ux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/pages/source/source.ux -------------------------------------------------------------------------------- /src/third-party/JSONPath/jsonpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/third-party/JSONPath/jsonpath.ts -------------------------------------------------------------------------------- /src/utils/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/book.ts -------------------------------------------------------------------------------- /src/utils/chapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/chapter.ts -------------------------------------------------------------------------------- /src/utils/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/cookie.ts -------------------------------------------------------------------------------- /src/utils/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/fetch.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/jsExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/jsExtension.ts -------------------------------------------------------------------------------- /src/utils/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/source.ts -------------------------------------------------------------------------------- /src/utils/tsimports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/src/utils/tsimports.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lordly-Tech/LordlyRead/HEAD/tsconfig.json --------------------------------------------------------------------------------