Adobe Photoshop Lightroom 5
Informations
Créateur | Messages |
---|---|
Ronin DUSETTE
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience7 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. Captures d'écranCode source#!/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:
ContribuerMembre | Messages |
Denilson | Vendredi 27 Mai 2022 à 20:01 |
Denilson
|
MessagesHi. Réponses |
Dadu042 | Vendredi 29 Novembre 2019 à 11:04 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe 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 Nouveau code source#!/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 Réponses |
gabry78 | Mercredi 28 Novembre 2018 à 16:14 |
gabry78
|
MessagesHello 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]
RéponsesVendredi 29 Novembre 2019 à 11:05
|
Carbur | Lundi 26 Février 2018 à 18:03 |
Carbur
|
MessagesHello, 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. Réponses |
Ronin DUSETTE | Samedi 6 Janvier 2018 à 18:25 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 Réponses |
bipco | Jeudi 23 Novembre 2017 à 13:03 |
bipco
|
MessagesHi 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
Réponses |
captain_Deken | Lundi 19 Décembre 2016 à 23:00 |
captain_Deken
|
MessagesHi, 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=) RéponsesVendredi 23 Décembre 2016 à 11:06
Samedi 14 Janvier 2017 à 15:31
Lundi 23 Janvier 2017 à 16:58
|
imtaurin | Vendredi 11 Novembre 2016 à 17:17 |
imtaurin
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesSome 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 Nouveau code source#!/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 RéponsesSamedi 14 Janvier 2017 à 15:31
Samedi 14 Janvier 2017 à 15:33
Samedi 14 Octobre 2017 à 18:46
|
falldaron | Samedi 30 Juillet 2016 à 2:25 |
falldaron
|
MessagesBonjour, 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, Réponses |
Erathor | Samedi 23 Juillet 2016 à 12:28 |
Erathor
|
MessagesHi 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! Réponses |
Deleted account | Jeudi 26 Mai 2016 à 15:18 |
Deleted account
|
MessagesWhat's with Lightroom 6? Did somebody try? Réponses |
Retro Gamer | Jeudi 19 Mai 2016 à 10:21 |
Retro Gamer
|
MessagesThe 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. RéponsesJeudi 19 Mai 2016 à 10:30
Jeudi 19 Mai 2016 à 21:00
Jeudi 19 Mai 2016 à 21:42
Jeudi 19 Mai 2016 à 22:03
Samedi 21 Mai 2016 à 2:41
Samedi 21 Mai 2016 à 2:41
Samedi 21 Mai 2016 à 3:15
Samedi 21 Mai 2016 à 11:35
Samedi 21 Mai 2016 à 11:56
Samedi 21 Mai 2016 à 15:49
Samedi 21 Mai 2016 à 16:29
Samedi 21 Mai 2016 à 16:31
Samedi 21 Mai 2016 à 16:39
Samedi 21 Mai 2016 à 18:38
Samedi 21 Mai 2016 à 21:21
Dimanche 22 Mai 2016 à 0:57
Dimanche 22 Mai 2016 à 1:02
|
maulwurf | Jeudi 3 Mars 2016 à 21:17 |
maulwurf
|
Messagesworks 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. RéponsesJeudi 19 Mai 2016 à 10:17
Jeudi 19 Mai 2016 à 15:39
|
TrickyDicky | Samedi 24 Janvier 2015 à 4:55 |
TrickyDicky
|
MessagesSuccessful 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 RéponsesSamedi 24 Janvier 2015 à 5:42
|
Ronin DUSETTE | Vendredi 19 Décembre 2014 à 21:54 |
Ronin DUSETTE
|
MessagesTHIS SHOULD WORK WITH THE ADOBE CC VERSION OF LIGHTROOM, AS WELL. RéponsesMardi 12 Janvier 2016 à 10:14
Mardi 12 Janvier 2016 à 14:00
Mardi 12 Janvier 2016 à 17:18
|
SKAL | Mercredi 10 Décembre 2014 à 11:03 |
SKAL
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHi, 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 Nouveau code source#!/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 RéponsesMardi 16 Décembre 2014 à 7:19
|
Ronin DUSETTE | Samedi 25 Octobre 2014 à 21:26 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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" Nouveau code source#!/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 Réponses |
Ronin DUSETTE | Samedi 25 Octobre 2014 à 19:19 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. 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 Nouveau code source#!/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 Réponses |
Maroce | Mercredi 15 Octobre 2014 à 16:00 |
Maroce
|
Messagesim 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 RéponsesMercredi 15 Octobre 2014 à 20:09
|
Ronin DUSETTE | Lundi 25 Aoüt 2014 à 19:56 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesInitial 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 Nouveau code source#!/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 RéponsesLundi 25 Aoüt 2014 à 19:58
Lundi 25 Aoüt 2014 à 19:59
Lundi 25 Aoüt 2014 à 20:26
Lundi 25 Aoüt 2014 à 20:28
Mardi 26 Aoüt 2014 à 1:05
Mardi 26 Aoüt 2014 à 1:12
Mardi 26 Aoüt 2014 à 1:14
Mardi 26 Aoüt 2014 à 1:21
Mardi 26 Aoüt 2014 à 1:25
Mardi 26 Aoüt 2014 à 1:28
Mardi 26 Aoüt 2014 à 1:35
Mardi 26 Aoüt 2014 à 1:39
Mardi 26 Aoüt 2014 à 1:40
Samedi 6 September 2014 à 22:20
Samedi 6 September 2014 à 22:22
Samedi 6 September 2014 à 22:47
Samedi 6 September 2014 à 22:49
Dimanche 7 September 2014 à 11:39
Dimanche 7 September 2014 à 11:43
Dimanche 7 September 2014 à 11:43
Dimanche 7 September 2014 à 11:52
Dimanche 7 September 2014 à 11:54
Dimanche 7 September 2014 à 11:56
Dimanche 7 September 2014 à 12:33
Dimanche 7 September 2014 à 13:39
Dimanche 7 September 2014 à 23:13
Lundi 8 September 2014 à 1:58
Lundi 8 September 2014 à 2:54
Lundi 8 September 2014 à 4:32
Lundi 8 September 2014 à 8:57
Lundi 8 September 2014 à 16:32
Lundi 8 September 2014 à 17:47
Lundi 8 September 2014 à 17:52
Lundi 8 September 2014 à 17:56
Jeudi 9 Octobre 2014 à 18:12
Jeudi 9 Octobre 2014 à 18:15
Jeudi 9 Octobre 2014 à 18:22
Jeudi 9 Octobre 2014 à 18:32
Jeudi 9 Octobre 2014 à 19:52
Jeudi 9 Octobre 2014 à 19:53
Jeudi 9 Octobre 2014 à 19:55
Jeudi 9 Octobre 2014 à 20:20
Jeudi 9 Octobre 2014 à 20:23
Jeudi 9 Octobre 2014 à 20:39
Jeudi 9 Octobre 2014 à 20:41
Jeudi 9 Octobre 2014 à 20:47
Jeudi 9 Octobre 2014 à 20:48
Jeudi 9 Octobre 2014 à 22:42
Jeudi 9 Octobre 2014 à 22:51
Vendredi 10 Octobre 2014 à 7:20
Vendredi 10 Octobre 2014 à 7:36
Lundi 20 Octobre 2014 à 9:25
Samedi 5 Décembre 2015 à 2:18
Samedi 5 Décembre 2015 à 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