From d33a3fb7eda64e2625a9146ea28afc0ae9a6e038 Mon Sep 17 00:00:00 2001 From: code913 <54856929+code913@users.noreply.github.com> Date: Mon, 30 Oct 2023 06:12:11 +0000 Subject: [PATCH 1/4] ui: prevent brand from word wrapping --- src/lib/Header.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/Header.svelte b/src/lib/Header.svelte index ad9a001..8165a74 100644 --- a/src/lib/Header.svelte +++ b/src/lib/Header.svelte @@ -92,7 +92,7 @@ nav { grid-template: { areas: "brand menu" "links links"; - columns: 1fr 1fr; + columns: 1fr auto; rows: auto min-content; } } From 5af9010547bf339e3321a73b88d77687cb6275ea Mon Sep 17 00:00:00 2001 From: code913 <54856929+code913@users.noreply.github.com> Date: Mon, 30 Oct 2023 21:54:28 +0530 Subject: [PATCH 2/4] ui: make ul padding match with the note --- src/routes/downloads/expandedworlds/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/downloads/expandedworlds/+page.svelte b/src/routes/downloads/expandedworlds/+page.svelte index d4e3342..94ce51e 100644 --- a/src/routes/downloads/expandedworlds/+page.svelte +++ b/src/routes/downloads/expandedworlds/+page.svelte @@ -257,7 +257,7 @@
Note from author: Very buggy, has log spam which can rapidly decrease FPS and can cause disk usage to rise drastically, has a bug at 2^35 which causes stripes of chunks to not load every power of 2, Chunk overwrite limit causes chunk and entity relocation spam, highly unstable. Player will be affected.
-+
Hello, you're probably looking for this: new archive -
\ No newline at end of file + + + From 1d996242c88884cd268eebdb96eab4bf3bd4863e Mon Sep 17 00:00:00 2001 From: code913 <54856929+code913@users.noreply.github.com> Date: Mon, 30 Oct 2023 22:52:51 +0530 Subject: [PATCH 4/4] fix: Wrong directory for github pages (#14) * fix: change output dir in svelte config * fix: change output dir in deploy action --- .github/workflows/deploy.yml | 4 ++-- svelte.config.js | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8b9ca27..3b5a04c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-pages-artifact@v2 with: - path: "build/" + path: "docs/" deploy: needs: build_site @@ -46,4 +46,4 @@ jobs: steps: - name: Deploy id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file + uses: actions/deploy-pages@v2 diff --git a/svelte.config.js b/svelte.config.js index 33c26a5..13a4462 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -4,8 +4,8 @@ import preprocess from "svelte-preprocess"; const config = { kit: { adapter: adapter({ - pages: "build", - assets: "build", + pages: "docs", + assets: "docs", fallback: undefined, precompress: false, strict: true @@ -22,4 +22,4 @@ const config = { config.paths = { base: process.argv.includes("dev") ? "" : process.env.BASE_PATH }; -export default config; \ No newline at end of file +export default config;