Adobe Illustrator CC 2015
Informations
Créateur | Messages |
---|---|
josagrc
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 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. Code source#!/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:
ContribuerMembre | Messages |
Dadu042 | Mardi 31 Décembre 2019 à 12:27 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe 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" Nouveau code source#!/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 RéponsesLundi 11 Mai 2020 à 20:36
Jeudi 11 Juin 2020 à 22:23
|
josagrc | Samedi 5 Aoüt 2017 à 19:32 |
josagrc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
josagrc | Samedi 5 Aoüt 2017 à 19:29 |
josagrc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 RéponsesMardi 31 Décembre 2019 à 12:23
|
josagrc | Samedi 5 Aoüt 2017 à 15:46 |
josagrc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
josagrc | Samedi 5 Aoüt 2017 à 15:42 |
josagrc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
josagrc | Samedi 5 Aoüt 2017 à 15:38 |
josagrc
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
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