Adobe Photoshop CS4

Informations

Créateur Messages
Quentin PÂRIS Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 328298
Wine: 3.0.3

Retours d'expérience

Description

Code source

#!/bin/bash
# Date : (2009-11-23 03-05)
# Last revision : (2011-06-12 16-10)
# Wine version used : session : 1.1.17, assign : 1.1.22
# Distribution used to test : 
# Author : ljmellor, Updated by SuperPlumus
# Depend :
#
# CHANGELOG
# [SuperPlumus] (2011)
#   First script.
# [SuperPlumus] (2014 ?)
#   Updated
# [Dadu042] (2019-11-28)
#   Wine 1.2.3 -> 3.0.3
#   Script updated.

[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"

TITLE="Adobe Photoshop CS4"
PREFIX="PSCS4"
WORKING_WINE_VERSION="3.0.3"

if [ "$POL_LANG" = "fr" ]; then
LNG_CHOOSE_FILE="Veuillez selectionner le fichier .exe d'installation."
LNG_INSTALL_RUN="Installation en cours..."
LNG_SUCCES="$TITLE\na été installé avec succès !"
else
LNG_CHOOSE_FILE="Please select the .exe installation file."
LNG_INSTALL_RUN="Installation in progress..."
LNG_SUCCES="$TITLE\nhas been installed successfully."
fi

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Adobe" "http://www.adobe.com/products/photoshop/" "ljmellor and SuperPlumus" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "win7"

POL_Call POL_Install_msxml6
POL_Call POL_Install_gdiplus
POL_Call POL_Install_gecko
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_ie6

cd "$HOME"
POL_SetupWindow_browse "$LNG_CHOOSE_FILE" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"


POL_Call POL_Function_OverrideDLL native atmlib.dll

POL_Shortcut "Photoshop.exe" "$TITLE" "" "" "Graphics;"
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Vendredi 29 Novembre 2019 à 10:22
Dadu042

Information

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

Differences

@@ -5,16 +5,22 @@
 # Distribution used to test : 
 # Author : ljmellor, Updated by SuperPlumus
 # Depend :
-
-# Il y avait un lien de parrainage ...
+#
+# CHANGELOG
+# [SuperPlumus] (2011)
+#   First script.
+# [SuperPlumus] (2014 ?)
+#   Updated
+# [Dadu042] (2019-11-28)
+#   Wine 1.2.3 -> 3.0.3
+#   Script updated.
 
 [ "$PLAYONLINUX" = "" ] && exit
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Adobe Photoshop CS4"
 PREFIX="PSCS4"
-WORKING_WINE_VERSION_SESSION="1.2.3"
-WORKING_WINE_VERSION_ASSIGN="1.2.3"
+WORKING_WINE_VERSION="3.0.3"
 
 if [ "$POL_LANG" = "fr" ]; then
 LNG_CHOOSE_FILE="Veuillez selectionner le fichier .exe d'installation."
@@ -32,7 +38,10 @@
 POL_SetupWindow_presentation "$TITLE" "Adobe" "http://www.adobe.com/products/photoshop/" "ljmellor and SuperPlumus" "$PREFIX"
 
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate "$WORKING_WINE_VERSION_SESSION"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
+Set_OS "win7"
 
 POL_Call POL_Install_msxml6
 POL_Call POL_Install_gdiplus
@@ -49,6 +58,6 @@
 
 POL_Call POL_Function_OverrideDLL native atmlib.dll
 
-POL_Shortcut "Photoshop.exe" "$TITLE"
+POL_Shortcut "Photoshop.exe" "$TITLE" "" "" "Graphics;"
 POL_SetupWindow_Close
 exit

Nouveau code source

#!/bin/bash
# Date : (2009-11-23 03-05)
# Last revision : (2011-06-12 16-10)
# Wine version used : session : 1.1.17, assign : 1.1.22
# Distribution used to test : 
# Author : ljmellor, Updated by SuperPlumus
# Depend :
#
# CHANGELOG
# [SuperPlumus] (2011)
#   First script.
# [SuperPlumus] (2014 ?)
#   Updated
# [Dadu042] (2019-11-28)
#   Wine 1.2.3 -> 3.0.3
#   Script updated.

[ "$PLAYONLINUX" = "" ] && exit
source "$PLAYONLINUX/lib/sources"

TITLE="Adobe Photoshop CS4"
PREFIX="PSCS4"
WORKING_WINE_VERSION="3.0.3"

if [ "$POL_LANG" = "fr" ]; then
LNG_CHOOSE_FILE="Veuillez selectionner le fichier .exe d'installation."
LNG_INSTALL_RUN="Installation en cours..."
LNG_SUCCES="$TITLE\na été installé avec succès !"
else
LNG_CHOOSE_FILE="Please select the .exe installation file."
LNG_INSTALL_RUN="Installation in progress..."
LNG_SUCCES="$TITLE\nhas been installed successfully."
fi

POL_SetupWindow_Init
POL_Debug_Init

POL_SetupWindow_presentation "$TITLE" "Adobe" "http://www.adobe.com/products/photoshop/" "ljmellor and SuperPlumus" "$PREFIX"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "win7"

POL_Call POL_Install_msxml6
POL_Call POL_Install_gdiplus
POL_Call POL_Install_gecko
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_ie6

cd "$HOME"
POL_SetupWindow_browse "$LNG_CHOOSE_FILE" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"


POL_Call POL_Function_OverrideDLL native atmlib.dll

POL_Shortcut "Photoshop.exe" "$TITLE" "" "" "Graphics;"
POL_SetupWindow_Close
exit

Réponses

jujubeans Dimanche 12 Mars 2017 à 21:59
jujubeans Anonymous

Messages

Will CS6 work on top of this? Gonna give it a try.

Réponses

Anonymous
Dimanche 12 Mars 2017 à 23:06
instal seems to get stuck on an eternal load here:

03/12/17 22:06:37 - [POL_Download_Resource] Message: Downloading resource https://web.archive.org/web/20160710055851/http://download.microsoft.com/download/WindowsInstaller/Install/2.0/NT45/EN-US/Inst
Vendredi 29 Novembre 2019 à 10:16
This script (POL_Install_msls31) was repaired in december 2018.
tdtmusic Mercredi 3 Juin 2015 à 20:49
tdtmusic

Messages

Doesn't install on my elementary OS Freya notebook. Everything goes well, till I have to select the setup file. After I do, I get a wine error about some invalid parameter and that's it.

Réponses

Mercredi 3 Juin 2015 à 20:52
Not very informative... lol.
Mercredi 3 Juin 2015 à 20:53
Can you post your debug log here? Then we can try to see what happened.
Jeudi 4 Juin 2015 à 0:03
I know it's not very informative, but I don't know what info should I provide. So feel free to ask everything you need to know. About the log, how do I find it? I'm not that familiar with PlayonLinux yet :)
Jeudi 4 Juin 2015 à 0:16
Never mind, I found the log. Here it is: http://pastebin.com/5adA4Way
Jeudi 4 Juin 2015 à 0:16
And this is the error: http://i60.tinypic.com/334swex.png
Jeudi 4 Juin 2015 à 21:09
So...any update on this?
Jeudi 4 Juin 2015 à 21:55
You may want to try to see if the CS6 installer works better, as it is newer. Which version of cs4 do you have (like what format; disc, exe, or ISO?) and where did you get it from?
Jeudi 4 Juin 2015 à 22:51
It's the trial from Adobe, I just "unzipped" the package and selected setup.exe in PlayOnLinux. I did try CS6, but I really don't like the fonts, I thought CS4 would look a little better...
Vendredi 5 Juin 2015 à 1:15
So, the cs4 script doesn't work, but the cs6 one works, except it's just a cosmetic issue with the fonts? Unfortunately, I don't have that version, and it is also outdated. I would try to use CS6 or better with the CS6 script.
Vendredi 5 Juin 2015 à 16:27
I did that eventually, turns out the font issue was easily fixable by installing tahoma2. :)
Vendredi 5 Juin 2015 à 18:30
Sweet. I knew that tahoma2 would work. What is odd, is that CS6 already uses tahoma2 during the install, so I don't know why it was broken on yours (I wrote both of those scripts myself. lol.).