WarpPLS 7

Informatie

Creator Bericht
tungdao Anonymous

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 3010
Wine: 2.20

Feedbacks

Omschrijving

Analysis Partial Least Square (PLS-SEM) on multidiscipline study.  Wikipedia.

Schermafdrukken

Miniature

Broncode

#!/bin/bash
# Date : (2020-01-30) 
# Last revision : see changelog
# Distribution used to test : MacOS Mojave 10.14
# Author         : Dao Duy Tung
# PlayOnMac        : 4.3.4
#
# CHANGELOGS
# [Dao Duy Tung] (2020-01-30) 
# Disable method DOWNLOAD
# Removed dotnet30
#
# [Dao Duy Tung] (2020-02-02 19:00)
# Removed: dotnet20, dotnet40, msxml6
# Added: gecko, vcrun2005, vcrun2012, vcrun2013, vcrun2015
# Wine 3.0.3 -> 2.20 
# Windows 10 -> 7
#
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="2.20"
OSVERSION="win7"

EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"

 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
 

POL_RequiredVersion "2.20" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 2.20 is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"

# Installation
Set_OS "$OSVERSION"

POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_vcrun2015

 
cd "$POL_System_TmpDir"
 
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi
 

POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete
 
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Bericht
tungdao Zondag 2 Februari 2020 om 14:41
tungdao Anonymous

Information

This update has been approved by the team.

Bericht

Modified script, see changlog

 

Differences

@@ -1,21 +1,30 @@
 #!/bin/bash
-# Date : (2020-01-30)
+# Date : (2020-01-30) 
+# Last revision : see changelog
 # Distribution used to test : MacOS Mojave 10.14
-# Author : Dao Duy Tung
-# PlayOnMac: 3.0.3
- 
+# Author 	: Dao Duy Tung
+# PlayOnMac	: 4.3.4
+#
 # CHANGELOGS
+# [Dao Duy Tung] (2020-01-30) 
 # Disable method DOWNLOAD
 # Removed dotnet30
-  
+#
+# [Dao Duy Tung] (2020-02-02 19:00)
+# Removed: dotnet20, dotnet40, msxml6
+# Added: gecko, vcrun2005, vcrun2012, vcrun2013, vcrun2015
+# Wine 3.0.3 -> 2.20 
+# Windows 10 -> 7
+#
+ 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-  
+ 
 TITLE="WarpPLS 7"
 PREFIX="TungDaoWarpPLS"
-WORKING_WINE_VERSION="3.0.3"
-OSVERSION="win10"
- 
+WORKING_WINE_VERSION="2.20"
+OSVERSION="win7"
+
 EDITOR="Ned Kock"
 WEB_URL="http://www.warppls.com"
 # DOWNLOADURL=""
@@ -23,28 +32,34 @@
 SHORTCUTFILENAME="WarpPLS_7_0.exe"
 AUTHOR="Dao Duy Tung"
 # PERSONALBLOG="https://tungdao.org"
+
  
-  
 POL_SetupWindow_Init
 POL_Debug_Init
-  
+ 
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
-  
-POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
  
+
+POL_RequiredVersion "2.20" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 2.20 is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-  
-POL_System_TmpCreate "$PREFIX"
  
-POL_Call POL_Install_msxml6
-POL_Call POL_Install_corefonts
-POL_Call POL_Install_dotnet20
-POL_Call POL_Install_dotnet40
+POL_System_TmpCreate "$PREFIX"
+
+# Installation
+Set_OS "$OSVERSION"
+
 POL_Call POL_Install_gecko
-  
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_vcrun2005
+POL_Call POL_Install_vcrun2012
+POL_Call POL_Install_vcrun2013
+POL_Call POL_Install_vcrun2015
+
+ 
 cd "$POL_System_TmpDir"
-  
+ 
 if [ "$POL_SELECTED_FILE" ]; then
     SetupFile="$POL_SELECTED_FILE"
 else
@@ -60,18 +75,16 @@
     fi
 fi
  
-# Installation
-Set_OS "$OSVERSION"
- 
+
 POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
 POL_Wine_WaitBefore "$TITLE"
 POL_Wine "$SetupFile"
 POL_Wine_WaitExit "$TITLE"
- 
+
 POL_System_TmpDelete
-  
+ 
 POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
 POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
- 
+
 POL_SetupWindow_Close
 exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2020-01-30) 
