Adobe Photoshop Lightroom 5
Informatie
Creator | Bericht |
---|---|
Ronin DUSETTE
![]()
|
InformationThis installer has been approved by the team. InformatiePlatforms: Feedbacks7 4 OmschrijvingImage 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. SchermafdrukkenBroncode#!/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 | Bericht |
Denilson | Vrijdag 27 Mei 2022 om 20:01 |
Denilson
![]()
|
BerichtHi. Antwoorden |
Dadu042 | Vrijdag 29 November 2019 om 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 Antwoorden |
gabry78 | Woensdag 28 November 2018 om 16:14 |
gabry78
![]()
|
BerichtHello 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]
AntwoordenVrijdag 29 November 2019 om 11:05
|
Carbur | Maandag 26 Februari 2018 om 18:03 |
Carbur
![]()
|
BerichtHello, 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. Antwoorden |
Ronin DUSETTE | Zaterdag 6 Januari 2018 om 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 Antwoorden |
bipco | Donderdag 23 November 2017 om 13:03 |
bipco
![]()
|
BerichtHi 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
Antwoorden |
captain_Deken | Maandag 19 December 2016 om 23:00 |
captain_Deken
![]()
|
BerichtHi, 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=) AntwoordenVrijdag 23 December 2016 om 11:06
Zaterdag 14 Januari 2017 om 15:31
Maandag 23 Januari 2017 om 16:58
|
imtaurin | Vrijdag 11 November 2016 om 17:17 |
imtaurin
![]()
|
WarningThis update has not been approved yet by the team. BerichtSome 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 AntwoordenZaterdag 14 Januari 2017 om 15:31
Zaterdag 14 Januari 2017 om 15:33
Zaterdag 14 October 2017 om 18:46
|
falldaron | Zaterdag 30 Juli 2016 om 2:25 |
falldaron
![]()
|
BerichtBonjour, 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, Antwoorden |
Erathor | Zaterdag 23 Juli 2016 om 12:28 |
Erathor
![]()
|
BerichtHi 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! Antwoorden |
Deleted account | Donderdag 26 Mei 2016 om 15:18 |
Deleted account
![]()
|
BerichtWhat's with Lightroom 6? Did somebody try? Antwoorden |
Retro Gamer | Donderdag 19 Mei 2016 om 10:21 |
Retro Gamer
![]()
|
BerichtThe 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. AntwoordenDonderdag 19 Mei 2016 om 10:30
Donderdag 19 Mei 2016 om 21:00
Donderdag 19 Mei 2016 om 21:42
Donderdag 19 Mei 2016 om 22:03
Zaterdag 21 Mei 2016 om 2:41
Zaterdag 21 Mei 2016 om 2:41
Zaterdag 21 Mei 2016 om 3:15
Zaterdag 21 Mei 2016 om 11:35
Zaterdag 21 Mei 2016 om 11:56
Zaterdag 21 Mei 2016 om 15:49
Zaterdag 21 Mei 2016 om 16:29
Zaterdag 21 Mei 2016 om 16:31
Zaterdag 21 Mei 2016 om 16:39
Zaterdag 21 Mei 2016 om 18:38
Zaterdag 21 Mei 2016 om 21:21
Zondag 22 Mei 2016 om 0:57
Zondag 22 Mei 2016 om 1:02
|
maulwurf | Donderdag 3 Maart 2016 om 21:17 |
maulwurf
![]()
|
Berichtworks 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. AntwoordenDonderdag 19 Mei 2016 om 10:17
Donderdag 19 Mei 2016 om 15:39
|
TrickyDicky | Zaterdag 24 Januari 2015 om 4:55 |
TrickyDicky
![]()
|
BerichtSuccessful 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 AntwoordenZaterdag 24 Januari 2015 om 5:42
|
Ronin DUSETTE | Vrijdag 19 December 2014 om 21:54 |
Ronin DUSETTE
![]()
|
BerichtTHIS SHOULD WORK WITH THE ADOBE CC VERSION OF LIGHTROOM, AS WELL. AntwoordenDinsdag 12 Januari 2016 om 10:14
Dinsdag 12 Januari 2016 om 14:00
Dinsdag 12 Januari 2016 om 17:18
|
SKAL | Woensdag 10 December 2014 om 11:03 |
SKAL
![]()
|
WarningThis update has not been approved yet by the team. BerichtHi, 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 AntwoordenDinsdag 16 December 2014 om 7:19
|
Ronin DUSETTE | Zaterdag 25 October 2014 om 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 Antwoorden |
Ronin DUSETTE | Zaterdag 25 October 2014 om 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 Antwoorden |
Maroce | Woensdag 15 October 2014 om 16:00 |
Maroce
![]()
|
Berichtim 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 AntwoordenWoensdag 15 October 2014 om 20:09
|
Ronin DUSETTE | Maandag 25 Augustus 2014 om 19:56 |
Ronin DUSETTE
![]()
|
WarningThis update has not been approved yet by the team. BerichtInitial 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 AntwoordenMaandag 25 Augustus 2014 om 19:58
Maandag 25 Augustus 2014 om 19:59
Maandag 25 Augustus 2014 om 20:26
Maandag 25 Augustus 2014 om 20:28
Dinsdag 26 Augustus 2014 om 1:05
Dinsdag 26 Augustus 2014 om 1:12
Dinsdag 26 Augustus 2014 om 1:14
Dinsdag 26 Augustus 2014 om 1:21
Dinsdag 26 Augustus 2014 om 1:25
Dinsdag 26 Augustus 2014 om 1:28
Dinsdag 26 Augustus 2014 om 1:35
Dinsdag 26 Augustus 2014 om 1:39
Dinsdag 26 Augustus 2014 om 1:40
Zaterdag 6 September 2014 om 22:20
Zaterdag 6 September 2014 om 22:22
Zaterdag 6 September 2014 om 22:47
Zaterdag 6 September 2014 om 22:49
Zondag 7 September 2014 om 11:39
Zondag 7 September 2014 om 11:43
Zondag 7 September 2014 om 11:43
Zondag 7 September 2014 om 11:52
Zondag 7 September 2014 om 11:54
Zondag 7 September 2014 om 11:56
Zondag 7 September 2014 om 12:33
Zondag 7 September 2014 om 13:39
Zondag 7 September 2014 om 23:13
Maandag 8 September 2014 om 1:58
Maandag 8 September 2014 om 2:54
Maandag 8 September 2014 om 4:32
Maandag 8 September 2014 om 8:57
Maandag 8 September 2014 om 16:32
Maandag 8 September 2014 om 17:47
Maandag 8 September 2014 om 17:52
Maandag 8 September 2014 om 17:56
Donderdag 9 October 2014 om 18:12
Donderdag 9 October 2014 om 18:15
Donderdag 9 October 2014 om 18:22
Donderdag 9 October 2014 om 18:32
Donderdag 9 October 2014 om 19:52
Donderdag 9 October 2014 om 19:53
Donderdag 9 October 2014 om 19:55
Donderdag 9 October 2014 om 20:20
Donderdag 9 October 2014 om 20:23
Donderdag 9 October 2014 om 20:39
Donderdag 9 October 2014 om 20:41
Donderdag 9 October 2014 om 20:47
Donderdag 9 October 2014 om 20:48
Donderdag 9 October 2014 om 22:42
Donderdag 9 October 2014 om 22:51
Vrijdag 10 October 2014 om 7:20
Vrijdag 10 October 2014 om 7:36
Maandag 20 October 2014 om 9:25
Zaterdag 5 December 2015 om 2:18
Zaterdag 5 December 2015 om 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