Estas Aqui

1000 Mots

Informations

Creator Mensajes
Quentin PÂRIS Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 15057
Wine: System

Feedbacks

Description

"1000 mots pour apprendre à lire."

v2.3 (01/12/2004)

Editor website.

Screenshots

Source code

#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi
source "$PLAYONLINUX/lib/sources"
 
TITRE="1000 Mots"
PREFIXE="1000mots"
 
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITRE" "Educampa" "" "Tinou" "$PREFIXE"
cd $REPERTOIRE/tmp/
 
select_prefix "$REPERTOIRE/wineprefix/$PREFIXE"
POL_SetupWindow_prefixcreate
 
cd "$WINEPREFIX/drive_c/windows/system32"
 
POL_SetupWindow_download "Downloading dependances" "$TITRE" "$SITE/dlls/mfc40.dll"
POL_SetupWindow_download "Downloading dependances" "$TITRE" "$SITE/dlls/threed32.ocx"
cd "$REPERTOIRE/tmp/"

POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://perso.wanadoo.fr/jm.campaner/jmc_1000MOTS/installation/Ins_1000Mots.exe"

# URL dead as of 2019-05-25
# POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://www.e-70.com/educampa/Ins_1000Mots.exe"

file="$REPERTOIRE/tmp/Ins_1000Mots.exe"
POL_SetupWindow_wait_next_signal "Installing $TITRE" "$TITRE"
wine "$file" /silent
POL_SetupWindow_detect_exit
POL_Shortcut "1000Mots_v3.exe" "$TITRE"
 
POL_Call POL_Install_vbrun6
POL_Call POL_Install_ie6
 
cd "$WINEPREFIX/drive_c/windows/system32"
cabextract "$POL_USER_ROOT/ressources/vbrun60sp6.exe"
 
POL_Call POL_Function_OverrideDLL native,builtin oleaut32
 
POL_SetupWindow_message "$TITRE has been installed successfully" "$TITRE"
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Mensajes
Dadu042 Saturday 25 May 2019 at 18:44
Dadu042

Information

This update has been approved by the team.

Mensajes

Repaired URL to download the app.

Differences

@@ -4,37 +4,42 @@
 exit 0
 fi
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITRE="1000 Mots"
 PREFIXE="1000mots"
-
+ 
 POL_SetupWindow_Init
 POL_SetupWindow_presentation "$TITRE" "Educampa" "" "Tinou" "$PREFIXE"
 cd $REPERTOIRE/tmp/
-
+ 
 select_prefix "$REPERTOIRE/wineprefix/$PREFIXE"
 POL_SetupWindow_prefixcreate
-
+ 
 cd "$WINEPREFIX/drive_c/windows/system32"
-
+ 
 POL_SetupWindow_download "Downloading dependances" "$TITRE" "$SITE/dlls/mfc40.dll"
 POL_SetupWindow_download "Downloading dependances" "$TITRE" "$SITE/dlls/threed32.ocx"
 cd "$REPERTOIRE/tmp/"
-POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://www.e-70.com/educampa/Ins_1000Mots.exe"
+
+POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://perso.wanadoo.fr/jm.campaner/jmc_1000MOTS/installation/Ins_1000Mots.exe"
+
+# URL dead as of 2019-05-25
+# POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://www.e-70.com/educampa/Ins_1000Mots.exe"
+
 file="$REPERTOIRE/tmp/Ins_1000Mots.exe"
 POL_SetupWindow_wait_next_signal "Installing $TITRE" "$TITRE"
 wine "$file" /silent
 POL_SetupWindow_detect_exit
 POL_Shortcut "1000Mots_v3.exe" "$TITRE"
-
+ 
 POL_Call POL_Install_vbrun6
 POL_Call POL_Install_ie6
-
+ 
 cd "$WINEPREFIX/drive_c/windows/system32"
 cabextract "$POL_USER_ROOT/ressources/vbrun60sp6.exe"
-
+ 
 POL_Call POL_Function_OverrideDLL native,builtin oleaut32
-
+ 
 POL_SetupWindow_message "$TITRE has been installed successfully" "$TITRE"
 POL_SetupWindow_Close
 exit
\ No newline at end of file

New source code

#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi
source "$PLAYONLINUX/lib/sources"
 
TITRE="1000 Mots"
PREFIXE="1000mots"
 
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITRE" "Educampa" "" "Tinou" "$PREFIXE"
cd $REPERTOIRE/tmp/
 
select_prefix "$REPERTOIRE/wineprefix/$PREFIXE"
POL_SetupWindow_prefixcreate
 
cd "$WINEPREFIX/drive_c/windows/system32"
 
POL_SetupWindow_download "Downloading dependances" "$TITRE" "$SITE/dlls/mfc40.dll"
POL_SetupWindow_download "Downloading dependances" "$TITRE" "$SITE/dlls/threed32.ocx"
cd "$REPERTOIRE/tmp/"

POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://perso.wanadoo.fr/jm.campaner/jmc_1000MOTS/installation/Ins_1000Mots.exe"

# URL dead as of 2019-05-25
# POL_SetupWindow_download "Downloading $TITRE" "$TITRE" "http://www.e-70.com/educampa/Ins_1000Mots.exe"

file="$REPERTOIRE/tmp/Ins_1000Mots.exe"
POL_SetupWindow_wait_next_signal "Installing $TITRE" "$TITRE"
wine "$file" /silent
POL_SetupWindow_detect_exit
POL_Shortcut "1000Mots_v3.exe" "$TITRE"
 
POL_Call POL_Install_vbrun6
POL_Call POL_Install_ie6
 
cd "$WINEPREFIX/drive_c/windows/system32"
cabextract "$POL_USER_ROOT/ressources/vbrun60sp6.exe"
 
POL_Call POL_Function_OverrideDLL native,builtin oleaut32
 
POL_SetupWindow_message "$TITRE has been installed successfully" "$TITRE"
POL_SetupWindow_Close
exit

Respuestas

pmac22 Sunday 8 January 2017 at 11:43
pmac22 Anonymous

Mensajes

download link is broken, i'm working on a new source code

Respuestas