You are here
Adobe Indesign CS 6
Informations
Creator | Message |
---|---|
josagrc
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 Description
THIS SHOULD ALSO WORK WITH THE ADOBE CC VERSION OF PHOTOSHOP. Source code#!/bin/bash # Date : (2014-10-20) # Distribution used to test : Arch Linux 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.8 # # CHANGELOG # [RoninDusette] (2014-10-20) # First script. # [Dadu042] (2019-12-30) # Wine "1.7.46-staging" -> 3.0.3 # Fixes. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IndesignCS6" WINEVERSION="3.0.3" TITLE="Adobe InDesign CS6" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2316 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Dependencies POL_Call POL_Install_AdobeAir POL_Call POL_Install_atmlib POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml3 POL_Call POL_Install_msxml6 POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" # Installation Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "indesign.exe" "$TITLE" "" "" "Graphics;" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Tuesday 31 December 2019 at 12:31 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -4,14 +4,20 @@ # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.8 - +# +# CHANGELOG +# [RoninDusette] (2014-10-20) +# First script. +# [Dadu042] (2019-12-30) +# Wine "1.7.46-staging" -> 3.0.3 +# Fixes. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IndesignCS6" -WINEVERSION="1.7.46-staging" -TITLE="Adobe Photoshop CS6" +WINEVERSION="3.0.3" +TITLE="Adobe InDesign CS6" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette" @@ -25,11 +31,14 @@ # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + +POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration @@ -58,7 +67,7 @@ POL_Wine_WaitExit "$TITLE" # Create Shortcuts -POL_Shortcut "indesign.exe" "$TITLE" +POL_Shortcut "indesign.exe" "$TITLE" "" "" "Graphics;" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" New source code#!/bin/bash # Date : (2014-10-20) # Distribution used to test : Arch Linux 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.8 # # CHANGELOG # [RoninDusette] (2014-10-20) # First script. # [Dadu042] (2019-12-30) # Wine "1.7.46-staging" -> 3.0.3 # Fixes. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IndesignCS6" WINEVERSION="3.0.3" TITLE="Adobe InDesign CS6" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2316 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.0.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Dependencies POL_Call POL_Install_AdobeAir POL_Call POL_Install_atmlib POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml3 POL_Call POL_Install_msxml6 POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" # Installation Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "indesign.exe" "$TITLE" "" "" "Graphics;" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
josagrc | Friday 4 August 2017 at 19:25 |
josagrc
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,66 @@ +#!/bin/bash +# Date : (2014-10-20) +# Distribution used to test : Arch Linux 64-bit +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.8 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="IndesignCS6" +WINEVERSION="1.7.46-staging" +TITLE="Adobe Photoshop CS6" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="RoninDusette" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_Init +POL_SetupWindow_SetID 2316 + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" +INSTALLER="$APP_ANSWER" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +#Dependencies +POL_Call POL_Install_AdobeAir +POL_Call POL_Install_atmlib +POL_Call POL_Install_gdiplus +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msxml6 +POL_Call POL_Install_vcrun2005 +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma2 +POL_Call POL_Install_FontsSmoothRGB + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" + + +# Installation +Set_OS "win7" +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "indesign.exe" "$TITLE" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2014-10-20) # Distribution used to test : Arch Linux 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.8 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IndesignCS6" WINEVERSION="1.7.46-staging" TITLE="Adobe Photoshop CS6" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2316 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Dependencies POL_Call POL_Install_AdobeAir POL_Call POL_Install_atmlib POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml3 POL_Call POL_Install_msxml6 POL_Call POL_Install_vcrun2005 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: If you get an error saying that the installation failed, wait at least 5 minutes before closing it. PlayOnLinux will finish the install, even though it crashed.')" "$TITLE" # Installation Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "indesign.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'NOTICE: Online updates and any 3D services do not work. If you want to update your install, you will need to download the update manually and install it in this virtual drive.')" "$TITLE" POL_SetupWindow_Close exit 0 RepliesTuesday 31 December 2019 at 12:28
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com