Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,17 @@ wget https://github.com/jumpserver/VideoPlayer/releases/download/v${VIDEO_PLAYER
wget https://github.com/jumpserver/VideoPlayer/releases/download/v${VIDEO_PLAYER_VERSION}/JumpServerVideoPlayer-${VIDEO_PLAYER_VERSION}.exe
wget https://github.com/PowerShell/Win32-OpenSSH/releases/download/${OPENSSH_VERSION}p1-Beta/OpenSSH-Win64-${OPENSSH_VERSION}.msi

clients=("win-${CLIENT_VERSION}-x64.exe" "win-${CLIENT_VERSION}-x64.msi" "mac-${CLIENT_VERSION}-x64.dmg" "mac-${CLIENT_VERSION}-arm64.dmg"
"linux-${CLIENT_VERSION}-amd64.deb" "linux-${CLIENT_VERSION}-arm64.deb")
clients=(
"JumpServerClient_${CLIENT_VERSION}_x64_en-US.msi"
"JumpServerClient_${CLIENT_VERSION}_x64-setup.exe"
"JumpServerClient_${CLIENT_VERSION}_aarch64.dmg"
"JumpServerClient_${CLIENT_VERSION}_x64.dmg"
"JumpServerClient_${CLIENT_VERSION}_amd64.AppImage"
"JumpServerClient_${CLIENT_VERSION}_amd64.deb"
"JumpServerClient-${CLIENT_VERSION}-1.x86_64.rpm"
)
for client in "${clients[@]}"; do
wget "https://github.com/jumpserver/clients/releases/download/${CLIENT_VERSION}/JumpServer-Client-Installer-${client}"
wget "https://github.com/jumpserver/clients/releases/download/v${CLIENT_VERSION}/${client}"
done

for arch in x64 arm64; do
Expand Down
2 changes: 1 addition & 1 deletion versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ OPENSSH_VERSION=v9.4.0.0
MONGOSH_VERSION=2.2.12
TINKER_VERSION=v0.2.2
VIDEO_PLAYER_VERSION=0.6.0
CLIENT_VERSION=v3.0.7
CLIENT_VERSION=4.0.0
Loading