├── .browserslistrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.en_US.md ├── README.md ├── SECURITY.asc ├── app.config.ts ├── app.vue ├── assets ├── main.css └── reden-alipay.png ├── components ├── AliyunCaptcha.vue ├── CommonCaptcha.vue ├── Empire.vue ├── RedStoneSection.vue ├── RedenRouter.vue ├── RedstoneSectionTitle.vue ├── Sumimasen.vue ├── UserBadges.vue ├── admin │ ├── AdminBanUserButton.vue │ └── AdminEditUserButton.vue ├── ads │ ├── BlockAd.vue │ ├── BottomBarAd.vue │ ├── GoogleAd.vue │ └── SidebarAd.vue ├── content │ ├── ProseA.vue │ ├── ProseBlockquote.vue │ ├── ProseCode.vue │ ├── ProseEm.vue │ ├── ProseH1.vue │ ├── ProseH2.vue │ ├── ProseH3.vue │ ├── ProseH4.vue │ ├── ProseH5.vue │ ├── ProseH6.vue │ ├── ProseHr.vue │ ├── ProseImg.vue │ ├── ProseLi.vue │ ├── ProseOl.vue │ ├── ProseP.vue │ ├── ProsePre.vue │ ├── ProseScript.vue │ ├── ProseStrong.vue │ ├── ProseTable.vue │ ├── ProseTbody.vue │ ├── ProseTd.vue │ ├── ProseTh.vue │ ├── ProseThead.vue │ ├── ProseTr.vue │ ├── ProseUl.vue │ └── mdc-styles.css ├── homePage │ └── RedstonePostCard.vue ├── layout │ ├── Header.vue │ └── footer.vue ├── litematica │ ├── CommentItem.vue │ ├── CommentsSection.vue │ ├── EarningBanner.vue │ ├── LitematicaGenDownloader.vue │ ├── LitematicaShareDownloader.vue │ ├── LitematicaUpload.vue │ ├── MinecraftFarmCard.vue │ ├── RedenPostStatusChip.vue │ ├── SizeInput.vue │ ├── TagSelector.vue │ ├── TransferOwnershipDialog.vue │ └── components.tsx ├── minecraft │ ├── ItemDisplay.vue │ └── LitematicaPreview.vue ├── misc │ └── OAuthButtons.vue └── profile │ ├── BindPhoneNumberCard.vue │ ├── UserContentPanel.vue │ ├── UserProfileCard.vue │ ├── VerifyMinecraft.vue │ └── user-card-wrap.css ├── content ├── docs │ └── test.md ├── tos.md └── zh_cn │ └── docs │ ├── generator-rules.md │ └── real-person.md ├── crowdin.yml ├── empty ├── error.vue ├── i18n ├── en.json ├── en.ts ├── i18n.config.ts ├── minecraft │ ├── en_us.json │ ├── ru_ru.json │ ├── zh_cn.json │ └── zh_tw.json ├── ru.ts ├── ru_RU.json ├── zh_CN.json ├── zh_TW.json ├── zh_cn.ts └── zh_tw.ts ├── indexnow.py ├── layouts └── default.vue ├── middleware ├── 00.login-guard.global.ts └── 01.title.global.ts ├── nuxt.config.ts ├── package.json ├── pages ├── @[username].vue ├── admin │ ├── index.vue │ ├── security-logs.vue │ └── users.vue ├── community-guidelines.vue ├── dmca.vue ├── docs │ └── [...slug].vue ├── download.vue ├── empire │ ├── index.vue │ └── tutorial.vue ├── feature │ ├── debugger.vue │ ├── index.vue │ ├── rvc.vue │ └── undo.vue ├── forgot-password.vue ├── home │ ├── edit.vue │ └── index.vue ├── index.vue ├── legal │ └── privacy.vue ├── litematica │ ├── [name].vue │ ├── earning-dashboard.vue │ ├── earning.vue │ ├── edit.vue │ ├── index.vue │ └── review.vue ├── login.vue ├── miku.vue ├── preview.vue ├── register.vue ├── reset-password.vue ├── sponsors.vue ├── studio.vue ├── tag │ └── [tag_name].vue ├── tags │ ├── index.vue │ └── search.vue ├── tsx │ ├── index.tsx │ └── styles.css └── x-backup │ ├── me.vue │ └── plans.vue ├── plugins ├── icons │ ├── Bilibili.vue │ ├── CubeScan.vue │ ├── DiscordIcon.vue │ ├── Microsoft.vue │ ├── ModrinthFull.vue │ ├── QuarkCloud.vue │ ├── YouTube_Logo_2017.vue │ ├── ZipArchive.vue │ ├── customSvgs.ts │ └── google.vue └── vuetify.ts ├── public ├── ads.txt ├── cae43db142664664989d50b7c690d397.txt ├── favicon.ico ├── image │ ├── generals │ │ ├── city.png │ │ ├── crown.png │ │ ├── mountain.png │ │ ├── obstacle.png │ │ └── swamp.png │ ├── gwab.png │ ├── homepage │ │ ├── section │ │ │ ├── lever.png │ │ │ ├── lever_base.png │ │ │ ├── piston_base.png │ │ │ ├── piston_head.png │ │ │ ├── piston_side.png │ │ │ ├── redstone_dust_0.png │ │ │ ├── redstone_dust_15.png │ │ │ ├── redstone_lamp.png │ │ │ └── redstone_lamp_on.png │ │ └── undo │ │ │ ├── TNT.webp │ │ │ ├── chest.png │ │ │ ├── creeper.webp │ │ │ ├── grass_block.webp │ │ │ └── villager.webp │ ├── reden-alipay.png │ └── sumimasen.png ├── reden_256.png ├── robots.txt └── video │ └── nether_portal.mp4 ├── script ├── fix-i18n.js ├── init-git-hash.js └── test.sh ├── store ├── app.ts ├── message.ts └── meta.ts ├── test └── assets │ └── 1.litematic ├── tsconfig.json ├── utils ├── api.ts ├── conditionParser.ts ├── constants.ts ├── litematic-utils.ts ├── litematica │ ├── assets.js │ ├── blocks │ │ ├── atlas.png │ │ ├── data.json │ │ ├── mc-data-extract.json │ │ └── mcmeta.md │ ├── models_selectable.json │ └── opaque.js └── useQuery.ts └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | utils/litematica/* 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en_US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/README.en_US.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/SECURITY.asc -------------------------------------------------------------------------------- /app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/app.config.ts -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/app.vue -------------------------------------------------------------------------------- /assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/assets/main.css -------------------------------------------------------------------------------- /assets/reden-alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/assets/reden-alipay.png -------------------------------------------------------------------------------- /components/AliyunCaptcha.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/AliyunCaptcha.vue -------------------------------------------------------------------------------- /components/CommonCaptcha.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/CommonCaptcha.vue -------------------------------------------------------------------------------- /components/Empire.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/Empire.vue -------------------------------------------------------------------------------- /components/RedStoneSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/RedStoneSection.vue -------------------------------------------------------------------------------- /components/RedenRouter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/RedenRouter.vue -------------------------------------------------------------------------------- /components/RedstoneSectionTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/RedstoneSectionTitle.vue -------------------------------------------------------------------------------- /components/Sumimasen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/Sumimasen.vue -------------------------------------------------------------------------------- /components/UserBadges.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/UserBadges.vue -------------------------------------------------------------------------------- /components/admin/AdminBanUserButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/admin/AdminBanUserButton.vue -------------------------------------------------------------------------------- /components/admin/AdminEditUserButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/admin/AdminEditUserButton.vue -------------------------------------------------------------------------------- /components/ads/BlockAd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/ads/BlockAd.vue -------------------------------------------------------------------------------- /components/ads/BottomBarAd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/ads/BottomBarAd.vue -------------------------------------------------------------------------------- /components/ads/GoogleAd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/ads/GoogleAd.vue -------------------------------------------------------------------------------- /components/ads/SidebarAd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/ads/SidebarAd.vue -------------------------------------------------------------------------------- /components/content/ProseA.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseA.vue -------------------------------------------------------------------------------- /components/content/ProseBlockquote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseBlockquote.vue -------------------------------------------------------------------------------- /components/content/ProseCode.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseCode.vue -------------------------------------------------------------------------------- /components/content/ProseEm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseEm.vue -------------------------------------------------------------------------------- /components/content/ProseH1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseH1.vue -------------------------------------------------------------------------------- /components/content/ProseH2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseH2.vue -------------------------------------------------------------------------------- /components/content/ProseH3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseH3.vue -------------------------------------------------------------------------------- /components/content/ProseH4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseH4.vue -------------------------------------------------------------------------------- /components/content/ProseH5.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseH5.vue -------------------------------------------------------------------------------- /components/content/ProseH6.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseH6.vue -------------------------------------------------------------------------------- /components/content/ProseHr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseHr.vue -------------------------------------------------------------------------------- /components/content/ProseImg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseImg.vue -------------------------------------------------------------------------------- /components/content/ProseLi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseLi.vue -------------------------------------------------------------------------------- /components/content/ProseOl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseOl.vue -------------------------------------------------------------------------------- /components/content/ProseP.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseP.vue -------------------------------------------------------------------------------- /components/content/ProsePre.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProsePre.vue -------------------------------------------------------------------------------- /components/content/ProseScript.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseScript.vue -------------------------------------------------------------------------------- /components/content/ProseStrong.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseStrong.vue -------------------------------------------------------------------------------- /components/content/ProseTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseTable.vue -------------------------------------------------------------------------------- /components/content/ProseTbody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseTbody.vue -------------------------------------------------------------------------------- /components/content/ProseTd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseTd.vue -------------------------------------------------------------------------------- /components/content/ProseTh.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseTh.vue -------------------------------------------------------------------------------- /components/content/ProseThead.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseThead.vue -------------------------------------------------------------------------------- /components/content/ProseTr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseTr.vue -------------------------------------------------------------------------------- /components/content/ProseUl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/ProseUl.vue -------------------------------------------------------------------------------- /components/content/mdc-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/content/mdc-styles.css -------------------------------------------------------------------------------- /components/homePage/RedstonePostCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/homePage/RedstonePostCard.vue -------------------------------------------------------------------------------- /components/layout/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/layout/Header.vue -------------------------------------------------------------------------------- /components/layout/footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/layout/footer.vue -------------------------------------------------------------------------------- /components/litematica/CommentItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/CommentItem.vue -------------------------------------------------------------------------------- /components/litematica/CommentsSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/CommentsSection.vue -------------------------------------------------------------------------------- /components/litematica/EarningBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/EarningBanner.vue -------------------------------------------------------------------------------- /components/litematica/LitematicaGenDownloader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/LitematicaGenDownloader.vue -------------------------------------------------------------------------------- /components/litematica/LitematicaShareDownloader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/LitematicaShareDownloader.vue -------------------------------------------------------------------------------- /components/litematica/LitematicaUpload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/LitematicaUpload.vue -------------------------------------------------------------------------------- /components/litematica/MinecraftFarmCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/MinecraftFarmCard.vue -------------------------------------------------------------------------------- /components/litematica/RedenPostStatusChip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/RedenPostStatusChip.vue -------------------------------------------------------------------------------- /components/litematica/SizeInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/SizeInput.vue -------------------------------------------------------------------------------- /components/litematica/TagSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/TagSelector.vue -------------------------------------------------------------------------------- /components/litematica/TransferOwnershipDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/TransferOwnershipDialog.vue -------------------------------------------------------------------------------- /components/litematica/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/litematica/components.tsx -------------------------------------------------------------------------------- /components/minecraft/ItemDisplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/minecraft/ItemDisplay.vue -------------------------------------------------------------------------------- /components/minecraft/LitematicaPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/minecraft/LitematicaPreview.vue -------------------------------------------------------------------------------- /components/misc/OAuthButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/misc/OAuthButtons.vue -------------------------------------------------------------------------------- /components/profile/BindPhoneNumberCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/profile/BindPhoneNumberCard.vue -------------------------------------------------------------------------------- /components/profile/UserContentPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/profile/UserContentPanel.vue -------------------------------------------------------------------------------- /components/profile/UserProfileCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/profile/UserProfileCard.vue -------------------------------------------------------------------------------- /components/profile/VerifyMinecraft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/profile/VerifyMinecraft.vue -------------------------------------------------------------------------------- /components/profile/user-card-wrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/components/profile/user-card-wrap.css -------------------------------------------------------------------------------- /content/docs/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/content/docs/test.md -------------------------------------------------------------------------------- /content/tos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/content/tos.md -------------------------------------------------------------------------------- /content/zh_cn/docs/generator-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/content/zh_cn/docs/generator-rules.md -------------------------------------------------------------------------------- /content/zh_cn/docs/real-person.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/content/zh_cn/docs/real-person.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/crowdin.yml -------------------------------------------------------------------------------- /empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/error.vue -------------------------------------------------------------------------------- /i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/en.json -------------------------------------------------------------------------------- /i18n/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/en.ts -------------------------------------------------------------------------------- /i18n/i18n.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/i18n.config.ts -------------------------------------------------------------------------------- /i18n/minecraft/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/minecraft/en_us.json -------------------------------------------------------------------------------- /i18n/minecraft/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/minecraft/ru_ru.json -------------------------------------------------------------------------------- /i18n/minecraft/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/minecraft/zh_cn.json -------------------------------------------------------------------------------- /i18n/minecraft/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/minecraft/zh_tw.json -------------------------------------------------------------------------------- /i18n/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/ru.ts -------------------------------------------------------------------------------- /i18n/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/ru_RU.json -------------------------------------------------------------------------------- /i18n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/zh_CN.json -------------------------------------------------------------------------------- /i18n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/zh_TW.json -------------------------------------------------------------------------------- /i18n/zh_cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/zh_cn.ts -------------------------------------------------------------------------------- /i18n/zh_tw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/i18n/zh_tw.ts -------------------------------------------------------------------------------- /indexnow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/indexnow.py -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/00.login-guard.global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/middleware/00.login-guard.global.ts -------------------------------------------------------------------------------- /middleware/01.title.global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/middleware/01.title.global.ts -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/package.json -------------------------------------------------------------------------------- /pages/@[username].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/@[username].vue -------------------------------------------------------------------------------- /pages/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/admin/index.vue -------------------------------------------------------------------------------- /pages/admin/security-logs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/admin/security-logs.vue -------------------------------------------------------------------------------- /pages/admin/users.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/admin/users.vue -------------------------------------------------------------------------------- /pages/community-guidelines.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/community-guidelines.vue -------------------------------------------------------------------------------- /pages/dmca.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/dmca.vue -------------------------------------------------------------------------------- /pages/docs/[...slug].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/docs/[...slug].vue -------------------------------------------------------------------------------- /pages/download.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/download.vue -------------------------------------------------------------------------------- /pages/empire/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/empire/index.vue -------------------------------------------------------------------------------- /pages/empire/tutorial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/empire/tutorial.vue -------------------------------------------------------------------------------- /pages/feature/debugger.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/feature/debugger.vue -------------------------------------------------------------------------------- /pages/feature/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/feature/index.vue -------------------------------------------------------------------------------- /pages/feature/rvc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/feature/rvc.vue -------------------------------------------------------------------------------- /pages/feature/undo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/feature/undo.vue -------------------------------------------------------------------------------- /pages/forgot-password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/forgot-password.vue -------------------------------------------------------------------------------- /pages/home/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/home/edit.vue -------------------------------------------------------------------------------- /pages/home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/home/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/legal/privacy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/legal/privacy.vue -------------------------------------------------------------------------------- /pages/litematica/[name].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/litematica/[name].vue -------------------------------------------------------------------------------- /pages/litematica/earning-dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/litematica/earning-dashboard.vue -------------------------------------------------------------------------------- /pages/litematica/earning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/litematica/earning.vue -------------------------------------------------------------------------------- /pages/litematica/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/litematica/edit.vue -------------------------------------------------------------------------------- /pages/litematica/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/litematica/index.vue -------------------------------------------------------------------------------- /pages/litematica/review.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/litematica/review.vue -------------------------------------------------------------------------------- /pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/login.vue -------------------------------------------------------------------------------- /pages/miku.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/miku.vue -------------------------------------------------------------------------------- /pages/preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/preview.vue -------------------------------------------------------------------------------- /pages/register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/register.vue -------------------------------------------------------------------------------- /pages/reset-password.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/reset-password.vue -------------------------------------------------------------------------------- /pages/sponsors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/sponsors.vue -------------------------------------------------------------------------------- /pages/studio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/studio.vue -------------------------------------------------------------------------------- /pages/tag/[tag_name].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/tag/[tag_name].vue -------------------------------------------------------------------------------- /pages/tags/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/tags/index.vue -------------------------------------------------------------------------------- /pages/tags/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/tags/search.vue -------------------------------------------------------------------------------- /pages/tsx/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/tsx/index.tsx -------------------------------------------------------------------------------- /pages/tsx/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/tsx/styles.css -------------------------------------------------------------------------------- /pages/x-backup/me.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/x-backup/me.vue -------------------------------------------------------------------------------- /pages/x-backup/plans.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/pages/x-backup/plans.vue -------------------------------------------------------------------------------- /plugins/icons/Bilibili.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/Bilibili.vue -------------------------------------------------------------------------------- /plugins/icons/CubeScan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/CubeScan.vue -------------------------------------------------------------------------------- /plugins/icons/DiscordIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/DiscordIcon.vue -------------------------------------------------------------------------------- /plugins/icons/Microsoft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/Microsoft.vue -------------------------------------------------------------------------------- /plugins/icons/ModrinthFull.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/ModrinthFull.vue -------------------------------------------------------------------------------- /plugins/icons/QuarkCloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/QuarkCloud.vue -------------------------------------------------------------------------------- /plugins/icons/YouTube_Logo_2017.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/YouTube_Logo_2017.vue -------------------------------------------------------------------------------- /plugins/icons/ZipArchive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/ZipArchive.vue -------------------------------------------------------------------------------- /plugins/icons/customSvgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/customSvgs.ts -------------------------------------------------------------------------------- /plugins/icons/google.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/icons/google.vue -------------------------------------------------------------------------------- /plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/plugins/vuetify.ts -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-4957320708232906, DIRECT, f08c47fec0942fa0 2 | -------------------------------------------------------------------------------- /public/cae43db142664664989d50b7c690d397.txt: -------------------------------------------------------------------------------- 1 | cae43db142664664989d50b7c690d397 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/image/generals/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/generals/city.png -------------------------------------------------------------------------------- /public/image/generals/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/generals/crown.png -------------------------------------------------------------------------------- /public/image/generals/mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/generals/mountain.png -------------------------------------------------------------------------------- /public/image/generals/obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/generals/obstacle.png -------------------------------------------------------------------------------- /public/image/generals/swamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/generals/swamp.png -------------------------------------------------------------------------------- /public/image/gwab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/gwab.png -------------------------------------------------------------------------------- /public/image/homepage/section/lever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/lever.png -------------------------------------------------------------------------------- /public/image/homepage/section/lever_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/lever_base.png -------------------------------------------------------------------------------- /public/image/homepage/section/piston_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/piston_base.png -------------------------------------------------------------------------------- /public/image/homepage/section/piston_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/piston_head.png -------------------------------------------------------------------------------- /public/image/homepage/section/piston_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/piston_side.png -------------------------------------------------------------------------------- /public/image/homepage/section/redstone_dust_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/redstone_dust_0.png -------------------------------------------------------------------------------- /public/image/homepage/section/redstone_dust_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/redstone_dust_15.png -------------------------------------------------------------------------------- /public/image/homepage/section/redstone_lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/redstone_lamp.png -------------------------------------------------------------------------------- /public/image/homepage/section/redstone_lamp_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/section/redstone_lamp_on.png -------------------------------------------------------------------------------- /public/image/homepage/undo/TNT.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/undo/TNT.webp -------------------------------------------------------------------------------- /public/image/homepage/undo/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/undo/chest.png -------------------------------------------------------------------------------- /public/image/homepage/undo/creeper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/undo/creeper.webp -------------------------------------------------------------------------------- /public/image/homepage/undo/grass_block.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/undo/grass_block.webp -------------------------------------------------------------------------------- /public/image/homepage/undo/villager.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/homepage/undo/villager.webp -------------------------------------------------------------------------------- /public/image/reden-alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/reden-alipay.png -------------------------------------------------------------------------------- /public/image/sumimasen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/image/sumimasen.png -------------------------------------------------------------------------------- /public/reden_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/reden_256.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/video/nether_portal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/public/video/nether_portal.mp4 -------------------------------------------------------------------------------- /script/fix-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/script/fix-i18n.js -------------------------------------------------------------------------------- /script/init-git-hash.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/script/test.sh -------------------------------------------------------------------------------- /store/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/store/app.ts -------------------------------------------------------------------------------- /store/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/store/message.ts -------------------------------------------------------------------------------- /store/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/store/meta.ts -------------------------------------------------------------------------------- /test/assets/1.litematic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/test/assets/1.litematic -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/api.ts -------------------------------------------------------------------------------- /utils/conditionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/conditionParser.ts -------------------------------------------------------------------------------- /utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/constants.ts -------------------------------------------------------------------------------- /utils/litematic-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematic-utils.ts -------------------------------------------------------------------------------- /utils/litematica/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematica/assets.js -------------------------------------------------------------------------------- /utils/litematica/blocks/atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematica/blocks/atlas.png -------------------------------------------------------------------------------- /utils/litematica/blocks/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematica/blocks/data.json -------------------------------------------------------------------------------- /utils/litematica/blocks/mc-data-extract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematica/blocks/mc-data-extract.json -------------------------------------------------------------------------------- /utils/litematica/blocks/mcmeta.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /utils/litematica/models_selectable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematica/models_selectable.json -------------------------------------------------------------------------------- /utils/litematica/opaque.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/litematica/opaque.js -------------------------------------------------------------------------------- /utils/useQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/utils/useQuery.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedenMC/reden-website/HEAD/yarn.lock --------------------------------------------------------------------------------