From 8458a5b66f5722e2314ee5bdfa6e19342ce340d4 Mon Sep 17 00:00:00 2001 From: Oskar Date: Sat, 30 Aug 2025 11:52:13 +0200 Subject: [PATCH] Fix typo --- {schnitzeljagt => schnitzeljagd}/__init__.py | 0 {schnitzeljagt => schnitzeljagd}/__main__.py | 4 ++-- {schnitzeljagt => schnitzeljagd}/__version__.py | 4 ++-- {schnitzeljagt => schnitzeljagd}/config.py | 0 {schnitzeljagt => schnitzeljagd}/core.py | 0 setup.py | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename {schnitzeljagt => schnitzeljagd}/__init__.py (100%) rename {schnitzeljagt => schnitzeljagd}/__main__.py (93%) rename {schnitzeljagt => schnitzeljagd}/__version__.py (86%) rename {schnitzeljagt => schnitzeljagd}/config.py (100%) rename {schnitzeljagt => schnitzeljagd}/core.py (100%) diff --git a/schnitzeljagt/__init__.py b/schnitzeljagd/__init__.py similarity index 100% rename from schnitzeljagt/__init__.py rename to schnitzeljagd/__init__.py diff --git a/schnitzeljagt/__main__.py b/schnitzeljagd/__main__.py similarity index 93% rename from schnitzeljagt/__main__.py rename to schnitzeljagd/__main__.py index a5ac978..7bf93d8 100644 --- a/schnitzeljagt/__main__.py +++ b/schnitzeljagd/__main__.py @@ -4,11 +4,11 @@ from .core import app # Start the flask server if run from terminal if __name__ == "__main__": - @app.route('/') + @app.route('/game') def get_root(): return app.send_static_file('index.html') - @app.route('/') + @app.route('/game/') def get_path(path): fpath = f"{app.static_folder}/{path}" diff --git a/schnitzeljagt/__version__.py b/schnitzeljagd/__version__.py similarity index 86% rename from schnitzeljagt/__version__.py rename to schnitzeljagd/__version__.py index bfc892a..9367b13 100644 --- a/schnitzeljagt/__version__.py +++ b/schnitzeljagd/__version__.py @@ -4,8 +4,8 @@ # _/ __/ / /_/ /___/ /_/ / _/ /__/ /_/ // /_/ // __/ # /_/ ___\__,_//____/ /_/ __/_/ \____//_____/_\___/ -# Corona time tracker +# Schnitzeljagd time tracker -VERSION = (1, 1, 0) +VERSION = (0, 1, 0) __version__ = '.'.join(map(str, VERSION)) diff --git a/schnitzeljagt/config.py b/schnitzeljagd/config.py similarity index 100% rename from schnitzeljagt/config.py rename to schnitzeljagd/config.py diff --git a/schnitzeljagt/core.py b/schnitzeljagd/core.py similarity index 100% rename from schnitzeljagt/core.py rename to schnitzeljagd/core.py diff --git a/setup.py b/setup.py index 8da6d1d..0740b35 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("LICENSE.md", "r") as f: license_text = f.read() st.setup( - name="schnitzeljagt", + name="schnitzeljagd", version="0.1.0", author="Oskar @ FaSTTUBe", author_email="o.winkels@fasttube.de",