From 7fb0169d505345d294fcd0a85ecc65f2f079d23b Mon Sep 17 00:00:00 2001 From: GlennnM <77253453+GlennnM@users.noreply.github.com> Date: Thu, 21 Dec 2023 00:36:52 -0500 Subject: [PATCH] 3.6 release --- client/FlashClient.ps1 | 10 +++++----- v3.5.txt => v3.6.txt | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename v3.5.txt => v3.6.txt (100%) diff --git a/client/FlashClient.ps1 b/client/FlashClient.ps1 index f7a0cb9..7b80cf0 100644 --- a/client/FlashClient.ps1 +++ b/client/FlashClient.ps1 @@ -1,14 +1,14 @@ "Checking for Ninja Kiwi Archive..." if ($IsWindows -or $ENV:OS) { $cache = $env:APPDATA + '\Ninja Kiwi Archive\Cache' - $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.5/cache_windows.zip' + $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.6/cache_windows.zip' $filename = 'cache_windows.zip' - $FULL_SIZE = 45228696 + $FULL_SIZE = 45223686 } else { $cache = $HOME + '/Library/Application Support/Ninja Kiwi Archive/Cache' - $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.5/cache_osx.zip' + $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.6/cache_osx.zip' $filename = 'cache_osx.zip' - $FULL_SIZE = 45045483 + $FULL_SIZE = 45040574 } [int]$FULL_MB = $FULL_SIZE / 0.1MB $FULL_MB_FLOAT = $FULL_MB / 10 @@ -36,7 +36,7 @@ if (Test-Path -Path $cache) { "Archive cache cleared!" try { "Checking version..." - $N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.5.txt',$cache + '/test.txt') + $N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.6.txt',$cache + '/test.txt') Remove-Item $cache'/test.txt' "Version check successful!" } catch { diff --git a/v3.5.txt b/v3.6.txt similarity index 100% rename from v3.5.txt rename to v3.6.txt