Compare commits
No commits in common. "d31ae47cde2335886e48f5f17e92fe9a6ac8ee0b" and "912c7ed3748361d83bfd09814ef41955932a1ba8" have entirely different histories.
d31ae47cde
...
912c7ed374
@ -4,11 +4,11 @@ from .core import app
|
||||
# Start the flask server if run from terminal
|
||||
if __name__ == "__main__":
|
||||
|
||||
@app.route('/game')
|
||||
@app.route('/')
|
||||
def get_root():
|
||||
return app.send_static_file('index.html')
|
||||
|
||||
@app.route('/game/<path:path>')
|
||||
@app.route('/<path:path>')
|
||||
def get_path(path):
|
||||
fpath = f"{app.static_folder}/{path}"
|
||||
|
@ -4,8 +4,8 @@
|
||||
# _/ __/ / /_/ /___/ /_/ / _/ /__/ /_/ // /_/ // __/
|
||||
# /_/ ___\__,_//____/ /_/ __/_/ \____//_____/_\___/
|
||||
|
||||
# Schnitzeljagd time tracker
|
||||
# Corona time tracker
|
||||
|
||||
VERSION = (0, 1, 0)
|
||||
VERSION = (1, 1, 0)
|
||||
|
||||
__version__ = '.'.join(map(str, VERSION))
|
2
setup.py
2
setup.py
@ -7,7 +7,7 @@ with open("LICENSE.md", "r") as f:
|
||||
license_text = f.read()
|
||||
|
||||
st.setup(
|
||||
name="schnitzeljagd",
|
||||
name="schnitzeljagt",
|
||||
version="0.1.0",
|
||||
author="Oskar @ FaSTTUBe",
|
||||
author_email="o.winkels@fasttube.de",
|
||||
|
@ -33,9 +33,9 @@
|
||||
In the former case: Yay it works! In the latter you should
|
||||
probably contact an admin or a dev nearby :(<br><br>
|
||||
Here are a few links for testing:<br>
|
||||
<a href="/game/view">View Data</a>,
|
||||
<a href="/game/QRgen">Door Sign Generator</a>,
|
||||
<a href="/game/?game=schnitzeljagd&checkpoint=42">Test Checkpoint</a>,
|
||||
<a href="/view">View Data</a>,
|
||||
<a href="/QRgen">Door Sign Generator</a>,
|
||||
<a href="/?game=schnitzeljagd&checkpoint=42">Test Checkpoint</a>,
|
||||
<br><br>
|
||||
© 2025 made by <a target="_blank" href="mailto:o.winkels@fasttube.de">Oskar</a>
|
||||
for <a target="_blank" href="//fasttube.de">FaSTTUBe</a>.<br>
|
||||
|
@ -51,7 +51,7 @@ function sendMainData() {
|
||||
'name': name
|
||||
}
|
||||
|
||||
post("/game/checkin", payload)
|
||||
post("/checkin", payload)
|
||||
|
||||
}
|
||||
|
||||
|
@ -236,7 +236,7 @@ function loadData() {
|
||||
headers: headers
|
||||
}
|
||||
|
||||
fetch('/game/data', fetchopts)
|
||||
fetch('/data', fetchopts)
|
||||
.then(res => {
|
||||
if (Math.floor(res.status / 100) == 2)
|
||||
return res.json()
|
||||
|
Loading…
x
Reference in New Issue
Block a user