Adobe Photoshop CC 2015
Informations
Créateur | Messages |
---|---|
thenets
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience2 1 DescriptionRaster 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:
ContribuerMembre | Messages |
halserach | Samedi 15 Avril 2023 à 13:18 |
halserach
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFor 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 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éponsesEdité par halserach |
MIGRANTBIRD | Mardi 2 Juin 2020 à 18:19 |
MIGRANTBIRD
|
Messageshello 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
|
MessagesHello, 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 |
Dadu042 | Vendredi 29 Novembre 2019 à 10:52 |
Dadu042
|
InformationCette 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éponsesSamedi 21 Décembre 2019 à 13:05
|
thenets | Jeudi 27 Octobre 2016 à 7:35 |
thenets
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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éponsesVendredi 2 Aoüt 2019 à 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