Vous êtes ici
GOG.com - Black Mirror 3
Informations
Créateur | Messages |
---|---|
Okto
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionThe third, and final part of the series. Released in 2011. Wikipedia. Code source#!/bin/bash # Date : (2015-05-08 18-54) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy # # CHANGELOG # [Benjamin Hardy] (2015-05-08 18-54) # Initial script, for the GOG release. # [Dadu042] (2020-01-25 11:10) # Wine 1.6.2 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" WINEVERSION="3.0.3" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" POL_Call POL_GoG_install POL_SetupWindow_VMS "128" POL_Wine_reboot POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Samedi 25 Janvier 2020 à 12:06 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -3,13 +3,19 @@ # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy +# +# CHANGELOG +# [Benjamin Hardy] (2015-05-08 18-54) +# Initial script, for the GOG release. +# [Dadu042] (2020-01-25 11:10) +# Wine 1.6.2 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" -WINEVERSION="1.6.2" +WINEVERSION="3.0.3" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" Nouveau code source#!/bin/bash # Date : (2015-05-08 18-54) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy # # CHANGELOG # [Benjamin Hardy] (2015-05-08 18-54) # Initial script, for the GOG release. # [Dadu042] (2020-01-25 11:10) # Wine 1.6.2 -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" WINEVERSION="3.0.3" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" POL_Call POL_GoG_install POL_SetupWindow_VMS "128" POL_Wine_reboot POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" POL_SetupWindow_Close exit 0 Réponses |
Okto | Samedi 9 Mai 2015 à 21:58 |
Okto
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,39 @@ +#!/bin/bash +# Date : (2015-05-08 18-54) +# Wine version used : 1.6.2 +# Distribution used to test : OpenSUSE 13.2 +# Author : Benjamin Hardy + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="GOG.com - Black Mirror 3" +PREFIX="BlackMirror3" +WINEVERSION="1.6.2" +SHORTCUT_NAME="Black Mirror 3" +GOGID="black_mirror_3" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" + +POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" + +POL_Call POL_GoG_install + +POL_SetupWindow_VMS "128" + +POL_Wine_reboot + +POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" +POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" + +POL_SetupWindow_Close + +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2015-05-08 18-54) # Wine version used : 1.6.2 # Distribution used to test : OpenSUSE 13.2 # Author : Benjamin Hardy [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="GOG.com - Black Mirror 3" PREFIX="BlackMirror3" WINEVERSION="1.6.2" SHORTCUT_NAME="Black Mirror 3" GOGID="black_mirror_3" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Cranberry Production" "http://www.gog.com/gamecard/$GOGID" "Benjamin Hardy" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "9bbedd192bbaf4a69056e9b74a5e43cd" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_message "$(eval_gettext 'When the GOG installer asks you to install Microsoft Visual C++ Redistributable, please select Cancel.')" "$TITLE" POL_Call POL_GoG_install POL_SetupWindow_VMS "128" POL_Wine_reboot POL_Shortcut "BlackMirrorIII.exe" "$SHORTCUT_NAME" "" "" "Game;AdventureGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Black Mirror 3/Docs/Manual.pdf" POL_SetupWindow_Close exit 0 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