From e7397a6d0d92ffa7ba1d58cb3dc176638e586304 Mon Sep 17 00:00:00 2001 From: Josako Date: Tue, 23 Sep 2025 07:00:26 +0200 Subject: [PATCH 1/2] - Changelog update for 3.1.2-beta --- content/changelog/1.0/1.0.0.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/content/changelog/1.0/1.0.0.md b/content/changelog/1.0/1.0.0.md index 752c988..16d494a 100644 --- a/content/changelog/1.0/1.0.0.md +++ b/content/changelog/1.0/1.0.0.md @@ -5,6 +5,11 @@ All notable changes to EveAI will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.2-beta] + +### Changed +- Several improvements to the mobile version of the chat client + ## [3.1.1-alfa] ### Fixed From 66433f19b3993ee7b059d17e2ac63e4961a1877a Mon Sep 17 00:00:00 2001 From: Josako Date: Tue, 23 Sep 2025 10:13:52 +0200 Subject: [PATCH 2/2] - Adaptation of push_to_scaleway.sh script --- scaleway/push_to_scaleway.sh | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/scaleway/push_to_scaleway.sh b/scaleway/push_to_scaleway.sh index 23acaa1..9c895b7 100755 --- a/scaleway/push_to_scaleway.sh +++ b/scaleway/push_to_scaleway.sh @@ -143,16 +143,6 @@ fi echo "🔍 Services to process: ${SERVICE_ARRAY[*]}" -# Function to check if image exists locally -check_local_image_exists() { - local image_name="$1" - if podman image exists "$image_name" 2>/dev/null; then - return 0 - else - return 1 - fi -} - # Function to authenticate with Scaleway registry authenticate_scaleway() { echo "🔐 Authenticating with Scaleway registry..." @@ -213,18 +203,10 @@ for SERVICE in "${SERVICE_ARRAY[@]}"; do continue fi - # Check if local version image exists - if ! check_local_image_exists "$LOCAL_VERSION_IMAGE"; then - echo " ❌ Local version image not found: $LOCAL_VERSION_IMAGE" - echo " 💡 Run tag_registry_version.sh first to create version tags" - FAILED_SERVICES+=("$SERVICE") - continue - fi - - # Pull local version image to ensure we have it - echo " 📥 Pulling local version image..." + echo " 📥 Ensuring image is available (pulling from local registry)..." if ! podman pull "$LOCAL_VERSION_IMAGE"; then - echo " ❌ Failed to pull $LOCAL_VERSION_IMAGE" + echo " ❌ Image not found or not accessible in local registry: $LOCAL_VERSION_IMAGE" + echo " 💡 Controleer of de tag bestaat en of je bent ingelogd: podman login $LOCAL_REGISTRY" FAILED_SERVICES+=("$SERVICE") continue fi