Adobe Photoshop CC 2015

Informations

Créateur Messages
thenets Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 116468
Wine: 2.22

Retours d'expérience

Description

Raster graphics editor, 2015. Wikipedia page.

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

 

Script based on Ronin DUSETTE's script for CS6.

Code source

#!/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:

Contribuer
Membre Messages
halserach Samedi 15 Avril 2023 à 13:18
halserach Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

#!/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

Réponses

Edité par halserach

MIGRANTBIRD Mardi 2 Juin 2020 à 18:19
MIGRANTBIRD Anonymous

Messages

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

Réponses

justR Samedi 18 Avril 2020 à 8:25
justR Anonymous

Messages

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?

Réponses

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

Information

Cette mise à jour a été acceptée par l'équipe

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"
  

Nouveau code source

#!/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

Réponses

Anonymous
Samedi 21 Décembre 2019 à 13:05
I've tested this and it works, great. Is there any POL 5 script for this?
thenets Jeudi 27 Octobre 2016 à 7:35
thenets Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

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

Nouveau code source

#!/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

Réponses

Vendredi 2 Aoüt 2019 à 17:43
Approved. There is certainly some vcrun and msxml to remove (the oldest).