CAJViewer 7.2

Informations

Créateur Messages
yinflying Anonymous

Information

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

Informations

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

Retours d'expérience

Description

CAJViewer is a reader developped by the CNKI (China National Knowledge Infrastructure).

Appdb.winehq.org

Code source

#!/bin/bash


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

PREFIX="CAJViewer"
WINEVERSION="2.22"
TITLE="CAJViewer 7.2"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"

POL_SetupWindow_Init
POL_SetupWindow_SetID 801

POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"

if [ "$POL_OS" = "Linux" ]; then
        wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"

POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE" 
SetupIs="$APP_ANSWER"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_Call POL_Install_msxml6
POL_Call POL_Install_msxml3

POL_Wine_OverrideDLL "native,builtin" "riched20" 
POL_Wine_OverrideDLL "native" "msxml3"
POL_Wine_OverrideDLL "native" "msxml6" 

POL_Wine_WaitBefore "$TITLE"

POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"

POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"

POL_Extension_Write caj "CAJViewer 7.2"

POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Dimanche 3 Novembre 2019 à 0:01
Dadu042

Information

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

Messages

-> Wine 2.22

Differences

@@ -5,7 +5,7 @@
 source "$PLAYONLINUX/lib/sources"
 
 PREFIX="CAJViewer"
-WINEVERSION="2.0-rc3"
+WINEVERSION="2.22"
 TITLE="CAJViewer 7.2"
 
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"

Nouveau code source

#!/bin/bash


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

PREFIX="CAJViewer"
WINEVERSION="2.22"
TITLE="CAJViewer 7.2"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"

POL_SetupWindow_Init
POL_SetupWindow_SetID 801

POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"

if [ "$POL_OS" = "Linux" ]; then
        wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"

POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE" 
SetupIs="$APP_ANSWER"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_Call POL_Install_msxml6
POL_Call POL_Install_msxml3

POL_Wine_OverrideDLL "native,builtin" "riched20" 
POL_Wine_OverrideDLL "native" "msxml3"
POL_Wine_OverrideDLL "native" "msxml6" 

POL_Wine_WaitBefore "$TITLE"

POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"

POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"

POL_Extension_Write caj "CAJViewer 7.2"

POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit

Réponses

yinflying Mardi 27 Décembre 2016 à 8:23
yinflying Anonymous

Warning

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

Differences

@@ -0,0 +1,48 @@
+#!/bin/bash
+
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+PREFIX="CAJViewer"
+WINEVERSION="2.0-rc3"
+TITLE="CAJViewer 7.2"
+
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"
+
+POL_SetupWindow_Init
+POL_SetupWindow_SetID 801
+
+POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
+
+if [ "$POL_OS" = "Linux" ]; then
+        wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
+fi
+POL_Debug_Init
+POL_System_SetArch "x86"
+
+POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE" 
+SetupIs="$APP_ANSWER"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_msxml3
+
+POL_Wine_OverrideDLL "native,builtin" "riched20" 
+POL_Wine_OverrideDLL "native" "msxml3"
+POL_Wine_OverrideDLL "native" "msxml6" 
+
+POL_Wine_WaitBefore "$TITLE"
+
+POL_Wine "$SetupIs"
+POL_Wine_WaitExit "$TITLE"
+
+POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"
+
+POL_Extension_Write caj "CAJViewer 7.2"
+
+POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/bin/bash


[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

PREFIX="CAJViewer"
WINEVERSION="2.0-rc3"
TITLE="CAJViewer 7.2"

POL_GetSetupImages "http://files.playonlinux.com/resources/setups/Office/top.jpg" "http://files.playonlinux.com/resources/setups/Office/left.png" "$TITLE"

POL_SetupWindow_Init
POL_SetupWindow_SetID 801

POL_RequiredVersion 4.0.18 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"

if [ "$POL_OS" = "Linux" ]; then
        wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE"
fi
POL_Debug_Init
POL_System_SetArch "x86"

POL_SetupWindow_browse "$(eval_gettext 'Please select the file: CAJViewer 7.2.self.exe')" "$TITLE" 
SetupIs="$APP_ANSWER"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"

POL_Call POL_Install_msxml6
POL_Call POL_Install_msxml3

POL_Wine_OverrideDLL "native,builtin" "riched20" 
POL_Wine_OverrideDLL "native" "msxml3"
POL_Wine_OverrideDLL "native" "msxml6" 

POL_Wine_WaitBefore "$TITLE"

POL_Wine "$SetupIs"
POL_Wine_WaitExit "$TITLE"

POL_Shortcut "CAJVieweru.exe" "CAJViewer 7.2" "" "" "Office;CAJViewer;"

POL_Extension_Write caj "CAJViewer 7.2"

POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully\n\nIf an installation Windows prevent your programs from running, you must remove and reinstall $TITLE')" "$TITLE"
POL_SetupWindow_Close
exit

Réponses

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