POL_Install_mono481
Informations
| Creator | Wiadmości | 
|---|---|
| 
                Dadu042
                 
  | 
            
                                        InformationThis installer has been approved by the team. InformationsPlatforms:   Feedbacks0 0 Description2017. Requires OS Windows Vista or higher. Source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
# [Dadu042] (2020-01-09 12:50)
#   Fix comment.
#   Warn 64bits NOK.
# [Dadu042] (2020-07-05 14:00)
#   Fix POL_Wine_WaitExit
if [ "$POL_ARCH" == "amd64" ]; then
        POL_Debug_Fatal "$(eval_gettext '64-bit not supported')"
fi
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if it is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitExit "Mono"
fi                 | 
        
Contributions
Filters:
Contribute| Member | Wiadmości | 
| Dadu042 | Sunday 5 July 2020 at 18:46 | 
| 
                    Dadu042
                     
  | 
                
                    InformationThis update has been approved by the team. Differences@@ -11,6 +11,8 @@
 # [Dadu042] (2020-01-09 12:50)
 #   Fix comment.
 #   Warn 64bits NOK.
+# [Dadu042] (2020-07-05 14:00)
+#   Fix POL_Wine_WaitExit
 
 if [ "$POL_ARCH" == "amd64" ]; then
         POL_Debug_Fatal "$(eval_gettext '64-bit not supported')"
@@ -27,5 +29,5 @@
 CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
 if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
         POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
-        POL_Wine_WaitEx
+        POL_Wine_WaitExit "Mono"
 fi
\ No newline at end of file
                            New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
# [Dadu042] (2020-01-09 12:50)
#   Fix comment.
#   Warn 64bits NOK.
# [Dadu042] (2020-07-05 14:00)
#   Fix POL_Wine_WaitExit
if [ "$POL_ARCH" == "amd64" ]; then
        POL_Debug_Fatal "$(eval_gettext '64-bit not supported')"
fi
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if it is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitExit "Mono"
fi                            Odpowiedzi | 
            
| Dadu042 | Thursday 9 January 2020 at 12:59 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. Differences@@ -10,6 +10,11 @@ # First script. # [Dadu042] (2020-01-09 12:50) # Fix comment. +# Warn 64bits NOK. + +if [ "$POL_ARCH" == "amd64" ]; then + POL_Debug_Fatal "$(eval_gettext '64-bit not supported')" +fi FORCE_MODE=$1 New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
# [Dadu042] (2020-01-09 12:50)
#   Fix comment.
#   Warn 64bits NOK.
if [ "$POL_ARCH" == "amd64" ]; then
        POL_Debug_Fatal "$(eval_gettext '64-bit not supported')"
fi
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if it is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi                            Odpowiedzi | 
            
| Dadu042 | Thursday 9 January 2020 at 12:53 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. Differences@@ -8,6 +8,8 @@
 # CHANGELOG
 # [Dadu042] (2019-12-24 18:25)
 #   First script.
+# [Dadu042] (2020-01-09 12:50)
+#   Fix comment.
 
 FORCE_MODE=$1
 
@@ -16,7 +18,7 @@
 cd "$POL_USER_ROOT"/ressources/mono481/
 POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
  
-# Check if mono210 is already installed
+# Check if it is already installed
 CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
 if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
         POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
                            New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
# [Dadu042] (2020-01-09 12:50)
#   Fix comment.
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if it is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi                            Odpowiedzi | 
            
| Dadu042 | Tuesday 24 December 2019 at 19:11 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. Wiadmościand again... Pathname wrong ?! :( Differences@@ -19,6 +19,6 @@
 # Check if mono210 is already installed
 CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
 if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
-        POL_Wine msiexec /i "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
+        POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
         POL_Wine_WaitEx
 fi
\ No newline at end of file
                            New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if mono210 is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i "mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi                            Odpowiedzi | 
            
| Dadu042 | Tuesday 24 December 2019 at 18:58 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. Wiadmościtry again Differences@@ -19,6 +19,6 @@
 # Check if mono210 is already installed
 CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
 if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
-        POL_Wine start msiexec /i "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
+        POL_Wine msiexec /i "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
         POL_Wine_WaitEx
 fi
\ No newline at end of file
                            New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if mono210 is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine msiexec /i "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi                            Odpowiedzi | 
            
| Dadu042 | Tuesday 24 December 2019 at 18:42 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. Differences@@ -19,6 +19,6 @@
 # Check if mono210 is already installed
 CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
 if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
-        POL_Wine start msiexec /i /unix "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
+        POL_Wine start msiexec /i "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
         POL_Wine_WaitEx
-fi
+fi
\ No newline at end of file
                            New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if mono210 is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi                            Odpowiedzi | 
            
| Dadu042 | Tuesday 24 December 2019 at 18:38 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. WiadmościTry to fix the can not launch MSI. Differences@@ -1,7 +1,3 @@ -Making this because dotnet40fx does not exits. Mainly testing for game Reality Project. - - - #!/bin/bash # PlayOnLinux Function # Date : (2019-12-24 18:25) New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if mono210 is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start msiexec /i /unix "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi
                            OdpowiedziEdytowane przez Dadu042  | 
            
| Dadu042 | Tuesday 24 December 2019 at 18:30 | 
| 
                    Dadu042
                     
  | 
                
                    WarningThis update has not been approved yet by the team. WiadmościMaking this because dotnet40fx does not exits. Mainly testing for game Reality Project. Differences@@ -0,0 +1,24 @@ +#!/bin/bash +# PlayOnLinux Function +# Date : (2019-12-24 18:25) +# Last revision : see changelog +# Author : Dadu042 +# Only For : http://www.playonlinux.com +# +# CHANGELOG +# [Dadu042] (2019-12-24 18:25) +# First script. + +FORCE_MODE=$1 + +# Downloading Mono 4.81 +mkdir -p "$POL_USER_ROOT"/ressources/mono481/ +cd "$POL_USER_ROOT"/ressources/mono481/ +POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481" + +# Check if mono210 is already installed +CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"` +if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then + POL_Wine start /unix "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent + POL_Wine_WaitEx +fi \ No newline at end of file New source code#!/bin/bash
# PlayOnLinux Function
# Date : (2019-12-24 18:25)
# Last revision : see changelog
# Author : Dadu042
# Only For : http://www.playonlinux.com
#
# CHANGELOG
# [Dadu042] (2019-12-24 18:25)
#   First script.
FORCE_MODE=$1
# Downloading Mono 4.81
mkdir -p "$POL_USER_ROOT"/ressources/mono481/
cd "$POL_USER_ROOT"/ressources/mono481/
POL_Download_Resource "https://download.mono-project.com/archive/4.8.1/windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" "78227471a45a764a7e0b834c05be15aa" "mono481"
 
# Check if mono210 is already installed
CHECK_MONO481=`find $WINEPREFIX -name "mono-4.8.1.dll"`
if [ "$CHECK_MONO481" == "" ] || [ "$FORCE_MODE" == "--force" ]; then
        POL_Wine start /unix "windows-installer/mono-4.8.1.0-gtksharp-2.12.44-win32-0.msi" /silent
        POL_Wine_WaitEx
fi                            Odpowiedzi | 
            
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