Adobe Photoshop Lightroom 5
Informations
Creator | Message |
---|---|
Ronin DUSETTE
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks7 4 DescriptionImage organization and image manipulation software. Wikipedia. THIS SCRIPT SHOULD WORK WITH THE ADOBE CC VERSION OF LIGHTROOM, AS WELL. IMPORTANT (2014): This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers should be used. ScreenshotsSource code#!/bin/bash # Date : (2014) # Distribution used to test : Mint 18 LXDE 64-bit # Author : RoninDusette, taurin # Licence : GPLv3 # PlayOnLinux: 4.2.10 # # CHANGELOG # [Ronin Dusette] (2014) # First script. # [taurin] (2016-11-11) # Some improvements, fixes and additional information for better start the program. # [Dadu042] (2019-11-28) # Wine 1.8.5 -> 2.22 # Force x86 mode. # Add app categories. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom57" WINEVERSION="2.22" TITLE="Adobe Photoshop Lightroom 5" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette, taurin" #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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may NOT work well with most Intel graphics. Nvidia and AMD proprietary drivers are REQUIRED in most cases. \n\n Needs sRGB color profile for images to be visible. Copy sRGB.icm (comes with some native Linux software, such as GraphicsMagick) to "~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/windows/system32/spool/drivers/color/sRGB Color Space Profile.icm". \n Or if you have winetricks installed you can run "env WINEPREFIX=~/.PlayOnLinux/wineprefix/$PREFIX winetricks colorprofile"')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_wintrust POL_Call POL_Install_msasn1 POL_Call POL_Install_vcrun2008 POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" "0c0f6e300800e49472e9b2e0890a09c1" cd "$WINEPREFIX/drive_c/windows/temp" cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL if [ "$POL_ARCH" = "amd64" ]; then cp -f WINHTTP.DLL ../syswow64/winhttp.dll else cp -f WINHTTP.DLL ../system32/winhttp.dll fi POL_Wine_OverrideDLL "native, builtin" "winhttp" POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" cd "$WINEPREFIX/drive_c/windows/temp" cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WININET.DLL if [ "$POL_ARCH" = "amd64" ]; then cp -f WININET.DLL ../syswow64/wininet.dll else cp -f WININET.DLL ../system32/wininet.dll fi POL_Wine_OverrideDLL "native, builtin" "wininet" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs POL_Call POL_Install_FontsSmoothRGB Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" "" "" "Graphics;RasterGraphics;" POL_Shortcut_InsertBeforeWine "$TITLE" "export LC_ALL=C.UTF-8" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Denilson | Friday 27 May 2022 at 20:01 |
Denilson
|
MessageHi. Replies |
Dadu042 | Friday 29 November 2019 at 11:04 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,16 +1,26 @@ #!/bin/bash -# Date : (2016-11-11) +# Date : (2014) # Distribution used to test : Mint 18 LXDE 64-bit # Author : RoninDusette, taurin # Licence : GPLv3 # PlayOnLinux: 4.2.10 - - +# +# CHANGELOG +# [Ronin Dusette] (2014) +# First script. +# [taurin] (2016-11-11) +# Some improvements, fixes and additional information for better start the program. +# [Dadu042] (2019-11-28) +# Wine 1.8.5 -> 2.22 +# Force x86 mode. +# Add app categories. + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom57" -WINEVERSION="1.8.5" +WINEVERSION="2.22" TITLE="Adobe Photoshop Lightroom 5" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" @@ -34,6 +44,7 @@ # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration @@ -81,8 +92,8 @@ POL_Call POL_Install_gdiplus # Create Shortcuts -POL_Shortcut "lightroom.exe" "$TITLE" +POL_Shortcut "lightroom.exe" "$TITLE" "" "" "Graphics;RasterGraphics;" POL_Shortcut_InsertBeforeWine "$TITLE" "export LC_ALL=C.UTF-8" POL_SetupWindow_Close -exit 0 +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2014) # Distribution used to test : Mint 18 LXDE 64-bit # Author : RoninDusette, taurin # Licence : GPLv3 # PlayOnLinux: 4.2.10 # # CHANGELOG # [Ronin Dusette] (2014) # First script. # [taurin] (2016-11-11) # Some improvements, fixes and additional information for better start the program. # [Dadu042] (2019-11-28) # Wine 1.8.5 -> 2.22 # Force x86 mode. # Add app categories. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom57" WINEVERSION="2.22" TITLE="Adobe Photoshop Lightroom 5" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette, taurin" #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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may NOT work well with most Intel graphics. Nvidia and AMD proprietary drivers are REQUIRED in most cases. \n\n Needs sRGB color profile for images to be visible. Copy sRGB.icm (comes with some native Linux software, such as GraphicsMagick) to "~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/windows/system32/spool/drivers/color/sRGB Color Space Profile.icm". \n Or if you have winetricks installed you can run "env WINEPREFIX=~/.PlayOnLinux/wineprefix/$PREFIX winetricks colorprofile"')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_wintrust POL_Call POL_Install_msasn1 POL_Call POL_Install_vcrun2008 POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" "0c0f6e300800e49472e9b2e0890a09c1" cd "$WINEPREFIX/drive_c/windows/temp" cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL if [ "$POL_ARCH" = "amd64" ]; then cp -f WINHTTP.DLL ../syswow64/winhttp.dll else cp -f WINHTTP.DLL ../system32/winhttp.dll fi POL_Wine_OverrideDLL "native, builtin" "winhttp" POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" cd "$WINEPREFIX/drive_c/windows/temp" cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WININET.DLL if [ "$POL_ARCH" = "amd64" ]; then cp -f WININET.DLL ../syswow64/wininet.dll else cp -f WININET.DLL ../system32/wininet.dll fi POL_Wine_OverrideDLL "native, builtin" "wininet" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs POL_Call POL_Install_FontsSmoothRGB Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" "" "" "Graphics;RasterGraphics;" POL_Shortcut_InsertBeforeWine "$TITLE" "export LC_ALL=C.UTF-8" POL_SetupWindow_Close exit 0 Replies |
gabry78 | Wednesday 28 November 2018 at 16:14 |
gabry78
|
MessageHello I've recently updated ubuntu from 16.04 to 18.04. In the previous version I installed Lightroom 5 32bit succesfully. After ubuntu update lightroom didn't work anymore so I tried to install without success.I tried several times. Sometimes in debug file I saw that wine had been crashed. The version of playonlinux is the same (4.3.3). I report that freetype versiona installed is 2.8.1
I attach the playonlinux log file:
1/28/18 15:42:14] - Content of /home/gabry/.PlayOnLinux//tmp/regkey.reg [HKEY_CURRENT_USER\Software\Wine] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides] [HKEY_CURRENT_USER\Software\Wine\DllOverrides]
RepliesFriday 29 November 2019 at 11:05
|
Carbur | Monday 26 February 2018 at 18:03 |
Carbur
|
MessageHello, When I try to install Lightroom 6.0 through Playonlinux, I get an Adobe message saying : "The installation failed. This product can be installed on a 64 bits system only", while it's the 64 bits version of Ubuntu that I use. Do you have any idea on how to fix this ? Thanks in advance. Replies |
Ronin DUSETTE | Saturday 6 January 2018 at 18:25 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -38,6 +38,32 @@ # Configuration Set_OS "win7" + +POL_Call POL_Install_atmlib +POL_Call POL_Install_corefonts +POL_Call POL_Install_wintrust +POL_Call POL_Install_msasn1 +POL_Call POL_Install_vcrun2008 +POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" "0c0f6e300800e49472e9b2e0890a09c1" + +cd "$WINEPREFIX/drive_c/windows/temp" +cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL +if [ "$POL_ARCH" = "amd64" ]; then + cp -f WINHTTP.DLL ../syswow64/winhttp.dll +else + cp -f WINHTTP.DLL ../system32/winhttp.dll +fi +POL_Wine_OverrideDLL "native, builtin" "winhttp" +POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" +cd "$WINEPREFIX/drive_c/windows/temp" +cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WININET.DLL +if [ "$POL_ARCH" = "amd64" ]; then + cp -f WININET.DLL ../syswow64/wininet.dll +else + cp -f WININET.DLL ../system32/wininet.dll +fi +POL_Wine_OverrideDLL "native, builtin" "wininet" + # Installation POL_Wine_WaitBefore "$TITLE" New source code#!/bin/bash # Date : (2016-11-11) # Distribution used to test : Mint 18 LXDE 64-bit # Author : RoninDusette, taurin # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom57" WINEVERSION="1.8.5" TITLE="Adobe Photoshop Lightroom 5" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette, taurin" #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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may NOT work well with most Intel graphics. Nvidia and AMD proprietary drivers are REQUIRED in most cases. \n\n Needs sRGB color profile for images to be visible. Copy sRGB.icm (comes with some native Linux software, such as GraphicsMagick) to "~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/windows/system32/spool/drivers/color/sRGB Color Space Profile.icm". \n Or if you have winetricks installed you can run "env WINEPREFIX=~/.PlayOnLinux/wineprefix/$PREFIX winetricks colorprofile"')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" POL_Call POL_Install_atmlib POL_Call POL_Install_corefonts POL_Call POL_Install_wintrust POL_Call POL_Install_msasn1 POL_Call POL_Install_vcrun2008 POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" "0c0f6e300800e49472e9b2e0890a09c1" cd "$WINEPREFIX/drive_c/windows/temp" cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WINHTTP.DLL if [ "$POL_ARCH" = "amd64" ]; then cp -f WINHTTP.DLL ../syswow64/winhttp.dll else cp -f WINHTTP.DLL ../system32/winhttp.dll fi POL_Wine_OverrideDLL "native, builtin" "winhttp" POL_Download_Resource "https://web.archive.org/web/20061224003406/http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" "0c0f6e300800e49472e9b2e0890a09c1" cd "$WINEPREFIX/drive_c/windows/temp" cabextract "$POL_USER_ROOT/ressources/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe" -F WININET.DLL if [ "$POL_ARCH" = "amd64" ]; then cp -f WININET.DLL ../syswow64/wininet.dll else cp -f WININET.DLL ../system32/wininet.dll fi POL_Wine_OverrideDLL "native, builtin" "wininet" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs POL_Call POL_Install_FontsSmoothRGB Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "export LC_ALL=C.UTF-8" POL_SetupWindow_Close exit 0 Replies |
bipco | Thursday 23 November 2017 at 13:03 |
bipco
|
MessageHi Anyone any experience of getting Lightroom 5 to login to Lightroom Mobile? I've installed via this script: https://github.com/corbindavenport/creative-cloud-linux/tree/dev Which has worked well, mobile sync is about the only thing I've found so far that isn't working (after getting the Flickr plugin (http://regex.info/blog/lightroom-goodies/flickr) to fix Flickr non-login. Thanks Warren
Replies |
captain_Deken | Monday 19 December 2016 at 23:00 |
captain_Deken
|
MessageHi, everyone! This program now runs well. But then I tried to run English LR 5.7.1 on Ubuntu 14.04 (Xubuntu 16.04) LTS 64-bit with russian localisation, I receive only a splashscreen and system stops. I solved this by adding command "export LC_ALL=C.UTF-8" before programm runs and now everything is OK. This problem appears on different versions of LR and different distribs of Ubuntu. I think this information could be added to programm discription, because I have no idea how to modify PlayOnLinux script. P.S. Sorry for my English=) RepliesFriday 23 December 2016 at 11:06
Saturday 14 January 2017 at 15:31
Monday 23 January 2017 at 16:58
|
imtaurin | Friday 11 November 2016 at 17:17 |
imtaurin
|
WarningThis update has not been approved yet by the team. MessageSome improvements, fixes and additional information for better start the program. PS Lightroom runs well on Intel graphics, that's why I made little change in "important" notice. Differences@@ -1,56 +1,62 @@ #!/bin/bash -# Date : (2014-08-24) -# Distribution used to test : Kubuntu 14.04 LTS 64-bit -# Author : RoninDusette +# Date : (2016-11-11) +# Distribution used to test : Mint 18 LXDE 64-bit +# Author : RoninDusette, taurin # Licence : GPLv3 -# PlayOnLinux: 4.2.4 - - +# PlayOnLinux: 4.2.10 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -PREFIX="Lightroom54" -WINEVERSION="1.7.11-lightroom54" + +PREFIX="Lightroom57" +WINEVERSION="1.8.5" TITLE="Adobe Photoshop Lightroom 5" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" -AUTHOR="RoninDusette" - +AUTHOR="RoninDusette, taurin" + #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" - -POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers are REQUIRED in most cases.')" "$TITLE" - + +POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may NOT work well with most Intel graphics. Nvidia and AMD proprietary drivers are REQUIRED in most cases. +\n\n +Needs sRGB color profile for images to be visible. Copy sRGB.icm (comes with some native Linux software, such as GraphicsMagick) to "~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/windows/system32/spool/drivers/color/sRGB Color Space Profile.icm". +\n +Or if you have winetricks installed you can run "env WINEPREFIX=~/.PlayOnLinux/wineprefix/$PREFIX winetricks colorprofile"')" "$TITLE" + # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Configuration Set_OS "win7" - + # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" - + POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" - + #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs +POL_Call POL_Install_FontsSmoothRGB Set_OS "win7" POL_Call POL_Install_gdiplus - + # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" - +POL_Shortcut_InsertBeforeWine "$TITLE" "export LC_ALL=C.UTF-8" + POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 New source code#!/bin/bash # Date : (2016-11-11) # Distribution used to test : Mint 18 LXDE 64-bit # Author : RoninDusette, taurin # Licence : GPLv3 # PlayOnLinux: 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom57" WINEVERSION="1.8.5" TITLE="Adobe Photoshop Lightroom 5" EDITOR="Adobe Systems Inc." GAME_URL="http://www.adobe.com" AUTHOR="RoninDusette, taurin" #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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may NOT work well with most Intel graphics. Nvidia and AMD proprietary drivers are REQUIRED in most cases. \n\n Needs sRGB color profile for images to be visible. Copy sRGB.icm (comes with some native Linux software, such as GraphicsMagick) to "~/.PlayOnLinux/wineprefix/$PREFIX/drive_c/windows/system32/spool/drivers/color/sRGB Color Space Profile.icm". \n Or if you have winetricks installed you can run "env WINEPREFIX=~/.PlayOnLinux/wineprefix/$PREFIX winetricks colorprofile"')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs POL_Call POL_Install_FontsSmoothRGB Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "export LC_ALL=C.UTF-8" POL_SetupWindow_Close exit 0 RepliesSaturday 14 January 2017 at 15:31
Saturday 14 January 2017 at 15:33
Saturday 14 October 2017 at 18:46
|
falldaron | Saturday 30 July 2016 at 2:25 |
falldaron
|
MessageBonjour, C'est très bien, mai il ne reconnait pas ma carte graphique Nvidia Quadro K3100 alors que la meme version de ce logiciel sous windows il et bien reconnu, du coup l'accélération graphique ne s'active pas. ============ english ===========
Hello, Replies |
Erathor | Saturday 23 July 2016 at 12:28 |
Erathor
|
MessageHi all. I've installed Lightroom 5.7 under playonlinux and, really, runs quite good. I've only have seen a couple of issues. a. If I try to use export images with plugins like "Flickr" or "Picasa Uploader" the software reports no internet connection available. Even with a simple account authoritation. b. I loose the image when I try to crop it and, in develop mode, I only can edit images if I click "screen test" mode. I've seen in old posts that this problem could be fixed importing a color profile, but I have not understood how to achieve that.
Thx in advance and king regards for all! Replies |
Deleted account | Thursday 26 May 2016 at 15:18 |
Deleted account
|
MessageWhat's with Lightroom 6? Did somebody try? Replies |
Retro Gamer | Thursday 19 May 2016 at 10:21 |
Retro Gamer
|
MessageThe POL installer fails due to a crc mismatch when downloading resource http://download.microsoft.com/download/5/0/c/50c42d0e-07a8-4a2b-befb-1a403bd0df96/IE5.01sp4-KB871260-Windows2000sp4-x86-ENU.exe. Might need to find a new source for that file. RepliesThursday 19 May 2016 at 10:30
Thursday 19 May 2016 at 21:00
Thursday 19 May 2016 at 21:42
Thursday 19 May 2016 at 22:03
Saturday 21 May 2016 at 2:41
Saturday 21 May 2016 at 2:41
Saturday 21 May 2016 at 3:15
Saturday 21 May 2016 at 11:35
Saturday 21 May 2016 at 11:56
Saturday 21 May 2016 at 15:49
Saturday 21 May 2016 at 16:29
Saturday 21 May 2016 at 16:31
Saturday 21 May 2016 at 16:39
Saturday 21 May 2016 at 18:38
Saturday 21 May 2016 at 21:21
Sunday 22 May 2016 at 0:57
Sunday 22 May 2016 at 1:02
|
maulwurf | Thursday 3 March 2016 at 21:17 |
maulwurf
|
Messageworks well with Lightroom 5.7 (32bit) on Linux Mint 17.3 with a Intel Core i5 2500K with onboard graphics. Had to add a color profile in Colors/Farbe > My monitor to see anything while cropping. Only crash so far is the catalog chooser. Can be prevented by not clicking in the pre populated catalog list but choosing manually with "other location". Some graphic glitches here and there, but no show stopper.
Is there any chance to add Quicktime to the install script for having video support, too? The separate QuickTime POL install is not recognized by LR. RepliesThursday 19 May 2016 at 10:17
Thursday 19 May 2016 at 15:39
|
TrickyDicky | Saturday 24 January 2015 at 4:55 |
TrickyDicky
|
MessageSuccessful install... Thanks! However, Lightroom does not see my NAS where all my photos are stored. NAS connects to Linux Mint fine I would be really grateful if anyone knows how to get Lightroom to access the NAS to import photos... If not I will have to go back to using Windows, which pains me greatly. <Sigh> Cheers RepliesSaturday 24 January 2015 at 5:42
|
Ronin DUSETTE | Friday 19 December 2014 at 21:54 |
Ronin DUSETTE
|
MessageTHIS SHOULD WORK WITH THE ADOBE CC VERSION OF LIGHTROOM, AS WELL. RepliesTuesday 12 January 2016 at 10:14
Tuesday 12 January 2016 at 14:00
Tuesday 12 January 2016 at 17:18
|
SKAL | Wednesday 10 December 2014 at 11:03 |
SKAL
|
WarningThis update has not been approved yet by the team. MessageHi, I've just tried to install it on a ubuntu box. I was using the LR5.7 installation file, but it works anyway. I would like to notify that POL_Install_ie6 was not working giving me some problems with the installation of the kb871260 patch. I've changed the script to POL_Install_ie8 and everything went good untill the end. Differences@@ -44,7 +44,7 @@ #Dependencies Set_OS "winxp" -POL_Call POL_Install_ie6 +POL_Call POL_Install_ie8 POL_Call POL_Install_wmpcodecs Set_OS "win7" POL_Call POL_Install_gdiplus New source code#!/bin/bash # Date : (2014-08-24) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom54" WINEVERSION="1.7.11-lightroom54" TITLE="Adobe Photoshop Lightroom 5" 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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers are REQUIRED in most cases.')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie8 POL_Call POL_Install_wmpcodecs Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" POL_SetupWindow_Close exit 0 RepliesTuesday 16 December 2014 at 7:19
|
Ronin DUSETTE | Saturday 25 October 2014 at 21:26 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -14,7 +14,7 @@ TITLE="Adobe Photoshop Lightroom 5" 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" New source code#!/bin/bash # Date : (2014-08-24) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom54" WINEVERSION="1.7.11-lightroom54" TITLE="Adobe Photoshop Lightroom 5" 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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers are REQUIRED in most cases.')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ronin DUSETTE | Saturday 25 October 2014 at 19:19 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2014-08-24) # Distribution used to test : Kubuntu 14.04 LTS 64-bit -# Author : DJYoshaBYD +# Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.4 New source code#!/bin/bash # Date : (2014-08-24) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom54" WINEVERSION="1.7.11-lightroom54" TITLE="Adobe Photoshop Lightroom 5" 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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers are REQUIRED in most cases.')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Maroce | Wednesday 15 October 2014 at 16:00 |
Maroce
|
Messageim sorry, i've a problem if i click the "install this program" button, can you help me to solve the problem? i hope yes, thx, im Feisal from Indonesia RepliesWednesday 15 October 2014 at 20:09
|
Ronin DUSETTE | Monday 25 August 2014 at 19:56 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageInitial commit. Differences@@ -0,0 +1,56 @@ +#!/bin/bash +# Date : (2014-08-24) +# Distribution used to test : Kubuntu 14.04 LTS 64-bit +# Author : DJYoshaBYD +# Licence : GPLv3 +# PlayOnLinux: 4.2.4 + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="Lightroom54" +WINEVERSION="1.7.11-lightroom54" +TITLE="Adobe Photoshop Lightroom 5" +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" + +POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers are REQUIRED in most cases.')" "$TITLE" + +# Create Prefix +POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "win7" + +# Installation +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$APP_ANSWER" +POL_Wine_WaitExit "$TITLE" + +POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" + +#Dependencies +Set_OS "winxp" +POL_Call POL_Install_ie6 +POL_Call POL_Install_wmpcodecs +Set_OS "win7" +POL_Call POL_Install_gdiplus + +# Create Shortcuts +POL_Shortcut "lightroom.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2014-08-24) # Distribution used to test : Kubuntu 14.04 LTS 64-bit # Author : DJYoshaBYD # Licence : GPLv3 # PlayOnLinux: 4.2.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Lightroom54" WINEVERSION="1.7.11-lightroom54" TITLE="Adobe Photoshop Lightroom 5" 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" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program does NOT work well with most Intel graphics. It WILL crash. Nvidia and AMD proprietary drivers are REQUIRED in most cases.')" "$TITLE" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win7" # Installation POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" POL_SetupWindow_message "$(eval_gettext 'PlayOnLinux will now install a few required programs, including IE6. Just click NEXT through IE install, as you usually would.')" "$TITLE" #Dependencies Set_OS "winxp" POL_Call POL_Install_ie6 POL_Call POL_Install_wmpcodecs Set_OS "win7" POL_Call POL_Install_gdiplus # Create Shortcuts POL_Shortcut "lightroom.exe" "$TITLE" POL_SetupWindow_Close exit 0 RepliesMonday 25 August 2014 at 19:58
Monday 25 August 2014 at 19:59
Monday 25 August 2014 at 20:26
Monday 25 August 2014 at 20:28
Tuesday 26 August 2014 at 1:05
Tuesday 26 August 2014 at 1:12
Tuesday 26 August 2014 at 1:14
Tuesday 26 August 2014 at 1:21
Tuesday 26 August 2014 at 1:25
Tuesday 26 August 2014 at 1:28
Tuesday 26 August 2014 at 1:35
Tuesday 26 August 2014 at 1:39
Tuesday 26 August 2014 at 1:40
Saturday 6 September 2014 at 22:20
Saturday 6 September 2014 at 22:22
Saturday 6 September 2014 at 22:47
Saturday 6 September 2014 at 22:49
Sunday 7 September 2014 at 11:39
Sunday 7 September 2014 at 11:43
Sunday 7 September 2014 at 11:43
Sunday 7 September 2014 at 11:52
Sunday 7 September 2014 at 11:54
Sunday 7 September 2014 at 11:56
Sunday 7 September 2014 at 12:33
Sunday 7 September 2014 at 13:39
Sunday 7 September 2014 at 23:13
Monday 8 September 2014 at 1:58
Monday 8 September 2014 at 2:54
Monday 8 September 2014 at 4:32
Monday 8 September 2014 at 8:57
Monday 8 September 2014 at 16:32
Monday 8 September 2014 at 17:47
Monday 8 September 2014 at 17:52
Monday 8 September 2014 at 17:56
Thursday 9 October 2014 at 18:12
Thursday 9 October 2014 at 18:15
Thursday 9 October 2014 at 18:22
Thursday 9 October 2014 at 18:32
Thursday 9 October 2014 at 19:52
Thursday 9 October 2014 at 19:53
Thursday 9 October 2014 at 19:55
Thursday 9 October 2014 at 20:20
Thursday 9 October 2014 at 20:23
Thursday 9 October 2014 at 20:39
Thursday 9 October 2014 at 20:41
Thursday 9 October 2014 at 20:47
Thursday 9 October 2014 at 20:48
Thursday 9 October 2014 at 22:42
Thursday 9 October 2014 at 22:51
Friday 10 October 2014 at 7:20
Friday 10 October 2014 at 7:36
Monday 20 October 2014 at 9:25
Saturday 5 December 2015 at 2:18
Saturday 5 December 2015 at 2:19
|
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