Vous êtes ici Logiciels supportés Adobe Photoshop CS6
| Créateur | Messages |
|---|---|
Ronin DUSETTE
Admin
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience16 6 DescriptionTHIS SHOULD ALSO WORK WITH THE ADOBE CC VERSION OF PHOTOSHOP. NOTE: This application does NOT work on Intel graphics (at least not that I have seen). Nvidia and AMD graphics should be used. From adobe.com: "Adobe Photoshop CS6 Extended delivers all the imaging magic in Photoshop CS6 plus 3D graphic design and image analysis tools.* Easily create rich 3D artwork, and enhance your 3D scenes with shadows, lighting, and animation. Retouch images with utter precision, control, and speed. Create vibrant videos and design anything you can imagine using intuitive tools. Paint and draw naturally and expressively. And get blazingly fast performance with the Mercury Graphics Engine." Captures d'écranCode source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="3.4"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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
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 |
Filters:
Contribuer| Membre | Messages |
| LinuxScripter | Lundi 16 Avril 2018 à 13:14 |
LinuxScripter
|
InformationCette mise à jour a été acceptée par l'équipe MessagesChanged from wine 3.3 to wine 3.4 and removed both of the 'SetOS = winxp' lines. Both of those steps were necessary to make Photoshop load. Differences@@ -4,37 +4,34 @@ # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.8 - - + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="PhotoshopCS6" -WINEVERSION="3.3" +WINEVERSION="3.4" TITLE="Adobe Photoshop CS6" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette" - + #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_AdobeAir POL_Call POL_Install_atmlib @@ -47,20 +44,19 @@ POL_Call POL_Install_corefonts POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB - + 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 "winxp" 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 : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="3.4"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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
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 |
| soachishti | Mercredi 21 Mars 2018 à 23:01 |
soachishti
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWine 1.7.46-staging doesn't work fine on Ubuntu 18.04. Wine 3.3 did the job for me. Differences@@ -10,7 +10,7 @@
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.46-staging"
+WINEVERSION="3.3"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="3.3"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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 "winxp"
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 |
| Ronin DUSETTE | Samedi 6 Janvier 2018 à 18:21 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -52,7 +52,7 @@ # Installation -Set_OS "win7" +Set_OS "winxp" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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 "winxp"
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 |
| michaeldyl520 | Mercredi 12 Juillet 2017 à 8:37 |
michaeldyl520
|
MessagesI`m in china,this program can`t recognize the chinese.Please tell me how to fixed it. Réponses |
| philmoonamjid | Lundi 20 Mars 2017 à 5:53 |
philmoonamjid
|
MessagesHello, thank you for the program. Unfortunatelly the program is not working. Whenever I run my Adobe Photoshop CS6, an error pop ups "pol_wine" error. And the program is closed. I need help. Réponses |
| danger89 | Dimanche 12 Février 2017 à 21:52 |
|
danger89
|
MessagesBut.. It only worked after I put Wine in Windows XP. Somhow Windows XP was set as version. Maybe: Réponses |
| Litceo | Mardi 24 Janvier 2017 à 13:07 |
Litceo
|
MessagesWhen I try to install Photoshop CC the installer says, that i need a64bit system Version. Please Help me - my Linux Version is Ubuntu 16.10 64-bit Litceo Réponses |
| je1977 | Vendredi 6 Janvier 2017 à 13:05 |
je1977
|
MessagesHey together,
i have a little problem, Photoshop starts perfect after i install de POL vcrun6 but if i want to open a new image or if i load an image i get this Screen,,,, anybody an idea what can i do ? My system is Arch Linux with XFCE
Réponses |
| 98q43g | Dimanche 16 Octobre 2016 à 6:20 |
98q43g
|
MessagesSuccessfully installed CS6 version. But can't run it on Linux x86_64. Tried both staging and system's wine versions. Same result. Réponses |
| ZenYu0101 | Mercredi 12 Octobre 2016 à 17:46 |
ZenYu0101
|
MessagesHy, i got this error when i am tring to install it. Any clue? Ty Error in POL_Shortcut Réponses |
| riotbr | Dimanche 3 Juillet 2016 à 0:49 |
riotbr
|
MessagesHi! It gets an error when downloading Tahoma32.exe. The host of Microsoft doesn't work. I've tested with another URL and the download it's working: http://residence-eon.tuxfamily.org/Wine/tahoma32.exe Thanks in advance ;)
Réponses |
| pecg | Dimanche 19 Juin 2016 à 16:29 |
pecg
|
MessagesLa dirección no resulta comprensible Firefox no sabe cómo abrir esta dirección, porque el protocolo (playonlinux) no está asociado con ninguna aplicación. Podría necesitar instalar otro software para abrir esta dirección. it tells me that: the direction is not understandable firefox doesnt know how to open this direction, because the protocol (playonlinux) isnt asociated with another aplication Réponses |
| josemiguel | Mardi 24 Mai 2016 à 17:12 |
josemiguel
|
MessagesI'm having problem with the healing brush tool; the alt+ click is not working; is a problem with photoshop or is a configuration problem with linux mint? How can't a fix? Réponses |
| josemiguel | Jeudi 19 Mai 2016 à 23:37 |
josemiguel
|
MessagesIs giving a error: fixme:heap:RtlSetHeapInformation (nil) 1 (nil) 0 stub HOW CAN I FIX? Réponses |
| calex | Samedi 13 Février 2016 à 11:57 |
calex
|
MessagesThis script works for Adobe Illustrator CS6 as well. Installed and tested on Linux Mint 17.3 64-bit AMD Graphics.
Réponses |
| petch | Vendredi 4 Décembre 2015 à 23:48 |
petch
Développeur
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd POL_SetupWindow_SetID Differences@@ -19,6 +19,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_Debug_Init
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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 |
| Ronin DUSETTE | Jeudi 9 Juillet 2015 à 18:01 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSo, the new wine-staging version works with PS. Probably works with Lightroom, as well. One thing that I figured out is that this seems to work really well with Adobe Creative Cloud; I can connect to my account and download and run PS and LR so far. I am going to make a separate script for Adobe CC, though (I anticipate the CC versions needing more TLC than the regular versions before they went into cloud services. Differences@@ -1,16 +1,16 @@
#!/bin/bash
# Date : (2014-10-20)
-# Distribution used to test : Kubuntu 14.04 LTS 64-bit
+# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
-# PlayOnLinux: 4.2.5
+# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.34-PhotoshopBrushes"
+WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Arch Linux 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.8
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.46-staging"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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 |
| Quentin PÂRIS | Lundi 29 Juin 2015 à 23:26 |
Quentin PÂRIS
Admin
|
MessagesIt seems that the AdobePhotoshop patch has been included into Wine Staging (https://bugs.wine-staging.com/show_bug.cgi?id=382) Can you confirm? Réponses |
| phsouza | Lundi 1 Juin 2015 à 22:16 |
phsouza
|
MessagesHello, Can I use The complete creative Suit CS6? or just Illustrator and Photoshop CS6 with POL? Réponses |
| Ayaskull | Mardi 26 Mai 2015 à 16:52 |
Ayaskull
|
MessagesCan I use a wacom tablet with this software on POL? Réponses |
| logesh arun | Mercredi 29 Avril 2015 à 20:39 |
logesh arun
|
Messagesits very usefull software Réponses |
| Ronin DUSETTE | Dimanche 19 Avril 2015 à 6:26 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdating to new WineBuild. Differences@@ -10,7 +10,7 @@
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.34-PhotoshopBrushes"
+WINEVERSION="1.7.41-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.41-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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 |
| Ronin DUSETTE | Lundi 16 Février 2015 à 0:04 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesChanging order of Windows version call. Differences@@ -51,10 +51,10 @@ # Installation +Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" -Set_OS "win7" # Create Shortcuts POL_Shortcut "photoshop.exe" "$TITLE" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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 |
| Ronin DUSETTE | Vendredi 13 Février 2015 à 8:45 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdding better note before PS install actually starts. Differences@@ -47,7 +47,7 @@ POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB -POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" +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 Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
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
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| Ronin DUSETTE | Vendredi 13 Février 2015 à 8:37 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdating to newer patched Wine version as per ticket 4984: Differences@@ -10,7 +10,7 @@
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
-WINEVERSION="1.7.20-PhotoshopBrushes"
+WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.34-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| petch | Mercredi 28 Janvier 2015 à 2:51 |
petch
Développeur
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHi, Looking at a bug report, it may happen that POL_Download_Resource clobbers $APP_ANSWER in case of redownload. I just pushed a fix to the dev branch of PoL/PoM but it might not be common use for a while, so for the time being it may be a good idea to save $APP_ANSWER content to another variable when they're lots of function calls before it's being used... Differences@@ -27,6 +27,7 @@ # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" +INSTALLER="$APP_ANSWER" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" @@ -51,7 +52,7 @@ # Installation POL_Wine_WaitBefore "$TITLE" -POL_Wine "$APP_ANSWER" +POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" Set_OS "win7" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| Ronin DUSETTE | Samedi 10 Janvier 2015 à 8:24 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -14,7 +14,7 @@
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
-AUTHOR="DJYoshaBYD"
+AUTHOR="RoninDusette"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| Ronin DUSETTE | Vendredi 9 Janvier 2015 à 22:51 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdding revised Tahoma installer to help fix missing font issue on certain machines. Differences@@ -43,6 +43,7 @@ POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma2 POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| phys1ks | Vendredi 2 Janvier 2015 à 21:40 |
phys1ks
|
MessagesProgram runs well, but is there a fix for image previews in the open box? a wine bug has been submit here... https://bugs.winehq.org/show_bug.cgi?id=35805 but maybe a work around can be found? gdiplus does not seem to fix it... Can also confirm no labels on layers. Debian Jessie - Openbox Réponses |
| Ronin DUSETTE | Vendredi 19 Décembre 2014 à 21:53 |
Ronin DUSETTE
Admin
|
MessagesTHIS SHOULD WORK WITH THE ADOBE CC VERSION OF PHOTOSHOP, AS WELL. Réponses |
| c0ffee | Dimanche 14 Décembre 2014 à 16:00 |
c0ffee
|
MessagesHave missing text labels like in current screenshots been fixed? Hard to work without layer names and all dialogs without text. Réponses |
| Maroce | Lundi 8 Décembre 2014 à 15:43 |
Maroce
|
Messagesim sorry, i have a problem, when i click the "install program" this computer not do anything, can you help me to fix this problem? and when i installed manually, i have a new problem :
Réponses |
| Ronin DUSETTE | Vendredi 7 Novembre 2014 à 6:56 |
Ronin DUSETTE
Admin
|
MessagesPulling this out of "testing", as after almost 4,000 downloads, I would imagine that any major bugs (aka 'show stoppers') would have been reported. Teehee. This is a good thing. Réponses |
| Ronin DUSETTE | Jeudi 23 Octobre 2014 à 3:59 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -14,7 +14,7 @@
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
-AUTHOR="DJYoshaBYD"
+AUTHOR="RoninDusette"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="RoninDusette"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Install will fail and program will not launch with Intel graphics. Use only AMD and Nvida cards. Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
POL_Wine_reboot
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| Ronin DUSETTE | Mardi 21 Octobre 2014 à 0:06 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdded note stating that Intel graphics will not work. I looked a lot into this, and it seems most Intel graphics will not run this app. I am going to test it on an AMD laptop later. Differences@@ -45,7 +45,7 @@ POL_Call POL_Install_corefonts POL_Call POL_Install_FontsSmoothRGB -POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Install will fail and program will not launch with Intel graphics. Use only AMD and Nvida cards. Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" POL_Wine_reboot Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Install will fail and program will not launch with Intel graphics. Use only AMD and Nvida cards. Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
POL_Wine_reboot
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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éponsesEdité par RoninDusette |
| Ronin DUSETTE | Lundi 20 Octobre 2014 à 21:52 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -47,12 +47,13 @@ POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" +POL_Wine_reboot # Installation -Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" +Set_OS "win7" # Create Shortcuts POL_Shortcut "photoshop.exe" "$TITLE" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
POL_Wine_reboot
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| Ronin DUSETTE | Lundi 20 Octobre 2014 à 20:54 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesChanged to Win7 before PS install. Differences@@ -49,10 +49,10 @@ # Installation +Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" -Set_OS "win7" # Create Shortcuts POL_Shortcut "photoshop.exe" "$TITLE" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
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 |
| Ronin DUSETTE | Lundi 20 Octobre 2014 à 20:22 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -43,7 +43,6 @@ POL_Call POL_Install_vcrun2008 POL_Call POL_Install_vcrun2010 POL_Call POL_Install_corefonts -POL_Call POL_Install_FontsSmoothBGR POL_Call POL_Install_FontsSmoothRGB POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" Nouveau code source#!/bin/bash
# Date : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |
| Ronin DUSETTE | Lundi 20 Octobre 2014 à 20:05 |
Ronin DUSETTE
Admin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesInitial commit. Will add screenshots and resources later. Differences@@ -0,0 +1,64 @@ +#!/bin/bash +# Date : (2014-10-20) +# Distribution used to test : Kubuntu 14.04 LTS 64-bit +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.5 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCS6" +WINEVERSION="1.7.20-PhotoshopBrushes" +TITLE="Adobe Photoshop CS6" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="DJYoshaBYD" + +#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_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" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +#Dependencies +POL_Call POL_Install_AdobeAir +POL_Call POL_Install_atmlib +POL_Call POL_Install_gdiplus +POL_Call POL_Install_msxml3 +POL_Call POL_Install_msxml6 +POL_Call POL_Install_vcrun2005 +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_corefonts +POL_Call POL_Install_FontsSmoothBGR +POL_Call POL_Install_FontsSmoothRGB + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE" + + +# Installation +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$APP_ANSWER" +POL_Wine_WaitExit "$TITLE" +Set_OS "win7" + +# 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 : (2014-10-20)
# Distribution used to test : Kubuntu 14.04 LTS 64-bit
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.2.5
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCS6"
WINEVERSION="1.7.20-PhotoshopBrushes"
TITLE="Adobe Photoshop CS6"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="DJYoshaBYD"
#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_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"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Configuration
Set_OS "winxp"
#Dependencies
POL_Call POL_Install_AdobeAir
POL_Call POL_Install_atmlib
POL_Call POL_Install_gdiplus
POL_Call POL_Install_msxml3
POL_Call POL_Install_msxml6
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_corefonts
POL_Call POL_Install_FontsSmoothBGR
POL_Call POL_Install_FontsSmoothRGB
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Ignore the error at the end of the install that says that Photoshop failed to install.')" "$TITLE"
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
Set_OS "win7"
# 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 |