From 004199111e7ca873891762314872f4282393c4d6 Mon Sep 17 00:00:00 2001 From: Jose Alberto Guerra Ugalde Date: Wed, 25 Feb 2026 22:30:10 -0600 Subject: [PATCH] VERSION 6.02.20 GPS --- B4A/INTMEX.b4a | 2 +- B4A/_git_tag.ps1 | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/B4A/INTMEX.b4a b/B4A/INTMEX.b4a index 60102b6..48b6feb 100644 --- a/B4A/INTMEX.b4a +++ b/B4A/INTMEX.b4a @@ -164,7 +164,7 @@ Version=12.8 #Region Project Attributes #ApplicationLabel: Intmex #VersionCode: 1 - #VersionName: 5.12.15_GPS + #VersionName: 6.02.20 GPS 'SupportedOrientations possible values: unspecified, landscape or portrait. #SupportedOrientations: portrait #CanInstallToExternalStorage: False diff --git a/B4A/_git_tag.ps1 b/B4A/_git_tag.ps1 index 95c3a75..57f2d3c 100644 --- a/B4A/_git_tag.ps1 +++ b/B4A/_git_tag.ps1 @@ -27,7 +27,8 @@ if (-Not $versionLine) { return } $version = ($versionLine -split ":")[1].Trim() -$tagName = "v$version" +# Reemplaza cualquier espacio en blanco por un guion bajo solo para el tag +$tagName = "v$version".Replace(" ", "_") Set-Location $projectPath