Google Picasa 3.9

Informations

Créateur Messages
percherie Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 131210
Wine: 2.22

Retours d'expérience

Description

Picasa is a discontinued, cross-platform image organizer and image viewer for organizing and editing digital photos. Wikipedia.
Note: Internet Explorer 8 installation was require for this software (in 2015).

Appdb.winehq.org

Captures d'écran

Miniature

Code source

#!/bin/bash
# Installation de Picasa 3.9
# RealName: Picasa 3.9
# Date : (2012-11-19 14-52)
# Last revision : (2019-12-27 01-50)
# Author : raybb

# CHANGELOG
#
# 2019-12-27 22:20 [Dadu042]:
#   - Standardize comments.
#   - Add POL_Shortcut category.
#
# 2019-12-27 01-50 [raybb]:
#    - Upgrade to wine 3.20 to avoid freefont issue
#    - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
#    - Update download url to archive.org
#    - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
#
# 2015-02-06 00-34 [strudl]: 
#  Added Wine 1.7.33 x86 
#  Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value
#  from a working machine, worked fine till ~2015-01-15 
#
# 2014-12-08 19-36 [petch]:
#    Wine 1.6.2
#    set $TITLE before POL_Debug_Init call
#    only use Set_OS after prefix creation
#    call POL_System_TmpCreate before using $POL_System_TmpDir
#    only create the prefix once the installer has been located
 
 
# Is POL running ?
[ "$PLAYONLINUX" = "" ] && exit 0
 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
# Nom du script et du disque
TITLE="Picasa 3.9"
PREFIX="Picasa"
WORKING_WINE="2.22"
 
# Controle de version
POL_SetupWindow_Init
POL_Debug_Init
 
# Nom des raccourcis
SHORTCUT="Picasa 3.9"
 
# Nom des fichier BIN
BIN="picasa39-setup.exe"
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX"
 
 
# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Picasa
    POL_Download "https://web.archive.org/web/2016/https://dl.google.com/picasa/picasa39-setup.exe"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi
 
# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
POL_SetupWindow_improve_fonts
Set_OS "winxp"

POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"
 
 
# Raccourci pour Picasa
POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;"
 
# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
pazzz Vendredi 9 September 2022 à 15:51
pazzz Anonymous

Messages

Anonymous

 

I installed picasa 3.9 on my MacMini M1 with System 12.5.1 Monterey.
Everything works except the places module.
It should connect to google maps for gps location of photos.
Returns the message [object error].
Maybe it doesn't connect to the internet?
What should I do?

Réponses

pazzz Vendredi 9 September 2022 à 15:50
pazzz Anonymous

Messages

Anonymous

 

I installed picasa 3.9 on my MacMini M1 with System 12.5.1 Monterey.
Everything works except the places module.
It should connect to google maps for gps location of photos.
Returns the message [object error].
Maybe it doesn't connect to the internet?
What should I do?

Réponses

raybb Samedi 28 Décembre 2019 à 5:32
raybb Anonymous

Messages

Now that it's fixed it works so well :)

Réponses

Dadu042 Vendredi 27 Décembre 2019 à 22:26
Dadu042

Information

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

Differences

@@ -6,11 +6,21 @@
 # Author : raybb
 
 # CHANGELOG
+#
+# 2019-12-27 22:20 [Dadu042]:
+#   - Standardize comments.
+#   - Add POL_Shortcut category.
+#
 # 2019-12-27 01-50 [raybb]:
-#    Upgrade to wine 3.20 to avoid freefont issue
-#    Remove IE8 Installation (wasn't working and google apis are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
-#    Update download url to archive.org
-#    If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
+#    - Upgrade to wine 3.20 to avoid freefont issue
+#    - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
+#    - Update download url to archive.org
+#    - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
+#
+# 2015-02-06 00-34 [strudl]: 
+#  Added Wine 1.7.33 x86 
+#  Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value
+#  from a working machine, worked fine till ~2015-01-15 
 #
 # 2014-12-08 19-36 [petch]:
 #    Wine 1.6.2
@@ -20,7 +30,7 @@
 #    only create the prefix once the installer has been located
  
  
-#Vérifier que PlayOnLinux est exécuté
+# Is POL running ?
 [ "$PLAYONLINUX" = "" ] && exit 0
  
  
@@ -67,15 +77,13 @@
 POL_Wine_PrefixCreate "$WORKING_WINE"
 POL_SetupWindow_improve_fonts
 Set_OS "winxp"
