Update to 1.19.1

This commit is contained in:
Telesphoreo 2022-07-29 21:12:03 -05:00
parent e8e82fbc95
commit d6d14f3ad6
2 changed files with 5 additions and 5 deletions

View File

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

View File

@ -6,9 +6,9 @@ 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</h4>
<h4>Versions: 1.17.1, 1.18.2, 1.19.1</h4>
</Fragment>
);
}
export default HomePage;
export default HomePage;