Merge branch 'CursedCreationsTeam:main' into titles

main
code913 2 years ago committed by GitHub
commit 12f8c34f35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,7 +29,7 @@ jobs:
- name: Upload Artifacts - name: Upload Artifacts
uses: actions/upload-pages-artifact@v2 uses: actions/upload-pages-artifact@v2
with: with:
path: "build/" path: "docs/"
deploy: deploy:
needs: build_site needs: build_site
@ -46,4 +46,4 @@ jobs:
steps: steps:
- name: Deploy - name: Deploy
id: deployment id: deployment
uses: actions/deploy-pages@v2 uses: actions/deploy-pages@v2

@ -92,7 +92,7 @@
nav { nav {
grid-template: { grid-template: {
areas: "brand menu" "links links"; areas: "brand menu" "links links";
columns: 1fr 1fr; columns: 1fr auto;
rows: auto min-content; rows: auto min-content;
} }
} }

@ -2,6 +2,13 @@
<title>Cursed Creations | Home</title> <title>Cursed Creations | Home</title>
</svelte:head> </svelte:head>
<p style:text-align="center"> <p>
Hello, you're probably looking for this: <a href="/downloads">new archive</a> Hello, you're probably looking for this: <a href="/downloads">new archive</a>
</p> </p>
<style>
p {
text-align: center;
max-inline-size: revert;
}
</style>

@ -257,7 +257,7 @@
<h3>1.8 (Zero)</h3> <h3>1.8 (Zero)</h3>
<p class="note">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.</p> <p class="note">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.</p>
<ul> <ul style:padding-left="10ch">
<li>v2 - Most issues are fixed, log spam is fixed</li> <li>v2 - Most issues are fixed, log spam is fixed</li>
<li>v3 - Fixes 2^35 bug, Slowfalling still exists (due to server thread becoming overloaded)</li> <li>v3 - Fixes 2^35 bug, Slowfalling still exists (due to server thread becoming overloaded)</li>
</ul> </ul>

@ -4,8 +4,8 @@ import preprocess from "svelte-preprocess";
const config = { const config = {
kit: { kit: {
adapter: adapter({ adapter: adapter({
pages: "build", pages: "docs",
assets: "build", assets: "docs",
fallback: undefined, fallback: undefined,
precompress: false, precompress: false,
strict: true strict: true
@ -22,4 +22,4 @@ const config = {
config.paths = { base: process.argv.includes("dev") ? "" : process.env.BASE_PATH }; config.paths = { base: process.argv.includes("dev") ? "" : process.env.BASE_PATH };
export default config; export default config;

Loading…
Cancel
Save