Merge tag 'v3.1.2-beta' into develop

Tagging version v3.1.2-beta v3.1.2-beta
This commit is contained in:
Josako
2025-09-23 10:14:09 +02:00
2 changed files with 8 additions and 21 deletions

View File

@@ -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/), 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). 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] ## [3.1.1-alfa]
### Fixed ### Fixed

View File

@@ -143,16 +143,6 @@ fi
echo "🔍 Services to process: ${SERVICE_ARRAY[*]}" 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 # Function to authenticate with Scaleway registry
authenticate_scaleway() { authenticate_scaleway() {
echo "🔐 Authenticating with Scaleway registry..." echo "🔐 Authenticating with Scaleway registry..."
@@ -213,18 +203,10 @@ for SERVICE in "${SERVICE_ARRAY[@]}"; do
continue continue
fi fi
# Check if local version image exists echo " 📥 Ensuring image is available (pulling from local registry)..."
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..."
if ! podman pull "$LOCAL_VERSION_IMAGE"; then 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") FAILED_SERVICES+=("$SERVICE")
continue continue
fi fi