diff --git a/backend/dev-docker/Dockerfile b/backend/dev-docker/Dockerfile index aa486990..f16eac91 100644 --- a/backend/dev-docker/Dockerfile +++ b/backend/dev-docker/Dockerfile @@ -3,9 +3,6 @@ FROM python:3.8-slim # https://stackoverflow.com/questions/58701233/docker-logs-erroneously-appears-empty-until-container-stops ENV PYTHONUNBUFFERED=1 -# Should be mounted from docker-compose-development.yml -RUN pip3 install -r /requirements.txt - WORKDIR /app RUN [ ! -d "/datastore" ] && mkdir /datastore diff --git a/backend/static/css/styles.css b/backend/static/css/styles.css index 8dfc9b6b..8f3c0dbf 100644 --- a/backend/static/css/styles.css +++ b/backend/static/css/styles.css @@ -237,3 +237,10 @@ body:after, body:before { user-select:none; -o-user-select:none; } + +footer { + padding: 10px; + background: #fff; + color: #444; + text-align: center; +} \ No newline at end of file diff --git a/backend/store.py b/backend/store.py index 93d61836..d36f4b25 100644 --- a/backend/store.py +++ b/backend/store.py @@ -25,7 +25,7 @@ class ChangeDetectionStore: self.__data = { 'note': "Hello! If you change this file manually, please be sure to restart your changedetection.io instance!", 'watching': {}, - 'tag': "0.25", + 'tag': '0.261', 'settings': { 'headers': { 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36', diff --git a/backend/templates/base.html b/backend/templates/base.html index a965de32..e5d258c7 100644 --- a/backend/templates/base.html +++ b/backend/templates/base.html @@ -20,6 +20,8 @@ ChangeDetection.io {% if current_diff_url %} {{ current_diff_url }} + {% else %} + Version {{ version }} {% endif %}