# Last revision : see changelog
# Distribution used to test : MacOS Mojave 10.14
# Author         : Dao Duy Tung
# PlayOnMac        : 4.3.4
#
# CHANGELOGS
# [Dao Duy Tung] (2020-01-30) 
# Disable method DOWNLOAD
# Removed dotnet30
#
# [Dao Duy Tung] (2020-02-02 19:00)
# Removed: dotnet20, dotnet40, msxml6
# Added: gecko, vcrun2005, vcrun2012, vcrun2013, vcrun2015
# Wine 3.0.3 -> 2.20 
# Windows 10 -> 7
#
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="2.20"
OSVERSION="win7"

EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"

 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
 

POL_RequiredVersion "2.20" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 2.20 is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"

# Installation
Set_OS "$OSVERSION"

POL_Call POL_Install_gecko
POL_Call POL_Install_corefonts
POL_Call POL_Install_vcrun2005
POL_Call POL_Install_vcrun2012
POL_Call POL_Install_vcrun2013
POL_Call POL_Install_vcrun2015

 
cd "$POL_System_TmpDir"
 
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi
 

POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete
 
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"

POL_SetupWindow_Close
exit 0

Antwoorden

Zondag 2 Februari 2020 om 17:46
Approved. Instead of Wine 2.20 i recommend the 2.22. I don't understand why you downgrade from v3.0.3 (pretty stable) to v2.20.
Anonymous
Woensdag 5 Februari 2020 om 9:44
it is a long story. Actually, for the first time, I used macOS, I already installed this software in POM by myself. However, I returned Windows, I had forgotten which wine version used on macOS. So, I take time to find and tries many times on forums (I saw 3.0.3 is a version that most people use). Compared with wine 2.22, I think it lightweight than wine 3.0.3.  

Aangepast door tungdao

Dadu042 Donderdag 30 Januari 2020 om 21:10
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -0,0 +1,77 @@
+#!/bin/bash
+# Date : (2020-01-30)
+# Distribution used to test : MacOS Mojave 10.14
+# Author : Dao Duy Tung
+# PlayOnMac: 3.0.3
+ 
+# CHANGELOGS
+# Disable method DOWNLOAD
+# Removed dotnet30
+  
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+  
+TITLE="WarpPLS 7"
+PREFIX="TungDaoWarpPLS"
+WORKING_WINE_VERSION="3.0.3"
+OSVERSION="win10"
+ 
+EDITOR="Ned Kock"
+WEB_URL="http://www.warppls.com"
+# DOWNLOADURL=""
+# SETUPFILE=""
+SHORTCUTFILENAME="WarpPLS_7_0.exe"
+AUTHOR="Dao Duy Tung"
+# PERSONALBLOG="https://tungdao.org"
+ 
+  
+POL_SetupWindow_Init
+POL_Debug_Init
+  
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
+  
+POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+  
+POL_System_TmpCreate "$PREFIX"
+ 
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_dotnet20
+POL_Call POL_Install_dotnet40
+POL_Call POL_Install_gecko
+  
+cd "$POL_System_TmpDir"
+  
+if [ "$POL_SELECTED_FILE" ]; then
+    SetupFile="$POL_SELECTED_FILE"
+else
+# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+    INSTALL_METHOD="LOCAL"
+    
+    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
+        POL_Download "$DOWNLOADURL" ""
+        SetupFile="$POL_System_TmpDir/$SETUPFILE"
+    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+        SetupFile="$APP_ANSWER"
+    fi
+fi
+ 
+# Installation
+Set_OS "$OSVERSION"
+ 
+POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$SetupFile"
+POL_Wine_WaitExit "$TITLE"
+ 
+POL_System_TmpDelete
+  
+POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
+POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
+ 
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2020-01-30)
# Distribution used to test : MacOS Mojave 10.14
# Author : Dao Duy Tung
# PlayOnMac: 3.0.3
 
# CHANGELOGS
# Disable method DOWNLOAD
# Removed dotnet30
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="3.0.3"
OSVERSION="win10"
 
EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"
 
  
POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
  
POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
  
POL_System_TmpCreate "$PREFIX"
 
POL_Call POL_Install_msxml6
POL_Call POL_Install_corefonts
POL_Call POL_Install_dotnet20
POL_Call POL_Install_dotnet40
POL_Call POL_Install_gecko
  
cd "$POL_System_TmpDir"
  
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi
 
# Installation
Set_OS "$OSVERSION"
 
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"
 
POL_System_TmpDelete
  
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
 
