Adobe Illustrator CC 2015
Informations
Creator | Message |
---|---|
josagrc
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionThis is a modification of the Adobe Photoshop CS6 script. It works with Illustrator CC 2015. NOTE: This application does NOT work on Intel graphics (at least not that I have seen). Nvidia and AMD graphics should be used. Source code#!/bin/bash # Date : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script # # CHANGELOG # [Jose A Garcia] (2017-05-08) # First script. # [Dadu042] (2019-12-30) # Wine version 2.13 -> 3.0.3 # Force x86 architecture. # Add shortcut category. # Add POL_RequiredVersion [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="3.0.3" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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:27 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -5,13 +5,21 @@ # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script - +# +# CHANGELOG +# [Jose A Garcia] (2017-05-08) +# First script. +# [Dadu042] (2019-12-30) +# Wine version 2.13 -> 3.0.3 +# Force x86 architecture. +# Add shortcut category. +# Add POL_RequiredVersion [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" -WINEVERSION="2.13" +WINEVERSION="3.0.3" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" @@ -26,17 +34,20 @@ # 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 +# Dependencies POL_Call POL_Install_AdobeAir POL_Call POL_Install_atmlib POL_Call POL_Install_gdiplus @@ -59,7 +70,7 @@ POL_Wine_WaitExit "$TITLE" # Create Shortcuts -POL_Shortcut "illustrator.exe" "$TITLE" +POL_Shortcut "illustrator.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 : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script # # CHANGELOG # [Jose A Garcia] (2017-05-08) # First script. # [Dadu042] (2019-12-30) # Wine version 2.13 -> 3.0.3 # Force x86 architecture. # Add shortcut category. # Add POL_RequiredVersion [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="3.0.3" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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 RepliesMonday 11 May 2020 at 20:36
Thursday 11 June 2020 at 22:23
|
josagrc | Saturday 5 August 2017 at 19:32 |
josagrc
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,67 @@ +#!/bin/bash +# Date : (08-05-2017) +# Distribution used to test : Ubuntu 17.04 64-bit +# Author : Jose A Garcia +# Licence : GPLv3 +# PlayOnLinux : 4.2.11 +# Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="IllustratorCC2015" +WINEVERSION="2.13" +TITLE="Adobe Illustrator CC 2015" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Jose A Garcia" + +#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 "illustrator.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 : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="2.13" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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 Replies |
josagrc | Saturday 5 August 2017 at 19:29 |
josagrc
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,67 @@ +#!/bin/bash +# Date : (08-05-2017) +# Distribution used to test : Ubuntu 17.04 64-bit +# Author : Jose A Garcia +# Licence : GPLv3 +# PlayOnLinux : 4.2.11 +# Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="IllustratorCC2015" +WINEVERSION="2.13-staging" +TITLE="Adobe Illustrator CC 2015" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Jose A Garcia" + +#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 "illustrator.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 : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="2.13-staging" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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:23
|
josagrc | Saturday 5 August 2017 at 15:46 |
josagrc
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,67 @@ +#!/bin/bash +# Date : (08-05-2017) +# Distribution used to test : Ubuntu 17.04 64-bit +# Author : Jose A Garcia +# Licence : GPLv3 +# PlayOnLinux : 4.2.11 +# Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="IllustratorCC2015" +WINEVERSION="2.0-staging" +TITLE="Adobe Illustrator CC 2015" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Jose A Garcia" + +#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 "illustrator.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 : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="2.0-staging" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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 Replies |
josagrc | Saturday 5 August 2017 at 15:42 |
josagrc
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,67 @@ +#!/bin/bash +# Date : (08-05-2017) +# Distribution used to test : Ubuntu 17.04 64-bit +# Author : Jose A Garcia +# Licence : GPLv3 +# PlayOnLinux : 4.2.11 +# Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="IllustratorCC2015" +WINEVERSION="2.0.2-staging" +TITLE="Adobe Illustrator CC 2015" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Jose A Garcia" + +#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 "illustrator.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 : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="2.0.2-staging" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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 Replies |
josagrc | Saturday 5 August 2017 at 15:38 |
josagrc
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,67 @@ +#!/bin/bash +# Date : (08-05-2017) +# Distribution used to test : Ubuntu 17.04 64-bit +# Author : Jose A Garcia +# Licence : GPLv3 +# PlayOnLinux : 4.2.11 +# Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="IllustratorCC2015" +WINEVERSION="2.14-staging" +TITLE="Adobe Illustrator CC 2015" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Jose A Garcia" + +#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 "illustrator.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 : (08-05-2017) # Distribution used to test : Ubuntu 17.04 64-bit # Author : Jose A Garcia # Licence : GPLv3 # PlayOnLinux : 4.2.11 # Comment : Slightly modified code from RoninDusette`s Adobe Photoshop CS6 script [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="IllustratorCC2015" WINEVERSION="2.14-staging" TITLE="Adobe Illustrator CC 2015" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Jose A Garcia" #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 "illustrator.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 Replies |
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