From 85b335ad92a61a23bf2bef6c1ca07e2dfd4c120f Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Tue, 10 Feb 2026 08:17:00 +0100 Subject: [PATCH 1/3] submodule dependency should use https and not git protocol --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index c88ea2d..ebaa3b1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "uikit"] path = uikit - url = git@github.com:uikit/uikit.git + url = https://github.com/uikit/uikit.git From c57f3105859cf6a86d660a62eb5b676f96cde794 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Tue, 10 Feb 2026 08:17:42 +0100 Subject: [PATCH 2/3] update the update script --- update-uikit.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/update-uikit.sh b/update-uikit.sh index 624768d..0cc9449 100755 --- a/update-uikit.sh +++ b/update-uikit.sh @@ -7,7 +7,7 @@ cd uikit git checkout main git pull origin main -latest_tag=$(git describe --tags --abbrev=0) +latest_tag=$(awk -F'"' '/"version":/ {print $4}' package.json) cd .. git add uikit @@ -15,4 +15,7 @@ git add uikit old_version=$(grep -oP "uikit@(\d+\.\d+\.\d+)" templates/base.html | head -n 1) new_version="uikit@${latest_tag#v}" +echo "previous version: ${old_version}" +echo "new version: ${new_version}" + sed -i "s/${old_version}/${new_version}/g" templates/base.html From 306e5b8a6ca7858d7c5c63a3fdde1b63d41de609 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Tue, 10 Feb 2026 08:18:04 +0100 Subject: [PATCH 3/3] update uikit --- templates/base.html | 6 +++--- uikit | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/base.html b/templates/base.html index 141aa37..924af86 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,9 +8,9 @@ - - - + + + diff --git a/uikit b/uikit index c7c954e..0e68716 160000 --- a/uikit +++ b/uikit @@ -1 +1 @@ -Subproject commit c7c954e144396d366a9234349d7fa5249bc670a2 +Subproject commit 0e687165b6f15d28a8a7488ad3a2a232d6e36f10