Adobe Photoshop CC 2015

Informations

Creator Mensajes
thenets Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 116091
Wine: 2.22

Feedbacks

Description

Raster graphics editor, 2015. Wikipedia page.

Useful: Appdb.winehq.org (test reports).

 

Script based on Ronin DUSETTE's script for CS6.

Source code

#!/bin/bash
# Date : (2016-10-28)
# Distribution used to test : Ubuntu 16.04 x64
# Author : TheNets.org
# Licence : GPLv3
# PlayOnLinux: 4.2.10
#
# CHANGELOG
# [TheNets.org] (2016)
#   First script base on Ronin Dusette's script for CS6.
# [Dadu042] (2019-11-28)
#   Wine "1.7.41-PhotoshopBrushes" -> 2.22

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
       
PREFIX="PhotoshopCC"
WINEVERSION="2.22"
TITLE="Adobe Photoshop CC 2015"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="TheNets.org"

# Based on RoninDusette's script
# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html
       
#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_atmlib
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_tahoma2
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_vcrun2012
 
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 "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
 
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:

Contribute
Member Mensajes
halserach Saturday 15 April 2023 at 13:18
halserach Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

For the record, this is my machine:

Distribution: Manjaro 22.1.0 x86_64
Kernel: 6.1.23-1-MANJARO
CPU: i5 7200u (x86_64)
GPU: Nvidia 940mx (disabled)
DE: KDE Plasma 5.27.4

I use 32-bit version of Photoshop CC 2015 with this script.

Edit:
64-bit version can be installed, but must use winetricks to install these component: 

winetricks atmlib gdiplus msxml3 msxml6 vcrun2005 vcrun2005sp1 vcrun2008 ie6 fontsmooth-rgb gecko

(somehow some of the POL_Install_* scripts don't work in 64 bits... don't know why)

Differences

@@ -10,12 +10,15 @@
 #   First script base on Ronin Dusette's script for CS6.
 # [Dadu042] (2019-11-28)
 #   Wine "1.7.41-PhotoshopBrushes" -> 2.22
+# [Halserach] (2023-04-15)
+#   Wine "2.22" -> "6.17"
+#   +POL_System_SetArch "auto"
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
        
-PREFIX="PhotoshopCC"
-WINEVERSION="2.22"
+PREFIX="PhotoshopCC15"
+WINEVERSION="6.17"
 TITLE="Adobe Photoshop CC 2015"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"
@@ -27,7 +30,7 @@
 #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_SetupWindow_SetID 3066
        
 POL_Debug_Init
        
@@ -38,6 +41,7 @@
 POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE"
 INSTALLER="$APP_ANSWER"
 POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "auto"
 POL_Wine_PrefixCreate "$WINEVERSION"
  
 # Configuration

New source code

#!/bin/bash
# Date : (2016-10-28)
# Distribution used to test : Ubuntu 16.04 x64
# Author : TheNets.org
# Licence : GPLv3
# PlayOnLinux: 4.2.10
#
# CHANGELOG
# [TheNets.org] (2016)
#   First script base on Ronin Dusette's script for CS6.
# [Dadu042] (2019-11-28)
#   Wine "1.7.41-PhotoshopBrushes" -> 2.22
# [Halserach] (2023-04-15)
#   Wine "2.22" -> "6.17"
#   +POL_System_SetArch "auto"

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
       
PREFIX="PhotoshopCC15"
WINEVERSION="6.17"
TITLE="Adobe Photoshop CC 2015"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="TheNets.org"

# Based on RoninDusette's script
# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html
       
#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 3066
       
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_System_SetArch "auto"
POL_Wine_PrefixCreate "$WINEVERSION"
 
# Configuration
Set_OS "winxp"
 
#Dependencies
POL_Call POL_Install_atmlib
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_tahoma2
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_vcrun2012
 
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 "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
 
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

Respuestas

Editado por: halserach

MIGRANTBIRD Tuesday 2 June 2020 at 18:19
MIGRANTBIRD Anonymous

Mensajes

hello everyone;

i tried to install this version of PS via playonlinux but unfortunately on gnome but in few times it's crashed and did't install. also checked with another program and by that has same problem. has anybody idea in this matter to solve? 

thanks in advance

Respuestas

