diff --git a/client/FlashClient.bat b/client/FlashClient.bat index b89d463..fd4c555 100644 --- a/client/FlashClient.bat +++ b/client/FlashClient.bat @@ -8,14 +8,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.8/cache_windows.zip' + $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8.1/cache_windows.zip' $filename = 'cache_windows.zip' - $FULL_SIZE = 45118579 + $FULL_SIZE = 49374372 } else { $cache = $HOME + '/Library/Application Support/Ninja Kiwi Archive/Cache' - $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8/cache_osx.zip' + $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8.1/cache_osx.zip' $filename = 'cache_osx.zip' - $FULL_SIZE = 44935496 + $FULL_SIZE = 49192320 } [int]$FULL_MB = $FULL_SIZE / 0.1MB $FULL_MB_FLOAT = $FULL_MB / 10 @@ -43,7 +43,7 @@ if (Test-Path -Path $cache) { "Archive cache cleared!" try { "Checking version..." - $N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.8.txt',$cache + '/test.txt') + $N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.8.1.txt',$cache + '/test.txt') Remove-Item $cache'/test.txt' "Version check successful!" } catch { diff --git a/client/FlashClient.ps1 b/client/FlashClient.ps1 index 308b980..8bae538 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.8/cache_windows.zip' + $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8.1/cache_windows.zip' $filename = 'cache_windows.zip' - $FULL_SIZE = 45118579 + $FULL_SIZE = 49374372 } else { $cache = $HOME + '/Library/Application Support/Ninja Kiwi Archive/Cache' - $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8/cache_osx.zip' + $zippath = 'https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8.1/cache_osx.zip' $filename = 'cache_osx.zip' - $FULL_SIZE = 44935496 + $FULL_SIZE = 49192320 } [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.8.txt',$cache + '/test.txt') + $N.DownloadFile('https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.8.1.txt',$cache + '/test.txt') Remove-Item $cache'/test.txt' "Version check successful!" } catch { diff --git a/client/FlashClient.sh b/client/FlashClient.sh index 80d92ee..d95ba9f 100644 --- a/client/FlashClient.sh +++ b/client/FlashClient.sh @@ -1,8 +1,8 @@ #!/bin/sh -curl https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.8.txt > /dev/null && \ +curl https://github.com/GlennnM/FlashPrivateServer/raw/main/v3.8.1.txt > /dev/null && \ cd "$HOME/Library/Application Support/Ninja Kiwi Archive/Cache" && \ rm -r * && \ -curl -sS -L https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8/cache_osx.zip > file.zip && \ +curl -sS -L https://github.com/GlennnM/FlashPrivateServer/releases/download/v3.8.1/cache_osx.zip > file.zip && \ unzip file.zip && \ rm file.zip && \ echo "Installation successful!" diff --git a/v3.8.txt b/v3.8.1.txt similarity index 100% rename from v3.8.txt rename to v3.8.1.txt