This commit is contained in:
2022-12-11 15:23:27 -06:00
parent b60512ed46
commit 93508f8d80
6204 changed files with 729089 additions and 707591 deletions

View File

@ -28,7 +28,7 @@ function App() {
id="nav-dropdown-dark-example"
title="Javadocs"
menuVariant="dark">
<NavDropdown.Item href="https://scissors.gg/javadoc/1.19.1">1.19.1</NavDropdown.Item>
<NavDropdown.Item href="https://scissors.gg/javadoc/1.19.3">1.19.3</NavDropdown.Item>
<NavDropdown.Item href="https://scissors.gg/javadoc/1.18.2">1.18.2</NavDropdown.Item>
<NavDropdown.Item href="https://scissors.gg/javadoc/1.17.1">1.17.1</NavDropdown.Item>
</NavDropdown>

View File

@ -8,7 +8,7 @@ import { Build, getBuilds, getJobs, Job } from "../util/Jenkins";
const DownloadPage = () => {
const [jobs, setJobs] = useState(new Map<Job, Build[]>())
const [version, setVersion] = useState("")
const versions = ["1.17.1", "1.18.2", "1.19.1"]
const versions = ["1.17.1", "1.18.2", "1.19.3"]
useEffect(() => {
doJobs()
}, [])

View File

@ -6,7 +6,7 @@ const HomePage = () => {
<Fragment>
<h1>Scissors</h1>
<h4>Minecraft server software oriented towards patching Creative Mode exploits.</h4>
<h4>Versions: 1.17.1, 1.18.2, 1.19.1</h4>
<h4>Versions: 1.17.1, 1.18.2, 1.19.3</h4>
</Fragment>
);
}