From d203c6b2ba1172202e36b1062e67b1addd87ef59 Mon Sep 17 00:00:00 2001 From: Yuuki Chan Date: Wed, 29 May 2024 22:43:26 +0900 Subject: [PATCH] Changed Updater URL. --- Globals.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Globals.ps1 b/Globals.ps1 index 830086a..b2b7b39 100644 --- a/Globals.ps1 +++ b/Globals.ps1 @@ -14,7 +14,7 @@ Add-Type -AssemblyName System.IO.Compression.FileSystem Add-Type -AssemblyName System.Windows.Forms -[XML]$doc = (New-Object System.Net.WebClient).DownloadString("http://update.yuuki-chan.xyz/Updater.xml") +[XML]$doc = (New-Object System.Net.WebClient).DownloadString("https://update.raiza.dev/Updater.xml") [string]$version1 = "2.0.1.0" [string]$version2 = $doc.Updater.AudioSplitterV2.Version [string]$downloadUrl = $doc.Updater.AudioSplitterV2.Url @@ -137,7 +137,7 @@ function about $linkLabel8.AutoSize = $true $linkLabel8.Location = New-Object System.Drawing.Point(152, 502) $linkLabel8.Add_Click({ - [System.Diagnostics.Process]::Start("https://yuuki-chan.xyz/") + [System.Diagnostics.Process]::Start("https://raiza.dev/") }) $button1 = New-Object System.Windows.Forms.Button @@ -152,7 +152,7 @@ function about $about.Text = "About" $about.MaximizeBox = $false $about.MinimizeBox = $false - $about.Size = New-Object System.Drawing.Size(592, 623) + $about.Size = New-Object System.Drawing.Size(600, 623) # 592 $about.FormBorderStyle = [System.Windows.Forms.FormBorderStyle]::FixedSingle $about.Icon = [System.Drawing.Icon]::ExtractAssociatedIcon(".\res\AS.ico") $about.Controls.Add($pictureBox1)