- 
- 
- 
+
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine --ignore-errors "$INSTALLER"
  
  
 # Raccourci pour Picasa
-POL_Shortcut "Picasa3.exe" "$SHORTCUT"
+POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;"
  
 # Fermeture de l'assistant d'installation
 POL_SetupWindow_Close

Nouveau code source

#!/bin/bash
# Installation de Picasa 3.9
# RealName: Picasa 3.9
# Date : (2012-11-19 14-52)
# Last revision : (2019-12-27 01-50)
# Author : raybb

# CHANGELOG
#
# 2019-12-27 22:20 [Dadu042]:
#   - Standardize comments.
#   - Add POL_Shortcut category.
#
# 2019-12-27 01-50 [raybb]:
#    - Upgrade to wine 3.20 to avoid freefont issue
#    - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
#    - Update download url to archive.org
#    - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
#
# 2015-02-06 00-34 [strudl]: 
#  Added Wine 1.7.33 x86 
#  Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value
#  from a working machine, worked fine till ~2015-01-15 
#
# 2014-12-08 19-36 [petch]:
#    Wine 1.6.2
#    set $TITLE before POL_Debug_Init call
#    only use Set_OS after prefix creation
#    call POL_System_TmpCreate before using $POL_System_TmpDir
#    only create the prefix once the installer has been located
 
 
# Is POL running ?
[ "$PLAYONLINUX" = "" ] && exit 0
 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
# Nom du script et du disque
TITLE="Picasa 3.9"
PREFIX="Picasa"
WORKING_WINE="2.22"
 
# Controle de version
POL_SetupWindow_Init
POL_Debug_Init
 
# Nom des raccourcis
SHORTCUT="Picasa 3.9"
 
# Nom des fichier BIN
BIN="picasa39-setup.exe"
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX"
 
 
# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Picasa
    POL_Download "https://web.archive.org/web/2016/https://dl.google.com/picasa/picasa39-setup.exe"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi
 
# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
POL_SetupWindow_improve_fonts
Set_OS "winxp"

POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"
 
 
# Raccourci pour Picasa
POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;"
 
# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Réponses

Anonymous
Samedi 28 Décembre 2019 à 5:27
Thank you so much for the fast reply and fixing this!
raybb Vendredi 27 Décembre 2019 à 9:04
raybb Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Hello,

In a journey to install Picasa on Linux Mint 19.3 I came across playonlinux.

The Picasa installer didn't seem to be working so I took at look at the it and found out why.

3 Main reasons:

1. The download link was broken, so I replaced it with an archive.org version.

