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