diff --git a/tools/x-win/package.sh b/tools/x-win/package.sh index 4efb01d166..715bac1d01 100755 --- a/tools/x-win/package.sh +++ b/tools/x-win/package.sh @@ -49,7 +49,7 @@ while [ $# -gt 0 ] ; do PROGRAM_NAME=Mixbus PROGRAM_KEY=Mixbus PRODUCT_NAME=Mixbus - MANUAL_NAME="mixbus-live-manual" + MANUAL_URL="https://rsrc.harrisonconsoles.com/mixbus/mixbus-live-manual/" shift ;; --livetrax) LIVETRAX=1 ; @@ -59,6 +59,7 @@ while [ $# -gt 0 ] ; do PROGRAM_NAME=LiveTrax PROGRAM_KEY=LiveTrax PRODUCT_NAME=LiveTrax + MANUAL_URL="https://rsrc.harrisonconsoles.com/livetrax/livetrax-live-manual/" shift ;; --chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;; esac @@ -464,14 +465,14 @@ InstallDirRegKey HKLM "Software\\${PRODUCT_NAME}\\${PRODUCT_ID}\\$WARCH" "Instal EOF -if test -n "$MIXBUS"; then +if test -n "$MIXBUS" -o -n "$LIVETRAX" ; then # TODO: proper welcome/finish text. cat >> $NSISFILE << EOF !define MUI_FINISHPAGE_TITLE "Welcome to Harrison ${PROGRAM_NAME}" !define MUI_FINISHPAGE_TEXT "Thanks for your purchase of ${PROGRAM_NAME}!\$\\r\$\\nYou will find the ${PROGRAM_NAME} application in the Start Menu (or the All Apps panel for Windows 8) \$\\r\$\\nClick the link below to view the ${PROGRAM_NAME} manual, and learn ways to get involved with the Mixbus community." !define MUI_FINISHPAGE_LINK "${PROGRAM_NAME} Manual" -!define MUI_FINISHPAGE_LINK_LOCATION "https://rsrc.harrisonconsoles.com/mixbus/${MANUAL_NAME}/" +!define MUI_FINISHPAGE_LINK_LOCATION "${MANUAL_URL}" !define MUI_FINISHPAGE_NOREBOOTSUPPORT EOF