POL_SetupWindow_Close
exit 0

Antwoorden

Donderdag 30 Januari 2020 om 21:12
Approved because there is no download link.
tungdao Maandag 27 Januari 2020 om 10:49
tungdao Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

WarpPLS is software helping analysis quantitative data (questionnaire, survey) on PLS-based structural equation modeling (SEM) on statistical science.

This script use version 7 beta.

Comment: In the first time, user need install two files as XQuartz and Mono outside playonmac

 

Differences

@@ -0,0 +1,79 @@
+#!/bin/bash
+# Date : (2020-01-30) 
+# Distribution used to test : MacOS Mojave 10.14
+# Author : Dao Duy Tung
+# PlayOnMac: 3.0.3
+
+# CHANGELOGS
+# Disable method DOWNLOAD
+# Removed dotnet30
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="WarpPLS 7"
+PREFIX="TungDaoWarpPLS"
+WORKING_WINE_VERSION="3.0.3"
+OSVERSION="win10"
+
+
+EDITOR="Ned Kock"
+WEB_URL="http://www.warppls.com"
+# DOWNLOADURL=""
+# SETUPFILE=""
+SHORTCUTFILENAME="WarpPLS_7_0.exe"
+AUTHOR="Dao Duy Tung"
+# PERSONALBLOG="https://tungdao.org"
+
+ 
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
+ 
+POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
+POL_System_TmpCreate "$PREFIX"
+
+POL_Call POL_Install_msxml6
+POL_Call POL_Install_corefonts
+POL_Call POL_Install_dotnet20
+POL_Call POL_Install_dotnet40
+POL_Call POL_Install_gecko
+ 
+cd "$POL_System_TmpDir"
+ 
+if [ "$POL_SELECTED_FILE" ]; then
+    SetupFile="$POL_SELECTED_FILE"
+else
+# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+    INSTALL_METHOD="LOCAL"
+    
+    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
+        POL_Download "$DOWNLOADURL" ""
+        SetupFile="$POL_System_TmpDir/$SETUPFILE"
+    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
+        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+        SetupFile="$APP_ANSWER"
+    fi
+fi
+
+# Installation
+Set_OS "$OSVERSION"
+ 
+
+POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$SetupFile"
+POL_Wine_WaitExit "$TITLE"
+
+POL_System_TmpDelete
+ 
+POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
+POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2020-01-30) 
# Distribution used to test : MacOS Mojave 10.14
# Author : Dao Duy Tung
# PlayOnMac: 3.0.3

# CHANGELOGS
# Disable method DOWNLOAD
# Removed dotnet30
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="WarpPLS 7"
PREFIX="TungDaoWarpPLS"
WORKING_WINE_VERSION="3.0.3"
OSVERSION="win10"


EDITOR="Ned Kock"
WEB_URL="http://www.warppls.com"
# DOWNLOADURL=""
# SETUPFILE=""
SHORTCUTFILENAME="WarpPLS_7_0.exe"
AUTHOR="Dao Duy Tung"
# PERSONALBLOG="https://tungdao.org"

 
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEB_URL" "$AUTHOR" "$PREFIX"
 
POL_RequiredVersion "3.0.3" || POL_Debug_Fatal "Sorry, $APPLICATION_TITLE 3.0.3 is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
POL_System_TmpCreate "$PREFIX"

POL_Call POL_Install_msxml6
POL_Call POL_Install_corefonts
POL_Call POL_Install_dotnet20
POL_Call POL_Install_dotnet40
POL_Call POL_Install_gecko
 
cd "$POL_System_TmpDir"
 
if [ "$POL_SELECTED_FILE" ]; then
    SetupFile="$POL_SELECTED_FILE"
else
# POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
    INSTALL_METHOD="LOCAL"
    
    if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then
        POL_Download "$DOWNLOADURL" ""
        SetupFile="$POL_System_TmpDir/$SETUPFILE"
    elif [ "$INSTALL_METHOD" = "LOCAL" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SetupFile="$APP_ANSWER"
    fi
fi

# Installation
Set_OS "$OSVERSION"
 

POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$SetupFile"
POL_Wine_WaitExit "$TITLE"

POL_System_TmpDelete
 
POL_Shortcut "$SHORTCUTFILENAME" "$TITLE"
POL_SetupWindow_message "Your application has been installed successfully." "$TITLE"

POL_SetupWindow_Close
exit 0

Antwoorden

Aangepast door tungdao