Secrets of Grindea - DEMO
Informatie
| Creator | Bericht |
|---|---|
mir
|
WarningThis installer is a beta script. It means that it might not work as expected InformatiePlatforms: Feedbacks1 0 OmschrijvingThis script is tested with Secrets of Grindea - demo only, version 0.56g (2014). Website. Broncode#!/bin/bash
# Date : August 16, 2014
# Last revision : see changelog
# Wine version used : 2.22, 1.7.22
# Author : miR
# Distribution used to test: Ubuntu 14.04 64
# SoG version tested: Demo 0.56g
#
# CHANGELOG
# [miR] (2014-08-16)
# Initial script.
# [Dadu042] (2020-01-14 20:30)
# Wine 1.7.22 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Secrets of Grindea"
POL_System_SetArch "x86"
PREFIX="secretsofgrindea"
WINEVERSION="2.22"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
#Create prefix
POL_SetupWindow_presentation "$TITLE" "Pixel Ferrets" "http://www.secretsofgrindea.com" "miR" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Dependencies
POL_Call POL_Install_dotnet40
POL_Call POL_Install_d3dx10
POL_Call POL_Install_corefonts
POL_SetupWindow_InstallMethod "LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the Secrets of Grindea installer that you have downloaded." "Secrets of Grindea installation"
cd "$POL_System_TmpDir"
POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$APP_ANSWER"
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitExit "$TITLE"
fi
POL_Shortcut "Secrets Of Grindea.exe" "$TITLE" "" "" "Game;"
POL_SetupWindow_Close
exit 0
|
Contributions
Filters:
Contribute| Member | Bericht |
| Dadu042 | Donderdag 16 Januari 2020 om 22:38 |
|
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,17 +1,23 @@
#!/bin/bash
# Date : August 16, 2014
-# Last revision : August 16, 2014
-# Wine version used : 1.7.22
+# Last revision : see changelog
+# Wine version used : 2.22, 1.7.22
# Author : miR
# Distribution used to test: Ubuntu 14.04 64
# SoG version tested: Demo 0.56g
+#
+# CHANGELOG
+# [miR] (2014-08-16)
+# Initial script.
+# [Dadu042] (2020-01-14 20:30)
+# Wine 1.7.22 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Secrets of Grindea"
POL_System_SetArch "x86"
PREFIX="secretsofgrindea"
-WINEVERSION="1.7.22"
+WINEVERSION="2.22"
# Initialization
@@ -40,7 +46,7 @@
POL_Wine_WaitExit "$TITLE"
fi
-POL_Shortcut "Secrets Of Grindea.exe" "$TITLE"
+POL_Shortcut "Secrets Of Grindea.exe" "$TITLE" "" "" "Game;"
POL_SetupWindow_Close
exit 0
New source code#!/bin/bash
# Date : August 16, 2014
# Last revision : see changelog
# Wine version used : 2.22, 1.7.22
# Author : miR
# Distribution used to test: Ubuntu 14.04 64
# SoG version tested: Demo 0.56g
#
# CHANGELOG
# [miR] (2014-08-16)
# Initial script.
# [Dadu042] (2020-01-14 20:30)
# Wine 1.7.22 -> 2.22
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Secrets of Grindea"
POL_System_SetArch "x86"
PREFIX="secretsofgrindea"
WINEVERSION="2.22"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
#Create prefix
POL_SetupWindow_presentation "$TITLE" "Pixel Ferrets" "http://www.secretsofgrindea.com" "miR" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Dependencies
POL_Call POL_Install_dotnet40
POL_Call POL_Install_d3dx10
POL_Call POL_Install_corefonts
POL_SetupWindow_InstallMethod "LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the Secrets of Grindea installer that you have downloaded." "Secrets of Grindea installation"
cd "$POL_System_TmpDir"
POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$APP_ANSWER"
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitExit "$TITLE"
fi
POL_Shortcut "Secrets Of Grindea.exe" "$TITLE" "" "" "Game;"
POL_SetupWindow_Close
exit 0
Antwoorden |
| nosheep | Maandag 9 Februari 2015 om 13:05 |
nosheep
|
BerichtWorks fine, thanks! Antwoorden |
| mir | Zondag 17 Augustus 2014 om 20:27 |
mir
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,46 @@ +#!/bin/bash +# Date : August 16, 2014 +# Last revision : August 16, 2014 +# Wine version used : 1.7.22 +# Author : miR +# Distribution used to test: Ubuntu 14.04 64 +# SoG version tested: Demo 0.56g + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +TITLE="Secrets of Grindea" +POL_System_SetArch "x86" +PREFIX="secretsofgrindea" +WINEVERSION="1.7.22" + +# Initialization + +POL_SetupWindow_Init +POL_Debug_Init + +#Create prefix +POL_SetupWindow_presentation "$TITLE" "Pixel Ferrets" "http://www.secretsofgrindea.com" "miR" "$PREFIX" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Dependencies +POL_Call POL_Install_dotnet40 +POL_Call POL_Install_d3dx10 +POL_Call POL_Install_corefonts + +POL_SetupWindow_InstallMethod "LOCAL" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the Secrets of Grindea installer that you have downloaded." "Secrets of Grindea installation" + cd "$POL_System_TmpDir" + POL_Wine_WaitBefore "$TITLE" + POL_Wine start /unix "$APP_ANSWER" + POL_SetupWindow_wait "Installation in progress." "$TITLE installation" + POL_Wine_WaitExit "$TITLE" +fi + +POL_Shortcut "Secrets Of Grindea.exe" "$TITLE" +POL_SetupWindow_Close + +exit 0 New source code#!/bin/bash
# Date : August 16, 2014
# Last revision : August 16, 2014
# Wine version used : 1.7.22
# Author : miR
# Distribution used to test: Ubuntu 14.04 64
# SoG version tested: Demo 0.56g
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Secrets of Grindea"
POL_System_SetArch "x86"
PREFIX="secretsofgrindea"
WINEVERSION="1.7.22"
# Initialization
POL_SetupWindow_Init
POL_Debug_Init
#Create prefix
POL_SetupWindow_presentation "$TITLE" "Pixel Ferrets" "http://www.secretsofgrindea.com" "miR" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Dependencies
POL_Call POL_Install_dotnet40
POL_Call POL_Install_d3dx10
POL_Call POL_Install_corefonts
POL_SetupWindow_InstallMethod "LOCAL"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
POL_SetupWindow_browse "Please select the Secrets of Grindea installer that you have downloaded." "Secrets of Grindea installation"
cd "$POL_System_TmpDir"
POL_Wine_WaitBefore "$TITLE"
POL_Wine start /unix "$APP_ANSWER"
POL_SetupWindow_wait "Installation in progress." "$TITLE installation"
POL_Wine_WaitExit "$TITLE"
fi
POL_Shortcut "Secrets Of Grindea.exe" "$TITLE"
POL_SetupWindow_Close
exit 0
Antwoorden |
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
Installeer dit programma