From 533577055d73c6d92739f17b0caafd04c787f9ad Mon Sep 17 00:00:00 2001 From: Jeremiah Megel Date: Tue, 10 Oct 2017 18:13:27 -0500 Subject: [PATCH 1/8] Use /usr/bin/env bash instead of /bin/bash --- creativecloud.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/creativecloud.sh b/creativecloud.sh index 4edff5c..3a11463 100644 --- a/creativecloud.sh +++ b/creativecloud.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Date : (2017-10-03) # Distribution used to test : Ubuntu 17.10 x64 # Author : Corbin Davenport From 238e0f46bdf1492dc1472bf3cbce02b406d1e7fb Mon Sep 17 00:00:00 2001 From: Corbin Davenport Date: Fri, 16 Feb 2018 14:25:23 -0500 Subject: [PATCH 2/8] Add Fedora screenshot --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aacbe5b..8f85d65 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This is an install script for [Adobe Creative Cloud](https://www.adobe.com/creat **NOTE:** Only Photoshop CC, Bridge CC, Lightroom 5, and the Creative Cloud manager have been extensively tested. The newest Lightroom CC app is not supported right now. File syncing currently [does not work](https://github.com/corbindavenport/creative-cloud-linux/issues/29). -![Photoshop CC Screenshot](https://i.imgur.com/0JUQYuR.png) +![Photoshop CC Screenshot](https://i.imgur.com/HtXe9WK.png) A (free) Adobe ID is required. Most Adobe applications require [a paid subscription](https://www.adobe.com/creativecloud/plans.html). From f07e1cbc4c21b78d90ab7145074eba78ab81c511 Mon Sep 17 00:00:00 2001 From: Corbin Davenport Date: Mon, 28 May 2018 17:41:03 -0400 Subject: [PATCH 3/8] Create CONTRIBUTING.md --- CONTRIBUTING.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..5d853d6 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,12 @@ +## Filing a bug report + +I accept bug reports for the Creative Cloud script, but please note that **I can't do anything about most bugs**. The Wine compatibility layer is used to run the Creative Cloud installer and all downloaded Adobe programs. If you have issues with getting certain programs to run, you should [file a bug report with Wine](https://bugs.winehq.org/). + +When filing a Wine bug, please include the following information in your report to help the developers: + +* You are using 32-bit Wine 2.20-staging +* You have the `msxml3`, `atmlib`, and `corefonts` winetricks installed + +## Filing a pull request + +Pull requests for the install script are welcome! From eac2f9b418f228dddaeedbca8797c7cd8de9765f Mon Sep 17 00:00:00 2001 From: Corbin Davenport Date: Tue, 10 Jul 2018 01:11:32 -0400 Subject: [PATCH 4/8] Switch to offline installer --- creativecloud.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/creativecloud.sh b/creativecloud.sh index f3e76d0..4739753 100644 --- a/creativecloud.sh +++ b/creativecloud.sh @@ -30,7 +30,7 @@ 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" +POL_System_TmpCreate "CreativeCloud" Set_OS "win7" # Install dependencies @@ -44,10 +44,11 @@ chmod +x winetricks ./winetricks atmlib corefonts fontsmooth=rgb # Get the installer -POL_SetupWindow_wait "Installation in progress..." "$TITLE" cd "$POL_System_TmpDir" -POL_Download "https://ccmdls.adobe.com/AdobeProducts/KCCC/1/win32/CreativeCloudSet-Up.exe" -INSTALLER="$POL_System_TmpDir/CreativeCloudSet-Up.exe" +POL_Download "http://ccmdl.adobe.com/AdobeProducts/KCCC/1/win32/ACCCx4_5_0_331.zip" +POL_SetupWindow_wait "Please wait while the installer is extracted..." "$TITLE" +unzip *.zip +INSTALLER="$POL_System_TmpDir/Set-up.exe" # Run the installer POL_Wine_WaitBefore "$TITLE" @@ -56,7 +57,7 @@ POL_Shortcut "Creative Cloud.exe" "Adobe Creative Cloud" POL_System_TmpDelete # All done -POL_SetupWindow_message "$(eval_gettext 'The installation is now complete, you can now use the Adobe Creative Cloud manager to download the applications you need.\n\nNOTE: The Creative Cloud manager takes a while to log in. That is completely normal.\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking ADOBE CREATIVE CLOUD 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_message "$(eval_gettext 'The installation is now complete, you can now use the Adobe Creative Cloud manager to download the applications you need.\n\nNOTE: The Creative Cloud manager takes a while to log in, and you may see an error meessage. That is completely normal - don't close the login window!\n\nAfter you download an app, you can add a PlayOnLinux shortcut for it by clicking ADOBE CREATIVE CLOUD 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 From 3a521d5ee4765daa349060f599f80023daedcc9e Mon Sep 17 00:00:00 2001 From: KevDoy Date: Tue, 9 Oct 2018 23:13:29 -0700 Subject: [PATCH 5/8] Update Script Dependencies Updated dependencies to increase compatibility with Photoshop 2018 and its tools/workspaces. --- creativecloud.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/creativecloud.sh b/creativecloud.sh index 4739753..0983942 100644 --- a/creativecloud.sh +++ b/creativecloud.sh @@ -41,7 +41,7 @@ cd "$POL_System_TmpDir" POL_Download_Resource "https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks" POL_SetupWindow_wait "Please wait while winetricks is installed... (this might take a few minutes)" "$TITLE" chmod +x winetricks -./winetricks atmlib corefonts fontsmooth=rgb +./winetricks atmlib corefonts fontsmooth=rgb gdiplus vcrun2008 vcrun2010 vcrun2012 vcrun2013 vcrun2015 atmlib msxml3 msxml6 gdiplus # Get the installer cd "$POL_System_TmpDir" From 0fb783a909bf1451bec4ed503d9d22fab730ee94 Mon Sep 17 00:00:00 2001 From: Nikolay Goduiko Date: Sat, 20 Oct 2018 02:20:31 +0700 Subject: [PATCH 6/8] Issue #65 fix os version After installing winetricks os version in Wine is reset to winXP. this commit will bring it back. But issue #59 still is not fixed. --- creativecloud.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/creativecloud.sh b/creativecloud.sh index 0983942..b4cd009 100644 --- a/creativecloud.sh +++ b/creativecloud.sh @@ -42,6 +42,7 @@ POL_Download_Resource "https://raw.githubusercontent.com/Winetricks/winetricks/ POL_SetupWindow_wait "Please wait while winetricks is installed... (this might take a few minutes)" "$TITLE" chmod +x winetricks ./winetricks atmlib corefonts fontsmooth=rgb gdiplus vcrun2008 vcrun2010 vcrun2012 vcrun2013 vcrun2015 atmlib msxml3 msxml6 gdiplus +Set_OS "win7" # Get the installer cd "$POL_System_TmpDir" From 4282b5355995b08a93a5e917f36bf1044a3b4d25 Mon Sep 17 00:00:00 2001 From: Corbin Davenport Date: Sun, 18 Nov 2018 00:08:40 -0500 Subject: [PATCH 7/8] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f85d65..ab1d65a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Creative Cloud for PlayOnLinux +**This script currently does not work, see [issue #52](https://github.com/corbindavenport/creative-cloud-linux/issues/52) for more details.** + This is an install script for [Adobe Creative Cloud](https://www.adobe.com/creativecloud.html), designed to be used with [PlayOnLinux](https://www.playonlinux.com). The script sets up the Adobe Creative Cloud desktop program, which can be used to install and update Photoshop, Lightroom, Dreamweaver, Illustrator, and other apps. -**NOTE:** Only Photoshop CC, Bridge CC, Lightroom 5, and the Creative Cloud manager have been extensively tested. The newest Lightroom CC app is not supported right now. File syncing currently [does not work](https://github.com/corbindavenport/creative-cloud-linux/issues/29). +Only Photoshop CC, Bridge CC, Lightroom 5, and the Creative Cloud manager have been extensively tested. The newest Lightroom CC app is not supported right now. File syncing currently [does not work](https://github.com/corbindavenport/creative-cloud-linux/issues/29). ![Photoshop CC Screenshot](https://i.imgur.com/HtXe9WK.png) From 8c408bf55d8237b5c7b6c1e5042fea02258d33a3 Mon Sep 17 00:00:00 2001 From: Corbin Davenport Date: Fri, 24 Apr 2020 01:24:55 -0400 Subject: [PATCH 8/8] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ab1d65a..30bdd2c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Creative Cloud for PlayOnLinux -**This script currently does not work, see [issue #52](https://github.com/corbindavenport/creative-cloud-linux/issues/52) for more details.** +**This script has not worked for some time, and since Adobe's newer installers use a form of embedded Internet Explorer that Wine doesn't support (and installing IE in the Wine prefix doesn't solve the issue), I don't think this will work anytime soon.** -This is an install script for [Adobe Creative Cloud](https://www.adobe.com/creativecloud.html), designed to be used with [PlayOnLinux](https://www.playonlinux.com). The script sets up the Adobe Creative Cloud desktop program, which can be used to install and update Photoshop, Lightroom, Dreamweaver, Illustrator, and other apps. +**I'm leaving the code publicly available for reference, and I will accept any PRs that make it functional again, but I am done working on this. A newer version of the script without the PlayOnLinux dependency is available in the `dev` branch.** -Only Photoshop CC, Bridge CC, Lightroom 5, and the Creative Cloud manager have been extensively tested. The newest Lightroom CC app is not supported right now. File syncing currently [does not work](https://github.com/corbindavenport/creative-cloud-linux/issues/29). +This is an install script for [Adobe Creative Cloud](https://www.adobe.com/creativecloud.html), designed to be used with [PlayOnLinux](https://www.playonlinux.com). The script sets up the Adobe Creative Cloud desktop program, which can be used to install and update Photoshop, Lightroom, Dreamweaver, Illustrator, and other apps. ![Photoshop CC Screenshot](https://i.imgur.com/HtXe9WK.png)