Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
fix discord link
Browse files Browse the repository at this point in the history
  • Loading branch information
OleksandrBlack committed Jun 24, 2022
1 parent 6b40564 commit eac567c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,12 @@ FunctionEnd
Function OpenFinishLink
${NSD_GetState} $TelegramCheckbox $0
${If} $0 <> 0
ExecShell "open" "https://t.me/itarmyofukraine2022"
ExecShell "open" "${telegram_link}"
${EndIf}

${NSD_GetState} $DiscordCheckbox $0
${If} $0 <> 0
ExecShell "open" "https://discord.gg/rWTNk3UR"
ExecShell "open" "${discord_link}"
${EndIf}
FunctionEnd

Expand Down
6 changes: 5 additions & 1 deletion options.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@

;Define name of the product
!define PRODUCT "UkITA Installer"
!define PRODUCT_VERSION "2.0.0"
!define PRODUCT_VERSION "2.0.1"
!define INSTALLER_NAME "ukita_installer"
!define UNINSTALLER_NAME "uninstall"

!define telegram_link "https://t.me/itarmyofukraine2022"

!define discord_link "https://discord.gg/fyK45psV"

BrandingText "${PRODUCT} ${PRODUCT_VERSION}"

!define MHDDOS_PROXY_SRC "https://github.com/porthole-ascend-cinnamon/mhddos_proxy.git"
Expand Down

0 comments on commit eac567c

Please sign in to comment.