Secrets of Grindea - DEMO
Informations
| Creator | Message | 
|---|---|
| mir   
 | WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms:   Feedbacks1 0 DescriptionThis script is tested with Secrets of Grindea - demo only, version 0.56g (2014). Website. 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
 | 
Contributions
Filters:
Contribute| Member | Message | 
| Dadu042 | Thursday 16 January 2020 at 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
Replies | 
| nosheep | Monday 9 February 2015 at 13:05 | 
| nosheep   
 | MessageWorks fine, thanks! Replies | 
| mir | Sunday 17 August 2014 at 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
Replies | 
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
 Install this program
 Install this program