Adobe Photoshop CC 2014
Informations
| Creator | Mensajes |
|---|---|
vlad88
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks4 0 DescriptionAdobe Photoshop software is a popular professional-quality bitmap image editor that handles Graphics editing package. Source code#!/bin/bash
# Date : (2015-08-29 23-30)
# Distribution used to test : Linux Mint 17 Cinnamon 32-bit
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 2.22
# CHANGELOG
# [Vladislav Khomenko] (2015-08-29 23-30)
# First script.
# [Dadu042] (2019-11-28)
# Wine 1.7.48-staging -> 2.22
# + App categories
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
# Wine Version in which the installation runs without errors
WINE_FOR_INSTALL="2.22"
# Wine Version in which Photoshop starts and runs successfully
WINE_FOR_RUNNING="2.22"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_FOR_INSTALL"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
#Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate,
# but avoid the window with the message that prefix already exists
POL_Wine_InstallVersion "$WINE_FOR_RUNNING"
POL_Wine_SetVersionPrefix "$WINE_FOR_RUNNING"
POL_Wine_AutoSetVersionEnv
POL_Debug_InitPrefix
wine wineboot
POL_LoadVar_PROGRAMFILES
[ -e "$POL_USER_ROOT/configurations/post_prefixcreate" ] && \
source "$POL_USER_ROOT/configurations/post_prefixcreate"
POL_System_TmpDelete
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Mensajes |
| Dadu042 | Friday 29 November 2019 at 10:45 |
|
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -3,16 +3,24 @@
# Distribution used to test : Linux Mint 17 Cinnamon 32-bit
# Author: Vladislav Khomenko
# Licence : GPLv3
-# Wine version used: 1.7.48-staging
-
+# Wine version used: 2.22
+
+
+# CHANGELOG
+# [Vladislav Khomenko] (2015-08-29 23-30)
+# First script.
+# [Dadu042] (2019-11-28)
+# Wine 1.7.48-staging -> 2.22
+# + App categories
+
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
# Wine Version in which the installation runs without errors
-WINE_FOR_INSTALL="1.7.48-staging"
+WINE_FOR_INSTALL="2.22"
# Wine Version in which Photoshop starts and runs successfully
-WINE_FOR_RUNNING="1.7.50"
+WINE_FOR_RUNNING="2.22"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
@@ -74,6 +82,7 @@
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
+
#Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate,
# but avoid the window with the message that prefix already exists
POL_Wine_InstallVersion "$WINE_FOR_RUNNING"
@@ -89,7 +98,7 @@
POL_System_TmpDelete
# Create Shortcuts
-POL_Shortcut "photoshop.exe" "$TITLE"
+POL_Shortcut "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
POL_SetupWindow_Close
exit 0
\ No newline at end of file
New source code#!/bin/bash
# Date : (2015-08-29 23-30)
# Distribution used to test : Linux Mint 17 Cinnamon 32-bit
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 2.22
# CHANGELOG
# [Vladislav Khomenko] (2015-08-29 23-30)
# First script.
# [Dadu042] (2019-11-28)
# Wine 1.7.48-staging -> 2.22
# + App categories
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
# Wine Version in which the installation runs without errors
WINE_FOR_INSTALL="2.22"
# Wine Version in which Photoshop starts and runs successfully
WINE_FOR_RUNNING="2.22"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_FOR_INSTALL"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
#Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate,
# but avoid the window with the message that prefix already exists
POL_Wine_InstallVersion "$WINE_FOR_RUNNING"
POL_Wine_SetVersionPrefix "$WINE_FOR_RUNNING"
POL_Wine_AutoSetVersionEnv
POL_Debug_InitPrefix
wine wineboot
POL_LoadVar_PROGRAMFILES
[ -e "$POL_USER_ROOT/configurations/post_prefixcreate" ] && \
source "$POL_USER_ROOT/configurations/post_prefixcreate"
POL_System_TmpDelete
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE" "" "" "Graphics;RasterGraphics;"
POL_SetupWindow_Close
exit 0 Respuestas |
| vlad88 | Saturday 29 August 2015 at 22:35 |
vlad88
|
WarningThis update has not been approved yet by the team. MensajesAdded installation tahoma2. Wine version for running is 1.7.50 Differences@@ -0,0 +1,95 @@ +#!/bin/bash +# Date : (2015-08-29 23-30) +# Distribution used to test : Linux Mint 17 Cinnamon 32-bit +# Author: Vladislav Khomenko +# Licence : GPLv3 +# Wine version used: 1.7.48-staging + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCC2014" +# Wine Version in which the installation runs without errors +WINE_FOR_INSTALL="1.7.48-staging" +# Wine Version in which Photoshop starts and runs successfully +WINE_FOR_RUNNING="1.7.50" +TITLE="Adobe Photoshop CC 2014" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Vladislav Khomenko" + + + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + + + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINE_FOR_INSTALL" +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d" + POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop + INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe" +elif [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +fi + +# Configuration +Set_OS "win7" + + +#Dependencies +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_FontsSmoothRGB +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_gecko +POL_Call POL_Install_corefonts +POL_Call POL_Install_tahoma2 + + + +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" +#Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate, +# but avoid the window with the message that prefix already exists +POL_Wine_InstallVersion "$WINE_FOR_RUNNING" +POL_Wine_SetVersionPrefix "$WINE_FOR_RUNNING" +POL_Wine_AutoSetVersionEnv +POL_Debug_InitPrefix +wine wineboot +POL_LoadVar_PROGRAMFILES +[ -e "$POL_USER_ROOT/configurations/post_prefixcreate" ] && \ +source "$POL_USER_ROOT/configurations/post_prefixcreate" + + +POL_System_TmpDelete + +# Create Shortcuts +POL_Shortcut "photoshop.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2015-08-29 23-30)
# Distribution used to test : Linux Mint 17 Cinnamon 32-bit
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.48-staging
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
# Wine Version in which the installation runs without errors
WINE_FOR_INSTALL="1.7.48-staging"
# Wine Version in which Photoshop starts and runs successfully
WINE_FOR_RUNNING="1.7.50"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_FOR_INSTALL"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_tahoma2
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
#Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate,
# but avoid the window with the message that prefix already exists
POL_Wine_InstallVersion "$WINE_FOR_RUNNING"
POL_Wine_SetVersionPrefix "$WINE_FOR_RUNNING"
POL_Wine_AutoSetVersionEnv
POL_Debug_InitPrefix
wine wineboot
POL_LoadVar_PROGRAMFILES
[ -e "$POL_USER_ROOT/configurations/post_prefixcreate" ] && \
source "$POL_USER_ROOT/configurations/post_prefixcreate"
POL_System_TmpDelete
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 RespuestasMonday 26 October 2015 at 15:05
Sunday 2 June 2019 at 10:42
|
| vlad88 | Friday 7 August 2015 at 11:58 |
vlad88
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,94 @@ +#!/bin/bash +# Date : (2015-08-04 02-54) +# Distribution used to test : Linux Mint 17 +# Author: Vladislav Khomenko +# Licence : GPLv3 +# Wine version used: 1.7.44 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCC2014" +# Wine Version in which the installation runs without errors +WINE_FOR_INSTALL="1.7.48-staging" +# Wine Version in which Photoshop starts and runs successfully +WINE_FOR_RUNNING="1.7.44" +TITLE="Adobe Photoshop CC 2014" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Vladislav Khomenko" + + + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + + + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINE_FOR_INSTALL" +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d" + POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop + INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe" +elif [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +fi + +# Configuration +Set_OS "win7" + + +#Dependencies +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_FontsSmoothRGB +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_gecko +POL_Call POL_Install_corefonts + + + +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" +# Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate, +# but avoid the window with the message that prefix already exists +POL_Wine_InstallVersion "$WINE_FOR_RUNNING" +POL_Wine_SetVersionPrefix "$WINE_FOR_RUNNING" +POL_Wine_AutoSetVersionEnv +POL_Debug_InitPrefix +wine wineboot +POL_LoadVar_PROGRAMFILES +[ -e "$POL_USER_ROOT/configurations/post_prefixcreate" ] && \ +source "$POL_USER_ROOT/configurations/post_prefixcreate" + + +POL_System_TmpDelete + +# Create Shortcuts +POL_Shortcut "photoshop.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2015-08-04 02-54)
# Distribution used to test : Linux Mint 17
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
# Wine Version in which the installation runs without errors
WINE_FOR_INSTALL="1.7.48-staging"
# Wine Version in which Photoshop starts and runs successfully
WINE_FOR_RUNNING="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_FOR_INSTALL"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
# Select the version wine fo running. We perform the same steps that POL_Wine_PrefixCreate,
# but avoid the window with the message that prefix already exists
POL_Wine_InstallVersion "$WINE_FOR_RUNNING"
POL_Wine_SetVersionPrefix "$WINE_FOR_RUNNING"
POL_Wine_AutoSetVersionEnv
POL_Debug_InitPrefix
wine wineboot
POL_LoadVar_PROGRAMFILES
[ -e "$POL_USER_ROOT/configurations/post_prefixcreate" ] && \
source "$POL_USER_ROOT/configurations/post_prefixcreate"
POL_System_TmpDelete
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 RespuestasWednesday 12 August 2015 at 16:23
Thursday 20 August 2015 at 13:05
|
| vlad88 | Friday 7 August 2015 at 2:26 |
vlad88
|
WarningThis update has not been approved yet by the team. MensajesThe new version of the script I am using wine "1.7.48-staging" for installation. With this version Photoshop installed without errors. Then I switch to the wine "1.7.44". With this version Photoshop has successfully launched and running. Differences@@ -0,0 +1,80 @@ +#!/bin/bash +# Date : (2015-08-06 03-25) +# Distribution used to test : Linux Mint 17 +# Author: Vladislav Khomenko +# Licence : GPLv3 +# Wine version used: 1.7.44 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCC2014" +WINEFORINSTALL="1.7.48-staging" +WINEFORRUNNING="1.7.44" +TITLE="Adobe Photoshop CC 2014" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Vladislav Khomenko" + + + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE" + + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEFORINSTALL" +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d" + POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop + INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe" +elif [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +fi + +# Configuration +Set_OS "win7" + + +#Dependencies +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_FontsSmoothRGB +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_gecko + + + +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" +POL_Wine_PrefixCreate "$WINEFORRUNNING" +POL_System_TmpDelete + +# Create Shortcuts +POL_Shortcut "photoshop.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2015-08-06 03-25)
# Distribution used to test : Linux Mint 17
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
WINEFORINSTALL="1.7.48-staging"
WINEFORRUNNING="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Do not click the "Launch now" at the end of the installation. It is not going to work.')" "$TITLE"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEFORINSTALL"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
POL_Wine_PrefixCreate "$WINEFORRUNNING"
POL_System_TmpDelete
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 Respuestas |
| vlad88 | Tuesday 4 August 2015 at 8:28 |
vlad88
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,88 @@
+#!/bin/bash
+# Date : (2015-08-04 09-27)
+# Distribution used to test : Linux Mint 17
+# Author: Vladislav Khomenko
+# Licence : GPLv3
+# Wine version used: 1.7.44
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+PREFIX="PhotoshopCC2014"
+WINEVERSION="1.7.44"
+TITLE="Adobe Photoshop CC 2014"
+EDITOR="Adobe Systems Inc."
+GAME_URL="http://www.adobe.com"
+AUTHOR="Vladislav Khomenko"
+
+#Initialization
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
+POL_SetupWindow_Init
+
+POL_Debug_Init
+
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+# Create Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+POL_System_TmpCreate "$PREFIX"
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+ cd "$POL_System_TmpDir"
+ POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
+ POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
+ INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
+elif [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+ cd "$HOME"
+ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+ INSTALLER="$APP_ANSWER"
+fi
+
+# Configuration
+Set_OS "win7"
+
+
+#Dependencies
+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_FontsSmoothRGB
+POL_Call POL_Install_vcrun2008
+POL_Call POL_Install_vcrun2010
+POL_Call POL_Install_gecko
+
+
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: Perphas the installer will say that it has failed but it will actually keep installing.
+Do not close the installer. Watch the progress of the installation in this window Playonlinux')" "$TITLE"
+POL_Wine "$INSTALLER"
+
+installed=0
+prevInstalled=-1
+finalInstalled=1490460
+POL_SetupWindow_pulsebar "$(eval_gettext 'Installing Photoshop')" "$TITLE"
+persentage=0
+while [[ $installed -le $finalInstalled || $prevInstalled != $installed ]]
+ do
+ prevInstalled=$installed
+ installed=`du -s ~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program\ Files | awk '{print$1}'`
+ POL_SetupWindow_set_text "$(eval_gettext '$installed of $finalInstalled bytes installed')"
+ persentage=$(($installed * 100 / $finalInstalled))
+
+ POL_SetupWindow_pulse "$persentage"
+ sleep 2
+done
+
+
+# Create Shortcuts
+POL_Shortcut "photoshop.exe" "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file
New source code#!/bin/bash
# Date : (2015-08-04 09-27)
# Distribution used to test : Linux Mint 17
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
WINEVERSION="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Perphas the installer will say that it has failed but it will actually keep installing.
Do not close the installer. Watch the progress of the installation in this window Playonlinux')" "$TITLE"
POL_Wine "$INSTALLER"
installed=0
prevInstalled=-1
finalInstalled=1490460
POL_SetupWindow_pulsebar "$(eval_gettext 'Installing Photoshop')" "$TITLE"
persentage=0
while [[ $installed -le $finalInstalled || $prevInstalled != $installed ]]
do
prevInstalled=$installed
installed=`du -s ~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program\ Files | awk '{print$1}'`
POL_SetupWindow_set_text "$(eval_gettext '$installed of $finalInstalled bytes installed')"
persentage=$(($installed * 100 / $finalInstalled))
POL_SetupWindow_pulse "$persentage"
sleep 2
done
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 RespuestasTuesday 4 August 2015 at 20:13
Wednesday 5 August 2015 at 0:46
Wednesday 5 August 2015 at 1:55
Wednesday 5 August 2015 at 3:29
|
| vlad88 | Tuesday 4 August 2015 at 1:57 |
vlad88
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,98 @@
+#!/bin/bash
+# Date : (2015-08-04 02-54)
+# Distribution used to test : Linux Mint 17
+# Author: Vladislav Khomenko
+# Licence : GPLv3
+# Wine version used: 1.7.44
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+PREFIX="PhotoshopCC2014"
+WINEVERSION="1.7.44"
+TITLE="Adobe Photoshop CC 2014"
+EDITOR="Adobe Systems Inc."
+GAME_URL="http://www.adobe.com"
+AUTHOR="Vladislav Khomenko"
+
+#Initialization
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
+POL_SetupWindow_Init
+
+POL_Debug_Init
+
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+# Create Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+POL_System_TmpCreate "$PREFIX"
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+
+if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+ cd "$POL_System_TmpDir"
+ POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
+ POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
+ INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
+elif [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+ cd "$HOME"
+ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+ INSTALLER="$APP_ANSWER"
+fi
+
+# Configuration
+Set_OS "win7"
+
+
+#Dependencies
+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_FontsSmoothRGB
+POL_Call POL_Install_vcrun2008
+POL_Call POL_Install_vcrun2010
+POL_Call POL_Install_gecko
+
+
+POL_SetupWindow_message "$(eval_gettext 'NOTICE: Perphas the installer will say that it has failed but it will actually keep installing.
+Do not close the installer. Follow the progress of the installation in this window Playonlinux')" "$TITLE"
+POL_Wine "$INSTALLER"
+
+downloaded=0
+installed=0
+finalDownloaded=1478884
+finalInstalled=1261684
+POL_SetupWindow_pulsebar "$(eval_gettext 'Installing Photoshop')" "$TITLE"
+persentage=0
+while [ true ]
+ do
+ if [ -d "$HOME/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program Files/Adobe/Adobe Photoshop CC 2014 (32 Bit)" ]
+ then
+ installed=`du -s ~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program\ Files/Adobe/Adobe\ Photoshop\ CC\ 2014\ \(32\ Bit\) | awk '{print$1}'`
+ POL_SetupWindow_set_text "$(eval_gettext '$installed of $finalInstalled bytes installed')"
+ persentage=$(($installed * 100 / $finalInstalled))
+ if [ $installed -ge $finalInstalled ]
+ then
+ break
+ fi
+ else
+ downloaded=`du -s ~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program\ Files/Common\ Files/Adobe | awk '{print$1}'`
+ persentage=$(($downloaded * 100 / $finalDownloaded))
+ POL_SetupWindow_set_text "$(eval_gettext '$downloaded of $finalDownloaded bytes downloaded')"
+ fi
+
+ POL_SetupWindow_pulse "$persentage"
+done
+
+
+# Create Shortcuts
+POL_Shortcut "photoshop.exe" "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file
New source code#!/bin/bash
# Date : (2015-08-04 02-54)
# Distribution used to test : Linux Mint 17
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
WINEVERSION="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_System_TmpCreate "$PREFIX"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" "586f2c7f8cf5e87cbaf46b3115d0a43d"
POL_System_unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_SetupWindow_message "$(eval_gettext 'NOTICE: Perphas the installer will say that it has failed but it will actually keep installing.
Do not close the installer. Follow the progress of the installation in this window Playonlinux')" "$TITLE"
POL_Wine "$INSTALLER"
downloaded=0
installed=0
finalDownloaded=1478884
finalInstalled=1261684
POL_SetupWindow_pulsebar "$(eval_gettext 'Installing Photoshop')" "$TITLE"
persentage=0
while [ true ]
do
if [ -d "$HOME/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program Files/Adobe/Adobe Photoshop CC 2014 (32 Bit)" ]
then
installed=`du -s ~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program\ Files/Adobe/Adobe\ Photoshop\ CC\ 2014\ \(32\ Bit\) | awk '{print$1}'`
POL_SetupWindow_set_text "$(eval_gettext '$installed of $finalInstalled bytes installed')"
persentage=$(($installed * 100 / $finalInstalled))
if [ $installed -ge $finalInstalled ]
then
break
fi
else
downloaded=`du -s ~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/Program\ Files/Common\ Files/Adobe | awk '{print$1}'`
persentage=$(($downloaded * 100 / $finalDownloaded))
POL_SetupWindow_set_text "$(eval_gettext '$downloaded of $finalDownloaded bytes downloaded')"
fi
POL_SetupWindow_pulse "$persentage"
done
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0 Respuestas |
| vlad88 | Saturday 1 August 2015 at 20:46 |
vlad88
|
WarningThis update has not been approved yet by the team. MensajesI removed the Russian text of the message. Removed unnecessary use winetricks Differences@@ -0,0 +1,75 @@ +#!/bin/bash +# Date : (2015-08-01 21-41) +# Distribution used to test : Linux Mint 17 +# Author: Vladislav Khomenko +# Licence : GPLv3 +# Wine version used: 1.7.44 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCC2014" +WINEVERSION="1.7.44" +TITLE="Adobe Photoshop CC 2014" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Vladislav Khomenko" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + + +POL_SetupWindow_message "$(eval_gettext 'NOTICE: The installer will say that it has failed but it will actually keep installing. Run in terminal: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 When the number stops changing, the installation is done and you can exit it.')" "$TITLE" + + + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +POL_System_TmpCreate "$PREFIX" + +[ -z "$POL_SELECTED_FILE" ] && POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" + unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop + INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe" +elif [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +fi + +export WINEARCH=win32 +# Configuration +Set_OS "win7" + + +#Dependencies +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_FontsSmoothRGB +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_gecko + +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "photoshop.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 New source code#!/bin/bash
# Date : (2015-08-01 21-41)
# Distribution used to test : Linux Mint 17
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
WINEVERSION="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "$(eval_gettext 'NOTICE: The installer will say that it has failed but it will actually keep installing. Run in terminal: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 When the number stops changing, the installation is done and you can exit it.')" "$TITLE"
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_System_TmpCreate "$PREFIX"
[ -z "$POL_SELECTED_FILE" ] && POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip"
unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
export WINEARCH=win32
# Configuration
Set_OS "win7"
#Dependencies
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_FontsSmoothRGB
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0
Respuestas |
| vlad88 | Saturday 1 August 2015 at 18:52 |
vlad88
|
WarningThis update has not been approved yet by the team. MensajesFixed sintax error in script. Differences@@ -0,0 +1,81 @@ +#!/bin/bash +# Date : (2015-07-31 20-46) +# Distribution used to test : Linux Mint 17 Cinnamon 32 bit +# Author: Vladislav Khomenko +# Licence : GPLv3 +# Wine version used: 1.7.44 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCC2014" +WINEVERSION="1.7.44" +TITLE="Adobe Photoshop CC 2014" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Vladislav Khomenko" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +if [ "$LANG" = "ru_UA.UTF-8" ] +then +POL_SetupWindow_message "$(eval_gettext '???????? ????????:???????? ?????????? ?????? ??? ????????? ?? ???????. ?? ????? ???? ????????? ????? ????????????. ????????? ? ?????????: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 ????? ????? ?????????? ????????, ????????? ???????????, ???????? ?????????? ? ????????')" "$TITLE" +else +POL_SetupWindow_message "$(eval_gettext 'NOTICE: The installer will say that it has failed but it will actually keep installing. Run in terminal: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 When the number stops changing, the installation is done and you can exit it.')" "$TITLE" +fi + + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +POL_System_TmpCreate "$PREFIX" + +[ -z "$POL_SELECTED_FILE" ] && POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" + unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop + INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe" +elif [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +fi + +export WINEARCH=win32 +# Configuration +Set_OS "win7" + + +#Dependencies +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 +wget "http://www.kegel.com/wine/winetricks" +chmod +x ./winetricks +WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks vcrun2005sp1 +WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks fontsmooth-rgb +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_gecko + +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "photoshop.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 New source code#!/bin/bash
# Date : (2015-07-31 20-46)
# Distribution used to test : Linux Mint 17 Cinnamon 32 bit
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
WINEVERSION="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
if [ "$LANG" = "ru_UA.UTF-8" ]
then
POL_SetupWindow_message "$(eval_gettext '???????? ????????:???????? ?????????? ?????? ??? ????????? ?? ???????. ?? ????? ???? ????????? ????? ????????????. ????????? ? ?????????: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 ????? ????? ?????????? ????????, ????????? ???????????, ???????? ?????????? ? ????????')" "$TITLE"
else
POL_SetupWindow_message "$(eval_gettext 'NOTICE: The installer will say that it has failed but it will actually keep installing. Run in terminal: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 When the number stops changing, the installation is done and you can exit it.')" "$TITLE"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_System_TmpCreate "$PREFIX"
[ -z "$POL_SELECTED_FILE" ] && POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip"
unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
export WINEARCH=win32
# Configuration
Set_OS "win7"
#Dependencies
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
wget "http://www.kegel.com/wine/winetricks"
chmod +x ./winetricks
WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks vcrun2005sp1
WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks fontsmooth-rgb
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0
Respuestas |
| vlad88 | Friday 31 July 2015 at 19:57 |
vlad88
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,84 @@ +#!/bin/bash +# Date : (2015-07-31 20-46) +# Distribution used to test : Ubuntu 9.10 +# Author: Vladislav Khomenko +# Licence : GPLv3 +# Wine version used: 1.7.44 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="PhotoshopCC2014" +WINEVERSION="1.7.44" +TITLE="Adobe Photoshop CC 2014" +EDITOR="Adobe Systems Inc." +GAME_URL="http://www.adobe.com" +AUTHOR="Vladislav Khomenko" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE" +POL_SetupWindow_Init + +#POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +if [ "$LANG" = "ru_UA.UTF-8" or "$LANG" = "ru_RU.UTF-8"] +then +POL_SetupWindow_message "$(eval_gettext ???????? ????????: +???????? ?????????? ?????? ??? ????????? ?? ???????. ?? ????? ???? ????????? ????? ????????????. ????????? ? ?????????: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 ????? ????? ?????????? ????????, ????????? ???????????, ???????? ?????????? ? ???????? +')" "$TITLE" +else +POL_SetupWindow_message "$(eval_gettext 'NOTICE: The installer will say that it has failed but it will actually keep installing. Run in terminal: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 When the number stops changing, the installation is done and you can exit it. +')" "$TITLE" +fi + + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +POL_System_TmpCreate "$PREFIX" + +[ -z "$POL_SELECTED_FILE" ] && POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip" + unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop + INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe" +elif [ "$INSTALL_METHOD" = "LOCAL" ] +then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +fi + +export WINEARCH=win32 +# Configuration +Set_OS "win7" + + +#Dependencies +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 +wget "http://www.kegel.com/wine/winetricks" +chmod +x ./winetricks +WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks vcrun2005sp1 +WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks fontsmooth-rgb +POL_Call POL_Install_vcrun2008 +POL_Call POL_Install_vcrun2010 +POL_Call POL_Install_gecko + +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "photoshop.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 New source code#!/bin/bash
# Date : (2015-07-31 20-46)
# Distribution used to test : Ubuntu 9.10
# Author: Vladislav Khomenko
# Licence : GPLv3
# Wine version used: 1.7.44
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
PREFIX="PhotoshopCC2014"
WINEVERSION="1.7.44"
TITLE="Adobe Photoshop CC 2014"
EDITOR="Adobe Systems Inc."
GAME_URL="http://www.adobe.com"
AUTHOR="Vladislav Khomenko"
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/PhotoshopCS6/top.jpg" "http://files.playonlinux.com/resources/setups/PhotoshopCS6/left.jpg" "$TITLE"
POL_SetupWindow_Init
#POL_Debug_Init
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
if [ "$LANG" = "ru_UA.UTF-8" or "$LANG" = "ru_RU.UTF-8"]
then
POL_SetupWindow_message "$(eval_gettext ???????? ????????:
???????? ?????????? ?????? ??? ????????? ?? ???????. ?? ????? ???? ????????? ????? ????????????. ????????? ? ?????????: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 ????? ????? ?????????? ????????, ????????? ???????????, ???????? ?????????? ? ????????
')" "$TITLE"
else
POL_SetupWindow_message "$(eval_gettext 'NOTICE: The installer will say that it has failed but it will actually keep installing. Run in terminal: watch du -s ~/.PlayOnLinux/wineprefix/PhotoshopCC2014 When the number stops changing, the installation is done and you can exit it.
')" "$TITLE"
fi
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
POL_System_TmpCreate "$PREFIX"
[ -z "$POL_SELECTED_FILE" ] && POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
cd "$POL_System_TmpDir"
POL_Download "http://download.adobe.com/pub/adobe/photoshop/win/cc/AdobePhotoshop2014-32bit-mul.zip"
unzip AdobePhotoshop2014-32bit-mul.zip -d $POL_System_TmpDir/photoshop
INSTALLER="$POL_System_TmpDir/photoshop/Set-up.exe"
elif [ "$INSTALL_METHOD" = "LOCAL" ]
then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
fi
export WINEARCH=win32
# Configuration
Set_OS "win7"
#Dependencies
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
wget "http://www.kegel.com/wine/winetricks"
chmod +x ./winetricks
WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks vcrun2005sp1
WINEPREFIX=$HOME/.PlayOnLinux/wineprefix/$PREFIX sh winetricks fontsmooth-rgb
POL_Call POL_Install_vcrun2008
POL_Call POL_Install_vcrun2010
POL_Call POL_Install_gecko
POL_Wine "$INSTALLER"
POL_Wine_WaitExit "$TITLE"
# Create Shortcuts
POL_Shortcut "photoshop.exe" "$TITLE"
POL_SetupWindow_Close
exit 0
Respuestas |
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
Install this program 
