From f60c078805b80ad4c330eae444cce283c3d029c3 Mon Sep 17 00:00:00 2001 From: Todd Naugle Date: Fri, 11 Mar 2022 12:12:12 -0600 Subject: [PATCH] Fix Windows installer welcome page for Mixbus products. --- tools/x-win/package.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/x-win/package.sh b/tools/x-win/package.sh index c124f36135..1d99904ffc 100755 --- a/tools/x-win/package.sh +++ b/tools/x-win/package.sh @@ -46,7 +46,7 @@ while [ $# -gt 0 ] ; do PROGRAM_NAME=Mixbus PROGRAM_KEY=Mixbus PRODUCT_NAME=Mixbus - MANUAL_NAME="mixbus${major_version}-live-manual" + MANUAL_NAME="mixbus-live-manual" shift ;; --mixbus32c) MIXBUS=1 @@ -57,7 +57,7 @@ while [ $# -gt 0 ] ; do PROGRAM_KEY=Mixbus32C PROGRAM_NAME=Mixbus32C-${PROGRAM_VERSION} PROGRAM_VERSION="" - MANUAL_NAME="mixbus32c-${major_version}-live-manual" + MANUAL_NAME="mixbus32c-live-manual" shift ;; --chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;; esac @@ -422,10 +422,10 @@ if test -n "$MIXBUS"; then # TODO: proper welcome/finish text. cat >> $NSISFILE << EOF -!define MUI_FINISHPAGE_TITLE "Welcome to Harrison Mixbus" -!define MUI_FINISHPAGE_TEXT "Thanks for your purchase of Mixbus!\$\\r\$\\nYou will find the Mixbus application in the Start Menu (or the All Apps panel for Windows 8) \$\\r\$\\nClick the link below to view the Mixbus manual, and learn ways to get involved with the Mixbus community." -!define MUI_FINISHPAGE_LINK "Mixbus Manual" -!define MUI_FINISHPAGE_LINK_LOCATION "http://www.harrisonconsoles.com/mixbus/${MANUAL_NAME}/" +!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_NOREBOOTSUPPORT EOF