13
0

Merge branch 'ardour'

This commit is contained in:
Robin Gareus 2024-06-06 15:26:21 +02:00
commit aa99474823
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -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