justR Saturday 18 April 2020 at 8:25
justR Anonymous

Mensajes

Hello, I installed it on manjaro KDE Plasma. It installed but it need sign in to my adobe account, but when I try to sign in I get internet lost error. Have any ideas?

Respuestas

Anonymous
Monday 20 April 2020 at 14:08
where I can find the solution??? Is anybody Here?
Monday 20 April 2020 at 16:38
Perhaps try a newer Wine version.
Anonymous
Monday 11 May 2020 at 8:00
@Dadu042 i'm in version 5.5
Anonymous
Saturday 15 April 2023 at 12:57
Apparently any online features can't be used (login to adobe account etc)
Dadu042 Friday 29 November 2019 at 10:52
Dadu042

Information

This update has been approved by the team.

Differences

@@ -4,13 +4,18 @@
 # Author : TheNets.org
 # Licence : GPLv3
 # PlayOnLinux: 4.2.10
- 
- 
+#
+# CHANGELOG
+# [TheNets.org] (2016)
+#   First script base on Ronin Dusette's script for CS6.
+# [Dadu042] (2019-11-28)
+#   Wine "1.7.41-PhotoshopBrushes" -> 2.22
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
        
 PREFIX="PhotoshopCC"
-WINEVERSION="1.7.41-PhotoshopBrushes"
+WINEVERSION="2.22"
 TITLE="Adobe Photoshop CC 2015"
 EDITOR="Adobe Systems Inc."
 GAME_URL="http://www.adobe.com"
@@ -60,7 +65,7 @@
 POL_Wine_WaitExit "$TITLE"
  
 # Create Shortcuts
-POL_Shortcut "photoshop.exe" "$TITLE"
+POL_Shortcut "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
  
 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 : (2016-10-28)
# Distribution used to test : Ubuntu 16.04 x64
# Author : TheNets.org
# Licence : GPLv3
# PlayOnLinux: 4.2.10
#
# CHANGELOG
# [TheNets.org] (2016)
#   First script base on Ronin Dusette's script for CS6.
# [Dadu042] (2019-11-28)
#   Wine "1.7.41-PhotoshopBrushes" -> 2.22

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
       
PREFIX="PhotoshopCC"
WINEVERSION="2.22"
TITLE="Adobe Photoshop CC 2015"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="TheNets.org"

# Based on RoninDusette's script
# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html
       
#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_atmlib
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_tahoma2
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_vcrun2012
 
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 "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
 
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

Respuestas

Anonymous
Saturday 21 December 2019 at 13:05
I've tested this and it works, great. Is there any POL 5 script for this?
thenets Thursday 27 October 2016 at 7:35
thenets Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -0,0 +1,68 @@
+#!/bin/bash
+# Date : (2016-10-28)
+# Distribution used to test : Ubuntu 16.04 x64
+# Author : TheNets.org
+# Licence : GPLv3
+# PlayOnLinux: 4.2.10
+ 
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+       
+PREFIX="PhotoshopCC"
+WINEVERSION="1.7.41-PhotoshopBrushes"
+TITLE="Adobe Photoshop CC 2015"
+EDITOR="Adobe Systems Inc."
+GAME_URL="http://www.adobe.com"
+AUTHOR="TheNets.org"
+
+# Based on RoninDusette's script
+# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html
+       
+#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_atmlib
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_FontsSmoothRGB
+POL_Call POL_Install_gdiplus
+POL_Call POL_Install_msxml3
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_tahoma2
+POL_Call POL_Install_vcrun2008
+POL_Call POL_Install_vcrun2010
+POL_Call POL_Install_vcrun2012
+ 
+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 "photoshop.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 : (2016-10-28)
# Distribution used to test : Ubuntu 16.04 x64
# Author : TheNets.org
# Licence : GPLv3
# PlayOnLinux: 4.2.10
 
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
       
PREFIX="PhotoshopCC"
WINEVERSION="1.7.41-PhotoshopBrushes"
TITLE="Adobe Photoshop CC 2015"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="TheNets.org"

# Based on RoninDusette's script
# from https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html
       
#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_atmlib
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_tahoma2
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_vcrun2012
 
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 "photoshop.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

Respuestas

Friday 2 August 2019 at 17:43
Approved. There is certainly some vcrun and msxml to remove (the oldest).