diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index 27763fc..c441bf8 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -7,12 +7,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- - name: Build the Docker image
+ - uses: actions/checkout@v4
+ - name: Build the Docker image for temporary use only
+ if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
+ run: docker build . --file Dockerfile --tag tmp:latest
+ - name: Build the Docker image for tag release
+ if: startsWith(github.ref, 'refs/tags/')
run: docker build . --file Dockerfile --tag ${{ secrets.DOCKER_IMAGE_NAME }}:latest
- name: Docker Login
if: startsWith(github.ref, 'refs/tags/')
- uses: docker/login-action@v2
+ uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -33,4 +37,4 @@ jobs:
uses: WSE-research/docker-service-updater@v0.2.1
with:
updater_host: ${{ secrets.UPDATER_HOST }}
- api_key: ${{ secrets.API_KEY }}
\ No newline at end of file
+ api_key: ${{ secrets.API_KEY }}
diff --git a/image-to-ascii-art-converter-web-ui.py b/image-to-ascii-art-converter-web-ui.py
index bf95e2b..627bf5f 100644
--- a/image-to-ascii-art-converter-web-ui.py
+++ b/image-to-ascii-art-converter-web-ui.py
@@ -651,7 +651,7 @@ def save_current_configuration(data, absolute_filename):
st.markdown("""
---
-Brought to you by the [ WSE research group](http://wse.technology/) at the [Leipzig University of Applied Sciences](https://www.htwk-leipzig.de/).
+Brought to you by the [ WSE research group](https://wse-research.org/?utm_source=image-to-ascii-art&utm_medium=footer) at the [Leipzig University of Applied Sciences](https://www.htwk-leipzig.de/).
See our [GitHub team page](http://wse.technology/) for more projects and tools.
""", unsafe_allow_html=True)
diff --git a/js/change_menu.js b/js/change_menu.js
index 85d7a43..d529d39 100644
--- a/js/change_menu.js
+++ b/js/change_menu.js
@@ -33,7 +33,7 @@ waitForElm('#MainMenu').then((elm) => {
if (parent.window.document.getElementById("WSElogo") == null) {
let new_logo = parent.window.document.getElementById("MainMenu").parentElement.appendChild(parent.window.document.createElement("span"));
new_logo.innerHTML = `
-
+
`;
diff --git a/requirements.txt b/requirements.txt
index 00bdfff..61efecf 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,8 +1,8 @@
-ansi2html==1.8.0
+ansi2html==1.9.1
ansitoimg==2023.1
ascii_magic==2.3.0
-lxml==4.9.2
-markdown==3.4.4
+lxml==4.9.4
+markdown==3.5.1
Pillow==9.4.0
python-decouple==3.8
Requests==2.31.0