Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missed apps to package installer #1689

Merged
merged 2 commits into from
Dec 11, 2023
Merged
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
2 changes: 2 additions & 0 deletions scripts/mac_installer/create_installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ function build_installer() {
mv ./skywire-visor ${installer_package_dir}/Contents/MacOS/skywire-visor
mv ./skywire-cli ${installer_package_dir}/Contents/MacOS/skywire-cli
mv ./apps/vpn-client ${installer_package_dir}/Contents/MacOS/apps/vpn-client
mv ./apps/skysocks-client ${installer_package_dir}/Contents/MacOS/apps/skysocks-client
mv ./apps/skychat ${installer_package_dir}/Contents/MacOS/apps/skychat
cp ./dmsghttp-config.json ${installer_package_dir}/Contents/MacOS/dmsghttp-config.json

cat <<EOF >${installer_package_dir}/Contents/MacOS/Skywire
Expand Down
3 changes: 2 additions & 1 deletion scripts/win_installer/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" UpgradeCode="cd7955bc-304e-470f-9c24-eb9f429a8085"
Name="Skywire"
Version="1.0.0"
Version="1.3.14"
Manufacturer="Skycoin"
Language="1033">

Expand Down Expand Up @@ -42,6 +42,7 @@
<Directory Id="APPS" Name="apps">
<Component Id="AppsFiles" Guid="d6263d6c-acea-49a0-bd9b-610f8a8bce82">
<File Id="VPN_CLIENT" Source=".\build\apps\vpn-client.exe"/>
<File Id="SKYSOCKS_CLIENT" Source=".\build\apps\skysocks-client.exe"/>
<RemoveFolder Id="APPS" On="uninstall"/>
</Component>
</Directory>
Expand Down
1 change: 1 addition & 0 deletions scripts/win_installer/script.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ function BuildInstaller($arch)
Move-Item ..\..\archive\skywire-visor.exe .\build\skywire-visor.exe
Move-Item ..\..\archive\skywire-cli.exe .\build\skywire-cli.exe
Move-Item ..\..\archive\apps\vpn-client.exe .\build\apps\vpn-client.exe
Move-Item ..\..\archive\apps\skysocks-client.exe .\build\apps\skysocks-client.exe
Copy-Item ..\..\archive\dmsghttp-config.json .\build\dmsghttp-config.json
Copy-Item skywire.bat .\build\skywire.bat
New-Item new.update > $null
Expand Down
Loading