Adobe Creative Cloud
Informations
Créateur | Messages |
---|---|
corbindavenport
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience2 2 DescriptionThis is an installer for Adobe Creative Cloud (Wikipedia). Once installed, you can download Adobe applications through the Adobe Application Manager. This script can download the Creative Suite install file from Adobe's website, so you don't have to download the .exe file manually. A (free) Adobe ID is required to install additional applications. Most Adobe applications require a paid subscription. See also: AppDB.winehq.org (tests reports with Wine only).
List of apps available to download (as of October 2017): NOTE: Only Application Manager, Photoshop CC 2015, and Lightroom 5 have been extensively tested (2017).
Captures d'écranCode source#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 18.04 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # CHANGELOG: # [Corbin Davenport] (2017-10-03) # First script. Based on RoninDusette's script from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html # [Dadu042] (2019-10-28) # Wine 2.8-staging -> 3.0.3 (latest Wine version available with POL v4.2.12) # Set_OS winxp -> win7 # Changes in POL_SetupWindow_message # Warning: Installer (File Version: 4.0.1.188) does still fail to complete after 3%. # KNOWN ISSUES: # Wine x86 2.8-staging (2019), 3.21 and 4.0.2 and 4.15 (2019): Installer (Adobe Installation Manager) does crash at 3%. File Version: 4.0.1.188 (note: since the installer does crash, I have to use virustotal.com to see the file version). # Wine x86 3.0.3 (2019): Installer (Adobe Installation Manager) does stop after 3%, a error message appear showing 'Error 72'. https://helpx.adobe.com/creative-cloud/kb/Error-code-42-or-72-when-installing-or-updating-Creative-Cloud-desktop-app.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="3.0.3" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin_Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture # POL_System_SetArch "amd64" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_System_TmpCreate "AppManagerTmp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Manager will be installed and you finish logging in, come back to this setup window and click Next. This is because some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Lundi 28 Octobre 2019 à 10:21 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesSome improvements, however Warning: Installer (File Version: 4.0.1.188) does still fail to complete after 3%. Differences@@ -39,13 +39,16 @@ # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" -Set_OS "win7" -POL_System_TmpCreate "AppManagerTmp" # Determine Architecture # POL_System_SetArch "amd64" POL_System_SetArch "x86" + +POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "win7" + +POL_System_TmpCreate "AppManagerTmp" + # Install dependencies POL_Call POL_Install_atmlib Nouveau code source#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 18.04 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # CHANGELOG: # [Corbin Davenport] (2017-10-03) # First script. Based on RoninDusette's script from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html # [Dadu042] (2019-10-28) # Wine 2.8-staging -> 3.0.3 (latest Wine version available with POL v4.2.12) # Set_OS winxp -> win7 # Changes in POL_SetupWindow_message # Warning: Installer (File Version: 4.0.1.188) does still fail to complete after 3%. # KNOWN ISSUES: # Wine x86 2.8-staging (2019), 3.21 and 4.0.2 and 4.15 (2019): Installer (Adobe Installation Manager) does crash at 3%. File Version: 4.0.1.188 (note: since the installer does crash, I have to use virustotal.com to see the file version). # Wine x86 3.0.3 (2019): Installer (Adobe Installation Manager) does stop after 3%, a error message appear showing 'Error 72'. https://helpx.adobe.com/creative-cloud/kb/Error-code-42-or-72-when-installing-or-updating-Creative-Cloud-desktop-app.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="3.0.3" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin_Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" # Determine Architecture # POL_System_SetArch "amd64" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" POL_System_TmpCreate "AppManagerTmp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Manager will be installed and you finish logging in, come back to this setup window and click Next. This is because some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMardi 19 Novembre 2019 à 14:46
Mardi 19 Novembre 2019 à 19:36
Vendredi 8 Mai 2020 à 17:13
Mardi 28 Décembre 2021 à 12:49
Edité par Dadu042 |
Dadu042 | Lundi 28 Octobre 2019 à 9:56 |
Dadu042
|
MessagesInstaller (Adobe Installation Program) does crash at 3%. File Version: 4.0.1.188 (note: since the installer does crash, I have to use virustotal.com to see the file version).
I switch this script page to 'testing'. RéponsesEdité par Dadu042 |
Dadu042 | Dimanche 2 Juin 2019 à 22:24 |
Dadu042
|
MessagesI moved the picture to the right place and added some link in the Description. Réponses |
oovyxd | Jeudi 21 Mars 2019 à 13:13 |
oovyxd
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFixed Download and patched for 2.8-staging Differences@@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" -WINEVERSION="2.17-staging" +WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" @@ -53,7 +53,7 @@ then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine - POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" + POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi Nouveau code source#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # Based on RoninDusette's script # from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_System_TmpCreate "AppManagerTmp" Set_OS "winxp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "http://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" Set_OS "win7" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
oovyxd | Jeudi 21 Mars 2019 à 12:51 |
oovyxd
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesPatch to 2.8-staging Differences@@ -12,7 +12,7 @@ source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" -WINEVERSION="2.17-staging" +WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" Nouveau code source#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # Based on RoninDusette's script # from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="2.8-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_System_TmpCreate "AppManagerTmp" Set_OS "winxp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" Set_OS "win7" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
ZombieMariachis | Dimanche 27 Janvier 2019 à 3:26 |
ZombieMariachis
|
MessagesPhotoshop CC 2015 installed just fine with no problems. However pen pressure is intermittent for me. If I lift the pen off my tablet to start a new stroke there is no longer pen pressure or tilt features. But, if I select the brush again from the presets, pen pressure and tilt are active again. Here's a video of the behavior -- https://youtu.be/BfU5A4_PeXA [01/26/19 19:15:19] - Running wine-3.9 Photoshop.exe (Working directory : /home/josh/.PlayOnLinux/wineprefix/CreativeCloud/drive_c/Program Files/Adobe/Adobe Photoshop CC 2015 (32 Bit)) RéponsesEdité par ZombieMariachis |
bipco | Dimanche 31 Décembre 2017 à 22:25 |
bipco
|
MessagesHi Lightroom 5 is basically working for me on Ubuntu 16.04, but can't get it to login to Lightroom Mobile - login dialog freezes after entering id & password. Login of the app to Adobe ID does work. If that was working I'd be able to use it instead of running in VMWare. Certainly runs faster than in the VM. On 4K monitor some lettering gets scrambled in settings dialogs when increasing the Windows dpi to make the menus big enough (but that's a minor detail). Thanks Warren
Réponses |
corbindavenport | Mardi 3 Octobre 2017 à 21:02 |
corbindavenport
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,73 @@ +#!/bin/bash +# Date : (2017-10-03) +# Distribution used to test : Ubuntu 17.10 x64 +# Author : Corbin Davenport +# Licence : GPLv3 +# PlayOnLinux: 4.2.12 + +# Based on RoninDusette's script +# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="CreativeCloud" +WINEVERSION="2.17-staging" +TITLE="Adobe Creative Cloud" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Corbin Davenport" + +#Initialization +POL_SetupWindow_Init +POL_SetupWindow_SetID 3251 + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create prefix and temporary download folder +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +POL_System_TmpCreate "AppManagerTmp" +Set_OS "winxp" + +# Install dependencies +POL_Call POL_Install_atmlib +POL_Call POL_Install_corefonts +POL_Call POL_Install_FontsSmoothRGB +POL_Call POL_Install_gdiplus + +# Get the installer +POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + # The normal Creative Cloud setup requires Windows 7 or higher + Set_OS "win7" + POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" + POL_SetupWindow_wait "Installation in progress..." "$TITLE" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine + POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" + POL_SetupWindow_wait "Installation in progress..." "$TITLE" + INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" +fi + +# Installation +POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$INSTALLER" +POL_Shortcut "PDapp.exe" "Adobe Application Manager" +Set_OS "win7" +POL_System_TmpDelete + +# All done +POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport # Licence : GPLv3 # PlayOnLinux: 4.2.12 # Based on RoninDusette's script # from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="CreativeCloud" WINEVERSION="2.17-staging" TITLE="Adobe Creative Cloud" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="Corbin Davenport" #Initialization POL_SetupWindow_Init POL_SetupWindow_SetID 3251 POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create prefix and temporary download folder POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_System_TmpCreate "AppManagerTmp" Set_OS "winxp" # Install dependencies POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB POL_Call POL_Install_gdiplus # Get the installer POL_SetupWindow_message "$(eval_gettext 'On the next screen, you can choose between automatically downloading the Creative Cloud installer, or selecting it from your computer.\n\nIt is HIGHLY RECOMMENDED to let the script download the Creative Cloud installer for you, since the downloaded version has been verified to work.')" "$TITLE" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then # The normal Creative Cloud setup requires Windows 7 or higher Set_OS "win7" POL_SetupWindow_browse "Please select the Creative Cloud install program." "$TITLE" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # The Creative Cloud setup program from the Photoshop download link on Adobe's website only needs Windows XP, and seems to work better in Wine POL_Download "https://ccmdls.adobe.com/AdobeProducts/PHSP/18_1_1/win32/AAMmetadataLS20/CreativeCloudSet-Up.exe" POL_SetupWindow_wait "Installation in progress..." "$TITLE" INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" fi # Installation POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: Once Adobe Application Application Manager is installed and you finish logging in, come back to this setup window and click Next. Some final adjustments have to be made by the script in order to run newer Adobe programs.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Shortcut "PDapp.exe" "Adobe Application Manager" Set_OS "win7" POL_System_TmpDelete # All done POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use Adobe Application Manager to download and install the applications you need.\n\nYou will need to close and re-open Application Manager to see newer apps, like CC 2015.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking Adobe Application Manager in the app list, clicking CONFIGURE, and clicking MAKE A NEW SHORTCUT FROM THIS VIRTUAL DRIVE. Then look for the app, like Photoshop.exe, and add it.')" "$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