├── .github └── workflows │ ├── cli-gen-test.yaml │ ├── lint-all.yaml │ └── lint.yaml ├── .gitignore ├── LICENSE ├── README.md ├── USAGE.md ├── babel.config.js ├── blog ├── 2023 │ ├── 06-08-init.md │ ├── 09-13-alpha.md │ ├── 09-15-deprecate-hustmirror-cn.md │ └── 10-24-hustmirror-cn-is-deprecated.md ├── 2024 │ ├── 02-08-mirrorz.md │ ├── 02-22-change.md │ ├── 03-12-change.md │ ├── 03-14-update-cli.md │ ├── 03-25-migrate-github.md │ ├── 03-28-change.md │ ├── 05-07-public-open.md │ ├── 06-26-maintain.md │ └── 11-11-ubuntukylin-cdimge-issue.md ├── 2025 │ ├── 09-05-change.md │ ├── 09-12-change.md │ ├── 10-27-qqgroup.md │ └── 12-05-change.md └── authors.yml ├── ci ├── .zhlintrc ├── README.md ├── gen-releases.py ├── releases.conf ├── test │ └── test-releases-rsync.py ├── update-cli-tool.sh └── update-pages.sh ├── docs ├── CPAN.md ├── CRAN.md ├── CTAN.md ├── F-Droid.md ├── alpine.md ├── archlinux.md ├── archlinuxcn.md ├── assets │ └── git-linux.png ├── blackarch.md ├── buildroot.md ├── cli-tool.md ├── crates.md ├── debian.md ├── deepin.md ├── docker-ce.md ├── fedora.md ├── gentoo.md ├── github-release.md ├── gnu.md ├── golang.md ├── kali.md ├── kernel.org.md ├── linux-next.git.md ├── linux-stable.git.md ├── linux.git.md ├── linuxmint.md ├── llvm-apt.md ├── llvm-project.git.md ├── manjaro.md ├── msys2.md ├── mxlinux.md ├── ohmyzsh.git.md ├── openbsd.md ├── openeuler.md ├── openkylin.md ├── pypi.md ├── qemu.git.md ├── rocky.md ├── ros.md ├── ros2.md ├── rustup.md ├── termux.md ├── ubuntu-ports.md ├── ubuntu.md ├── ubuntukylin.md └── virtualbox.md ├── docusaurus.config.js ├── i18n ├── en │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ ├── 2023 │ │ │ ├── 06-08-init.md │ │ │ ├── 09-13-alpha.md │ │ │ ├── 09-15-deprecate-hustmirror-cn.md │ │ │ └── 10-24-hustmirror-cn-is-deprecated.md │ │ ├── 2024 │ │ │ ├── 02-08-mirrorz.md │ │ │ ├── 02-22-change.md │ │ │ ├── 03-12-change.md │ │ │ ├── 03-14-update-cli.md │ │ │ ├── 03-25-migrate-github.md │ │ │ ├── 03-28-change.md │ │ │ ├── 05-07-public-open.md │ │ │ ├── 06-26-maintain.md │ │ │ └── 11-11-ubuntukylin-cdimge-issue.md │ │ ├── 2025 │ │ │ ├── 09-05-change.md │ │ │ ├── 09-12-change.md │ │ │ └── 10-27-qqgroup.md │ │ ├── authors.yml │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── about-git.md │ │ │ ├── alpine.md │ │ │ ├── anolis.md │ │ │ ├── archlinux.md │ │ │ ├── archlinuxcn.md │ │ │ ├── blackarch.md │ │ │ ├── buildroot.md │ │ │ ├── cli-tool.md │ │ │ ├── debian.md │ │ │ ├── deepin.md │ │ │ ├── gentoo.md │ │ │ ├── linux-next.git.md │ │ │ ├── linux-stable.git.md │ │ │ ├── linux.git.md │ │ │ ├── linuxmint.md │ │ │ ├── msys2.md │ │ │ ├── ohmyzsh.git.md │ │ │ ├── openbsd.md │ │ │ ├── openeuler.md │ │ │ ├── openkylin.md │ │ │ ├── pypi.md │ │ │ ├── qemu.git.md │ │ │ ├── ros.md │ │ │ ├── ros2.md │ │ │ ├── termux.md │ │ │ ├── ubuntu.md │ │ │ ├── ubuntukylin.md │ │ │ └── virtualbox.md │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json └── zh-Hans │ └── docusaurus-plugin-content-blog │ └── options.json ├── meta.config.ts ├── mirrors.config.js ├── package.json ├── plugin ├── cgit.js ├── fancyindex.js ├── news.js └── remark │ ├── cliAd.js │ ├── varcode.js │ └── yamlcli.js ├── scripts ├── mirrorz.js └── parser.py ├── sidebars.js ├── src ├── components │ ├── CliAdvertisement │ │ └── index.tsx │ ├── CliAnimation │ │ ├── index.module.css │ │ └── index.tsx │ ├── CodeBlockWithVariables │ │ ├── index.module.css │ │ └── index.tsx │ ├── DocGlobalOptions │ │ ├── index.module.css │ │ └── index.tsx │ ├── Select │ │ ├── index.module.css │ │ └── index.tsx │ ├── SideBar │ │ ├── index.module.css │ │ └── index.tsx │ ├── Switch │ │ ├── index.module.css │ │ └── index.tsx │ ├── Table │ │ ├── index.module.css │ │ └── index.tsx │ └── WithVariables.tsx ├── css │ └── custom.css ├── pages │ ├── cgit │ │ ├── README.md │ │ ├── _cgit.css │ │ ├── _client.js │ │ ├── _head.html │ │ └── index.tsx │ ├── fancyindex │ │ ├── _client.js │ │ ├── index.module.css │ │ └── index.tsx │ ├── index.module.css │ ├── index.tsx │ ├── release.module.css │ ├── release.tsx │ └── syncing-status │ │ └── index.tsx ├── theme │ ├── DocItem │ │ └── Layout │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── Footer │ │ ├── index.module.css │ │ └── index.tsx │ ├── MDXComponents.ts │ └── Root.tsx └── utils │ ├── SharedContext.ts │ └── mirrorUtils.ts ├── static ├── icons │ ├── contact.svg │ ├── copy.svg │ ├── disabled.svg │ ├── domain.svg │ ├── download.svg │ ├── failed.svg │ ├── git.svg │ ├── help.svg │ ├── help2.svg │ ├── image.svg │ ├── issue.svg │ ├── link.svg │ ├── mail.svg │ ├── mirrorz.svg │ ├── newmirror.svg │ ├── news.svg │ ├── none.svg │ ├── paused.svg │ ├── presyncing.svg │ ├── settings.svg │ ├── success.svg │ ├── syncing.svg │ └── terminal.svg └── img │ ├── atomclub-dark.svg │ ├── atomclub.svg │ ├── cli.svg │ ├── favicon.png │ ├── hlug_logo.png │ ├── logo-dark.svg │ └── logo.svg ├── tsconfig.json └── yarn.lock /.github/workflows/cli-gen-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/.github/workflows/cli-gen-test.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/.github/workflows/lint-all.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/README.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/USAGE.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2023/06-08-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2023/06-08-init.md -------------------------------------------------------------------------------- /blog/2023/09-13-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2023/09-13-alpha.md -------------------------------------------------------------------------------- /blog/2023/09-15-deprecate-hustmirror-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2023/09-15-deprecate-hustmirror-cn.md -------------------------------------------------------------------------------- /blog/2023/10-24-hustmirror-cn-is-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2023/10-24-hustmirror-cn-is-deprecated.md -------------------------------------------------------------------------------- /blog/2024/02-08-mirrorz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/02-08-mirrorz.md -------------------------------------------------------------------------------- /blog/2024/02-22-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/02-22-change.md -------------------------------------------------------------------------------- /blog/2024/03-12-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/03-12-change.md -------------------------------------------------------------------------------- /blog/2024/03-14-update-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/03-14-update-cli.md -------------------------------------------------------------------------------- /blog/2024/03-25-migrate-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/03-25-migrate-github.md -------------------------------------------------------------------------------- /blog/2024/03-28-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/03-28-change.md -------------------------------------------------------------------------------- /blog/2024/05-07-public-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/05-07-public-open.md -------------------------------------------------------------------------------- /blog/2024/06-26-maintain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/06-26-maintain.md -------------------------------------------------------------------------------- /blog/2024/11-11-ubuntukylin-cdimge-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2024/11-11-ubuntukylin-cdimge-issue.md -------------------------------------------------------------------------------- /blog/2025/09-05-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2025/09-05-change.md -------------------------------------------------------------------------------- /blog/2025/09-12-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2025/09-12-change.md -------------------------------------------------------------------------------- /blog/2025/10-27-qqgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2025/10-27-qqgroup.md -------------------------------------------------------------------------------- /blog/2025/12-05-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/2025/12-05-change.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /ci/.zhlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/.zhlintrc -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/gen-releases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/gen-releases.py -------------------------------------------------------------------------------- /ci/releases.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/releases.conf -------------------------------------------------------------------------------- /ci/test/test-releases-rsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/test/test-releases-rsync.py -------------------------------------------------------------------------------- /ci/update-cli-tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/update-cli-tool.sh -------------------------------------------------------------------------------- /ci/update-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/ci/update-pages.sh -------------------------------------------------------------------------------- /docs/CPAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/CPAN.md -------------------------------------------------------------------------------- /docs/CRAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/CRAN.md -------------------------------------------------------------------------------- /docs/CTAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/CTAN.md -------------------------------------------------------------------------------- /docs/F-Droid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/F-Droid.md -------------------------------------------------------------------------------- /docs/alpine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/alpine.md -------------------------------------------------------------------------------- /docs/archlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/archlinux.md -------------------------------------------------------------------------------- /docs/archlinuxcn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/archlinuxcn.md -------------------------------------------------------------------------------- /docs/assets/git-linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/assets/git-linux.png -------------------------------------------------------------------------------- /docs/blackarch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/blackarch.md -------------------------------------------------------------------------------- /docs/buildroot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/buildroot.md -------------------------------------------------------------------------------- /docs/cli-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/cli-tool.md -------------------------------------------------------------------------------- /docs/crates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/crates.md -------------------------------------------------------------------------------- /docs/debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/debian.md -------------------------------------------------------------------------------- /docs/deepin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/deepin.md -------------------------------------------------------------------------------- /docs/docker-ce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/docker-ce.md -------------------------------------------------------------------------------- /docs/fedora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/fedora.md -------------------------------------------------------------------------------- /docs/gentoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/gentoo.md -------------------------------------------------------------------------------- /docs/github-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/github-release.md -------------------------------------------------------------------------------- /docs/gnu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/gnu.md -------------------------------------------------------------------------------- /docs/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/golang.md -------------------------------------------------------------------------------- /docs/kali.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/kali.md -------------------------------------------------------------------------------- /docs/kernel.org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/kernel.org.md -------------------------------------------------------------------------------- /docs/linux-next.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/linux-next.git.md -------------------------------------------------------------------------------- /docs/linux-stable.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/linux-stable.git.md -------------------------------------------------------------------------------- /docs/linux.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/linux.git.md -------------------------------------------------------------------------------- /docs/linuxmint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/linuxmint.md -------------------------------------------------------------------------------- /docs/llvm-apt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/llvm-apt.md -------------------------------------------------------------------------------- /docs/llvm-project.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/llvm-project.git.md -------------------------------------------------------------------------------- /docs/manjaro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/manjaro.md -------------------------------------------------------------------------------- /docs/msys2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/msys2.md -------------------------------------------------------------------------------- /docs/mxlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/mxlinux.md -------------------------------------------------------------------------------- /docs/ohmyzsh.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/ohmyzsh.git.md -------------------------------------------------------------------------------- /docs/openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/openbsd.md -------------------------------------------------------------------------------- /docs/openeuler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/openeuler.md -------------------------------------------------------------------------------- /docs/openkylin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/openkylin.md -------------------------------------------------------------------------------- /docs/pypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/pypi.md -------------------------------------------------------------------------------- /docs/qemu.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/qemu.git.md -------------------------------------------------------------------------------- /docs/rocky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/rocky.md -------------------------------------------------------------------------------- /docs/ros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/ros.md -------------------------------------------------------------------------------- /docs/ros2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/ros2.md -------------------------------------------------------------------------------- /docs/rustup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/rustup.md -------------------------------------------------------------------------------- /docs/termux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/termux.md -------------------------------------------------------------------------------- /docs/ubuntu-ports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/ubuntu-ports.md -------------------------------------------------------------------------------- /docs/ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/ubuntu.md -------------------------------------------------------------------------------- /docs/ubuntukylin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/ubuntukylin.md -------------------------------------------------------------------------------- /docs/virtualbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docs/virtualbox.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /i18n/en/code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/code.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2023/06-08-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2023/06-08-init.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2023/09-13-alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2023/09-13-alpha.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2023/09-15-deprecate-hustmirror-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2023/09-15-deprecate-hustmirror-cn.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2023/10-24-hustmirror-cn-is-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2023/10-24-hustmirror-cn-is-deprecated.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/02-08-mirrorz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/02-08-mirrorz.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/02-22-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/02-22-change.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/03-12-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/03-12-change.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/03-14-update-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/03-14-update-cli.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/03-25-migrate-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/03-25-migrate-github.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/03-28-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/03-28-change.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/05-07-public-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/05-07-public-open.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/06-26-maintain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/06-26-maintain.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2024/11-11-ubuntukylin-cdimge-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2024/11-11-ubuntukylin-cdimge-issue.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2025/09-05-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2025/09-05-change.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2025/09-12-change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2025/09-12-change.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/2025/10-27-qqgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/2025/10-27-qqgroup.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/authors.yml -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/about-git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/about-git.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/alpine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/alpine.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/anolis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/anolis.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/archlinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/archlinux.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/archlinuxcn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/archlinuxcn.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/blackarch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/blackarch.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/buildroot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/buildroot.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/cli-tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/cli-tool.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/debian.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/deepin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/deepin.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/gentoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/gentoo.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/linux-next.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/linux-next.git.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/linux-stable.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/linux-stable.git.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/linux.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/linux.git.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/linuxmint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/linuxmint.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/msys2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/msys2.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/ohmyzsh.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/ohmyzsh.git.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/openbsd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/openbsd.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/openeuler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/openeuler.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/openkylin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/openkylin.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/pypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/pypi.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/qemu.git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/qemu.git.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/ros.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/ros.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/ros2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/ros2.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/termux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/termux.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/ubuntu.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/ubuntukylin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/ubuntukylin.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-docs/current/virtualbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-plugin-content-docs/current/virtualbox.md -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-theme-classic/footer.json -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/en/docusaurus-theme-classic/navbar.json -------------------------------------------------------------------------------- /i18n/zh-Hans/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/i18n/zh-Hans/docusaurus-plugin-content-blog/options.json -------------------------------------------------------------------------------- /meta.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/meta.config.ts -------------------------------------------------------------------------------- /mirrors.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/mirrors.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/package.json -------------------------------------------------------------------------------- /plugin/cgit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/plugin/cgit.js -------------------------------------------------------------------------------- /plugin/fancyindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/plugin/fancyindex.js -------------------------------------------------------------------------------- /plugin/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/plugin/news.js -------------------------------------------------------------------------------- /plugin/remark/cliAd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/plugin/remark/cliAd.js -------------------------------------------------------------------------------- /plugin/remark/varcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/plugin/remark/varcode.js -------------------------------------------------------------------------------- /plugin/remark/yamlcli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/plugin/remark/yamlcli.js -------------------------------------------------------------------------------- /scripts/mirrorz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/scripts/mirrorz.js -------------------------------------------------------------------------------- /scripts/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/scripts/parser.py -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/CliAdvertisement/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/CliAdvertisement/index.tsx -------------------------------------------------------------------------------- /src/components/CliAnimation/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/CliAnimation/index.module.css -------------------------------------------------------------------------------- /src/components/CliAnimation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/CliAnimation/index.tsx -------------------------------------------------------------------------------- /src/components/CodeBlockWithVariables/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/CodeBlockWithVariables/index.module.css -------------------------------------------------------------------------------- /src/components/CodeBlockWithVariables/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/CodeBlockWithVariables/index.tsx -------------------------------------------------------------------------------- /src/components/DocGlobalOptions/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/DocGlobalOptions/index.module.css -------------------------------------------------------------------------------- /src/components/DocGlobalOptions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/DocGlobalOptions/index.tsx -------------------------------------------------------------------------------- /src/components/Select/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/Select/index.module.css -------------------------------------------------------------------------------- /src/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/Select/index.tsx -------------------------------------------------------------------------------- /src/components/SideBar/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/SideBar/index.module.css -------------------------------------------------------------------------------- /src/components/SideBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/SideBar/index.tsx -------------------------------------------------------------------------------- /src/components/Switch/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/Switch/index.module.css -------------------------------------------------------------------------------- /src/components/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/Switch/index.tsx -------------------------------------------------------------------------------- /src/components/Table/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/Table/index.module.css -------------------------------------------------------------------------------- /src/components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/Table/index.tsx -------------------------------------------------------------------------------- /src/components/WithVariables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/components/WithVariables.tsx -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/cgit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/cgit/README.md -------------------------------------------------------------------------------- /src/pages/cgit/_cgit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/cgit/_cgit.css -------------------------------------------------------------------------------- /src/pages/cgit/_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/cgit/_client.js -------------------------------------------------------------------------------- /src/pages/cgit/_head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/cgit/_head.html -------------------------------------------------------------------------------- /src/pages/cgit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/cgit/index.tsx -------------------------------------------------------------------------------- /src/pages/fancyindex/_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/fancyindex/_client.js -------------------------------------------------------------------------------- /src/pages/fancyindex/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/fancyindex/index.module.css -------------------------------------------------------------------------------- /src/pages/fancyindex/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/fancyindex/index.tsx -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/release.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/release.module.css -------------------------------------------------------------------------------- /src/pages/release.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/release.tsx -------------------------------------------------------------------------------- /src/pages/syncing-status/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/pages/syncing-status/index.tsx -------------------------------------------------------------------------------- /src/theme/DocItem/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/theme/DocItem/Layout/index.tsx -------------------------------------------------------------------------------- /src/theme/DocItem/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/theme/DocItem/Layout/styles.module.css -------------------------------------------------------------------------------- /src/theme/Footer/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/theme/Footer/index.module.css -------------------------------------------------------------------------------- /src/theme/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/theme/Footer/index.tsx -------------------------------------------------------------------------------- /src/theme/MDXComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/theme/MDXComponents.ts -------------------------------------------------------------------------------- /src/theme/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/theme/Root.tsx -------------------------------------------------------------------------------- /src/utils/SharedContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/utils/SharedContext.ts -------------------------------------------------------------------------------- /src/utils/mirrorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/src/utils/mirrorUtils.ts -------------------------------------------------------------------------------- /static/icons/contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/contact.svg -------------------------------------------------------------------------------- /static/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/copy.svg -------------------------------------------------------------------------------- /static/icons/disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/disabled.svg -------------------------------------------------------------------------------- /static/icons/domain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/domain.svg -------------------------------------------------------------------------------- /static/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/download.svg -------------------------------------------------------------------------------- /static/icons/failed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/failed.svg -------------------------------------------------------------------------------- /static/icons/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/git.svg -------------------------------------------------------------------------------- /static/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/help.svg -------------------------------------------------------------------------------- /static/icons/help2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/help2.svg -------------------------------------------------------------------------------- /static/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/image.svg -------------------------------------------------------------------------------- /static/icons/issue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/issue.svg -------------------------------------------------------------------------------- /static/icons/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/link.svg -------------------------------------------------------------------------------- /static/icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/mail.svg -------------------------------------------------------------------------------- /static/icons/mirrorz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/mirrorz.svg -------------------------------------------------------------------------------- /static/icons/newmirror.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/newmirror.svg -------------------------------------------------------------------------------- /static/icons/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/news.svg -------------------------------------------------------------------------------- /static/icons/none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/none.svg -------------------------------------------------------------------------------- /static/icons/paused.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/paused.svg -------------------------------------------------------------------------------- /static/icons/presyncing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/presyncing.svg -------------------------------------------------------------------------------- /static/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/settings.svg -------------------------------------------------------------------------------- /static/icons/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/success.svg -------------------------------------------------------------------------------- /static/icons/syncing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/syncing.svg -------------------------------------------------------------------------------- /static/icons/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/icons/terminal.svg -------------------------------------------------------------------------------- /static/img/atomclub-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/atomclub-dark.svg -------------------------------------------------------------------------------- /static/img/atomclub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/atomclub.svg -------------------------------------------------------------------------------- /static/img/cli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/cli.svg -------------------------------------------------------------------------------- /static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/favicon.png -------------------------------------------------------------------------------- /static/img/hlug_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/hlug_logo.png -------------------------------------------------------------------------------- /static/img/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/logo-dark.svg -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hust-open-atom-club/hust-mirrors/HEAD/yarn.lock --------------------------------------------------------------------------------