Version 5.12.16

This commit is contained in:
2025-12-20 02:23:26 -06:00
parent 64a80661e8
commit 4a5fc4dd05

View File

@@ -59,11 +59,13 @@ if ($oldCommit -eq $newCommit) {
Write-Host ">> Commit detectado." Write-Host ">> Commit detectado."
# 6. GESTIÓN DE TAGS (VISUAL TOPMOST) # 6. GESTIÓN DE TAGS (VISUAL TOPMOST)
Write-Host "git ls-remote --tags origin $tagName"
$remoteTagInfo = git ls-remote --tags origin $tagName $remoteTagInfo = git ls-remote --tags origin $tagName
if ($remoteTagInfo) { if ($remoteTagInfo) {
# --- TRUCO PARA QUE LA VENTANA SALGA AL FRENTE --- # --- TRUCO PARA QUE LA VENTANA SALGA AL FRENTE ---
# Creamos un formulario invisible que esté "Siempre Visible" (TopMost) # Creamos un formulario invisible que esté "Siempre Visible" (TopMost)
Write-Host "Recibimos remoteTagInfo"
$topForm = New-Object System.Windows.Forms.Form $topForm = New-Object System.Windows.Forms.Form
$topForm.TopMost = $true $topForm.TopMost = $true
$topForm.Opacity = 0 # Invisible $topForm.Opacity = 0 # Invisible