Adobe Photoshop CC 2015
Informations
Creator | Message |
---|---|
thenets
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks2 1 DescriptionRaster 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:
ContributeMember | Message |
halserach | Saturday 15 April 2023 at 13:18 |
halserach
|
WarningThis update has not been approved yet by the team. MessageFor the record, this is my machine: Distribution: Manjaro 22.1.0 x86_64 I use 32-bit version of Photoshop CC 2015 with this script.
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 RepliesEdited by halserach |
MIGRANTBIRD | Tuesday 2 June 2020 at 18:19 |
MIGRANTBIRD
|
Messagehello 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 Replies |
justR | Saturday 18 April 2020 at 8:25 |
justR
|
MessageHello, 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? Replies |
Dadu042 | Friday 29 November 2019 at 10:52 |
Dadu042
|
InformationThis 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 RepliesSaturday 21 December 2019 at 13:05
|
thenets | Thursday 27 October 2016 at 7:35 |
thenets
|
WarningThis update has not been approved yet by the team. 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 RepliesFriday 2 August 2019 at 17:43
|
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