2. The freefonts issue was coming up, so I upgraded to wine 2.22. (Note: I tried wine 3 but it didn't seem to do anyting but cause an additonal prompt to install wine-mono)

3. The IE8 install was failing, so I removed it.

 

I assume the script was installing IE for the Google web albums integration. Those apis are deprecated so that’s no longer useful.
If we have IE8 install we get:
We have to hit enter to overwrite files
then: "this installation does not support your operating system's current service pack version"
then: "Please wait while POL is simulating a reboot" (which never ends).
This is why I removed IE 8.

 

After fixing the above I noticed that Picasa “crashes” each time it closes.
A workaround is to add this to the startup script export POL_IgnoreWineErrors=True

However, if anyone can help find the cause of this and fix it would be greatly appreciated.

 

Differences

@@ -6,21 +6,11 @@
 # Author : raybb
 
 # CHANGELOG
-#
-# 2019-12-27 22:20 [Dadu042]:
-#   - Standardize comments.
-#   - Add POL_Shortcut category.
-#
 # 2019-12-27 01-50 [raybb]:
-#    - Upgrade to wine 3.20 to avoid freefont issue
-#    - Remove IE8 Installation (wasn't working and google APIs are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
-#    - Update download url to archive.org
-#    - If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
-#
-# 2015-02-06 00-34 [strudl]: 
-#  Added Wine 1.7.33 x86 
-#  Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* value
-#  from a working machine, worked fine till ~2015-01-15 
+#    Upgrade to wine 3.20 to avoid freefont issue
+#    Remove IE8 Installation (wasn't working and google apis are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
+#    Update download url to archive.org
+#    If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
 #
 # 2014-12-08 19-36 [petch]:
 #    Wine 1.6.2
@@ -30,7 +20,7 @@
 #    only create the prefix once the installer has been located
  
  
-# Is POL running ?
+#Vérifier que PlayOnLinux est exécuté
 [ "$PLAYONLINUX" = "" ] && exit 0
  
  
@@ -77,13 +67,15 @@
 POL_Wine_PrefixCreate "$WORKING_WINE"
 POL_SetupWindow_improve_fonts
 Set_OS "winxp"
-
+ 
+ 
+ 
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine --ignore-errors "$INSTALLER"
  
  
 # Raccourci pour Picasa
-POL_Shortcut "Picasa3.exe" "$SHORTCUT" "" "" "Graphics;"
+POL_Shortcut "Picasa3.exe" "$SHORTCUT"
  
 # Fermeture de l'assistant d'installation
 POL_SetupWindow_Close

Nouveau code source

#!/bin/bash
# Installation de Picasa 3.9
# RealName: Picasa 3.9
# Date : (2012-11-19 14-52)
# Last revision : (2019-12-27 01-50)
# Author : raybb

# CHANGELOG
# 2019-12-27 01-50 [raybb]:
#    Upgrade to wine 3.20 to avoid freefont issue
#    Remove IE8 Installation (wasn't working and google apis are no longer working anyway https://www.programmableweb.com/news/picasa-web-albums-data-api-to-be-deprecated/brief/2018/12/08)
#    Update download url to archive.org
#    If you want to avoid the crash messages add `export POL_IgnoreWineErrors=True` to your start script.
#
# 2014-12-08 19-36 [petch]:
#    Wine 1.6.2
#    set $TITLE before POL_Debug_Init call
#    only use Set_OS after prefix creation
#    call POL_System_TmpCreate before using $POL_System_TmpDir
#    only create the prefix once the installer has been located
 
 
#Vérifier que PlayOnLinux est exécuté
[ "$PLAYONLINUX" = "" ] && exit 0
 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
# Nom du script et du disque
TITLE="Picasa 3.9"
PREFIX="Picasa"
WORKING_WINE="2.22"
 
# Controle de version
POL_SetupWindow_Init
POL_Debug_Init
 
# Nom des raccourcis
SHORTCUT="Picasa 3.9"
 
# Nom des fichier BIN
BIN="picasa39-setup.exe"
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX"
 
 
# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Picasa
    POL_Download "https://web.archive.org/web/2016/https://dl.google.com/picasa/picasa39-setup.exe"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi
 
# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
POL_SetupWindow_improve_fonts
Set_OS "winxp"
 
 
 
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"
 
 
# Raccourci pour Picasa
POL_Shortcut "Picasa3.exe" "$SHORTCUT"
 
# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Réponses

Vendredi 27 Décembre 2019 à 22:18
Script approved.
Vendredi 27 Décembre 2019 à 22:58
I tried to fix the 'crash when exit' issue without success (tried Wine 3.0.3, 3.20, 4.03, installing wininet, disable network in Picasa Options menu).

Edité par raybb

strudl Mercredi 11 Février 2015 à 23:45
strudl Anonymous

Messages

Hello
After reinstalling the latest version of Picasa on my Windows machine.
Log off from Google+
Relog on to Google+
Exporting the GoogleOAuth* values again.
And reinstalling Picasa with my script.
Stopping Picasa in POL and adding the changed values to the user.reg, the authentication works again.
In my case I also had to change the album settings again to sync with the mass upload feature.

Maybe updating Picasa with the POL script and on the windows machine,
log off and relog on on the Windows machine,
exporting the new values and 
modifying the user.reg will work as well.

Best regards
Strudl

Réponses

strudl Vendredi 6 Février 2015 à 0:37
strudl Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Hello
 
I also used Picasa on Ubuntu.
 
It worked fine with wine 1.7.33 x86
Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* values from a working maschine, to the user.reg worked fine for Google authentication  till ~2015-01-15.
 
Now I'm searching for a fix for a while, because the GoogleOAuth Entries won't work any more and Picasa tries to open the google authentication webseite. But this fails.
 
I'm using Ubuntu 14.10 utopic with POL 4.2.5.
I've also tried wine 1.7.35 and it seams working as well. But I get the same Error: Bei der Authentifizierung Ihres Kontos ist ein Fehler aufgetreten (~Authentication Error)
 
I've moved the depency walker to the wineprefix and added a link to open depends.exe
 
But now there are a lot of missing dependencies.
 
And I've no idear where and how to start. Direct Dependencies to PICASA3.EXE are markt red:
 
KERNEL32.DLL
 
COMCTL32.DLL
 
DDRAW.DLL
 
IMM32.DLL
 
IPHLPAPI.DLL
 
VERSION.DLL
 
MSVFW32.DLL
 
AVIFIL32.DLL
 
WINMM.DLL
 
WINTRUST.DLL
 
WS2_32.DLL
 
USER32.DLL
 
GDI32.DLL
 
WINSPPOL.DRV
 
COMDLG32.DLL
 
ADVAPI32.DLL
 
SHELL32.DLL
 
OLE32.DLL
 
OLEAUT32.DLL
 
Can anybody help me fixing this issue?
 
Best regards
 
Strudl

Differences

@@ -13,19 +13,21 @@
 #    call POL_System_TmpCreate before using $POL_System_TmpDir
 #    only create the prefix once the installer has been located
 #
-
+# 2015-02-06 00-34 [strudl]:
+#  Added Wine 1.7.33 x86
+#  Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* values from a working machine, works fine till ~2015-01-15
+#  
 
 #Vérifier que PlayOnLinux est exécuté
 [ "$PLAYONLINUX" = "" ] && exit 0
 
-
 # Charger les librairies
 source "$PLAYONLINUX/lib/sources"
 
 # Nom du script et du disque
 TITLE="Picasa 3.9"
 PREFIX="Picasa"
-WORKING_WINE="1.6.2"
+WORKING_WINE="1.7.33"
 
 # Controle de version
 POL_SetupWindow_Init
@@ -40,7 +42,6 @@
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX"
 
-
 # Choix du fichier de la source d'installation
 POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
 if [ "$INSTALL_METHOD" = "LOCAL" ]
@@ -63,19 +64,15 @@
 POL_SetupWindow_improve_fonts
 Set_OS winxp
 
-
 # Installation de Internet Explorer 8
 POL_Call POL_Install_ie8
 
-
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine --ignore-errors "$INSTALLER"
 
-
 # Raccourci pour Picasa
 POL_Shortcut "Picasa3.exe" "$SHORTCUT"
 
-
 # Fermeture de l'assistant d'installation
 POL_SetupWindow_Close
 exit

Nouveau code source

#!/bin/bash
# Installation de Picasa 3.9
# RealName: Picasa 3.9
# Date : (2012-11-19 14-52)
# Last revision : (2014-12-08 19-36)
# Author : Percherie

# CHANGELOG
# 2014-12-08 19-36 [petch]:
#    Wine 1.6.2
#    set $TITLE before POL_Debug_Init call
#    only use Set_OS after prefix creation
#    call POL_System_TmpCreate before using $POL_System_TmpDir
#    only create the prefix once the installer has been located
#
# 2015-02-06 00-34 [strudl]:
#  Added Wine 1.7.33 x86
#  Adding HKEY_CURRENT_USER\Software\Google\Picasa\Picasa2\Preferences GoogleOAuth* values from a working machine, works fine till ~2015-01-15
#  

#Vérifier que PlayOnLinux est exécuté
[ "$PLAYONLINUX" = "" ] && exit 0

# Charger les librairies
source "$PLAYONLINUX/lib/sources"

# Nom du script et du disque
TITLE="Picasa 3.9"
PREFIX="Picasa"
WORKING_WINE="1.7.33"

# Controle de version
POL_SetupWindow_Init
POL_Debug_Init

# Nom des raccourcis
SHORTCUT="Picasa 3.9"

# Nom des fichier BIN
BIN="picasa39-setup.exe"

# Presentation
POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX"

# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Picasa
    POL_Download "http://dl.google.com/picasa/$BIN"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi

# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
POL_SetupWindow_improve_fonts
Set_OS winxp

# Installation de Internet Explorer 8
POL_Call POL_Install_ie8

POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"

# Raccourci pour Picasa
POL_Shortcut "Picasa3.exe" "$SHORTCUT"

# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Réponses

Vendredi 6 Février 2015 à 1:32
Well, if you get the same error, we are not going to change the script just yet. Also, don't delete comments in the scripts, as they will not be accepted if those are removed and not replaced with comments. They are there for a reason.

Honestly, this would be covered better if you posted in the forums with your full debug output and full computer specs so we can see what is going on. Without that information, we are just guessing.
Vendredi 6 Février 2015 à 1:40
Check the bottom post here (comment 12). It says that may work.
Mardi 28 Avril 2015 à 10:14
He did not remove comments, you can check in the "source" version
that's diff colouring getting confused when you fix line return style on the line just above
petch Lundi 8 Décembre 2014 à 19:46
petch

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Changelog

  • Wine 1.6.2
  • set $TITLE before POL_Debug_Init call
  • only use Set_OS after prefix creation
  • call POL_System_TmpCreate before using $POL_System_TmpDir
  • only create the prefix once the installer has been located

 

Differences

@@ -11,7 +11,7 @@
 #    set $TITLE before POL_Debug_Init call
 #    only use Set_OS after prefix creation
 #    call POL_System_TmpCreate before using $POL_System_TmpDir
-#    only create the prefix one the installer has been located
+#    only create the prefix once the installer has been located
 #
 
 

Nouveau code source

#!/bin/bash
# Installation de Picasa 3.9
# RealName: Picasa 3.9
# Date : (2012-11-19 14-52)
# Last revision : (2014-12-08 19-36)
# Author : Percherie

# CHANGELOG
# 2014-12-08 19-36 [petch]:
#    Wine 1.6.2
#    set $TITLE before POL_Debug_Init call
#    only use Set_OS after prefix creation
#    call POL_System_TmpCreate before using $POL_System_TmpDir
#    only create the prefix once the installer has been located
#


#Vérifier que PlayOnLinux est exécuté
[ "$PLAYONLINUX" = "" ] && exit 0


# Charger les librairies
source "$PLAYONLINUX/lib/sources"

# Nom du script et du disque
TITLE="Picasa 3.9"
PREFIX="Picasa"
WORKING_WINE="1.6.2"

# Controle de version
POL_SetupWindow_Init
POL_Debug_Init

# Nom des raccourcis
SHORTCUT="Picasa 3.9"

# Nom des fichier BIN
BIN="picasa39-setup.exe"

# Presentation
POL_SetupWindow_presentation "$TITLE" "Google" "http://www.google.com/" "Percherie" "$PREFIX"


# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Picasa
    POL_Download "http://dl.google.com/picasa/$BIN"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi

# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
POL_SetupWindow_improve_fonts
Set_OS winxp


# Installation de Internet Explorer 8
POL_Call POL_Install_ie8


POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"


# Raccourci pour Picasa
POL_Shortcut "Picasa3.exe" "$SHORTCUT"


# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Réponses

Anonymous
Mercredi 10 Décembre 2014 à 8:17
Yes. This time it works. Thanks a lot!

Edité par petch

SKAL Lundi 8 Décembre 2014 à 18:03
SKAL Anonymous

Messages

Trying to install this program on a Ubuntu 14.10 with wine-1.6.2 and PlayOnLinux_4.2.5.deb

when it starts to install the problem notifies some errors and than does not continues

Any chance to fix it?

Réponses

Lundi 8 Décembre 2014 à 19:47
Does the updated script above work better?
weliot Lundi 15 September 2014 à 9:40
weliot Anonymous

Messages

Same for me. Playonlinux installed Picassa 3.9 together with Wine 1.4.1 and Internet Explorer 8. Picassa works perfectly except that it is impossible to login to Google account as described by SnakeFighter. A method for signing in to Picasa 3.9 under Wine by using registry values from a Windows installation of Picasa 3.9 has been described in:

http://tsdgeos.blogspot.fr/2014/07/logging-in-into-picasa-39-under-linux.html

and this works even in the absence of Internet Explorer 8. I guess it should work too with the Playonlinux installation of Picasa 3.9

Réponses

SnakeFighter Mercredi 27 Aoüt 2014 à 20:52
SnakeFighter Anonymous

Messages

Thanks for the script!

Picsasa installs fine, but I am having a problem signing in with a Google Account.  If I click the link (top right-hand corner), the Google authentication window opens, then displays username and password field, then closes as soon as soon as the page has loaded.

A dialog appears saying "There was a problem authenitcating your account".

Any ideas?

 

Réponses

Anonymous
Mercredi 24 September 2014 à 20:49
I just installed Picasa using playonlinux today, and I love it the app works flawlessly except just like stated above I can not log in. What was installed Picasa 3.9, Wine 1.4.1 IE 8 this is on Linux Mint 17
Anonymous
Mardi 28 Avril 2015 à 8:23
Hello. I am getting the same issue as SnakeFighter (7 months later, same software configuration as arieswolf). Does anybody have any ideas?
Anonymous
Mardi 28 Avril 2015 à 8:43
I found this in the log. Does anybody know what it means?
Anonymous
Mardi 28 Avril 2015 à 8:44
err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.