Poker Stars
Informations
Creator | Message |
---|---|
lahtis
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 3 DescriptionOnline poker cardroom. ScreenshotsSource code#!/bin/bash # Date : (2013-02-22) # Last revision : see changelog # Author : lahtis # PlayOnLinux: 4.2.12 # # CHANGELOG # [lahtis] (2013-02-22) # Initial writting. # [lahtis] (2015-06-08) # Updates # [Dadu042] (2019-06-28) # Remove the required Wine version (currently 1.7.47) simplest for future POL's end users. # Add LOCAL install option (because the file is hard to download today). # Standardize POL_System_Tmp [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Poker Stars" EDITOR="PokerStars" EDITOR_URL="http://www.pokerstars.eu/" PREFIX="PokerStarsEU" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate # Create tmp directory for downloaded files POL_System_TmpCreate "$PREFIX" # Moving tmp directory cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" else # Download file POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe" # Select setup file SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe" # Install file && check install errors POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')" POL_Wine_WaitExit "$TITLE" fi # Create shortcut POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" "Game;" # Wait is patch is installed POL_Wine_WaitExit "$TITLE" # Delete tmp directory POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Saturday 29 June 2019 at 20:20 |
Dadu042
|
InformationThis update has been approved by the team. MessageDetails in the script : area CHANGELOG. Software version I used: 'PokerStars 7 (Version : 27382). Server version: 1106D' (info from the About of the help menu in the software) Differences@@ -1,49 +1,70 @@ #!/bin/bash # Date : (2013-02-22) -# Last revision : (2015-06-08 00:16) +# Last revision : see changelog # Author : lahtis -# PlayOnLinux: 4.1.1 +# PlayOnLinux: 4.2.12 +# +# CHANGELOG +# [lahtis] (2013-02-22) +# Initial writting. +# [lahtis] (2015-06-08) +# Updates +# [Dadu042] (2019-06-28) +# Remove the required Wine version (currently 1.7.47) simplest for future POL's end users. +# Add LOCAL install option (because the file is hard to download today). +# Standardize POL_System_Tmp [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Poker Stars" -WINEVERSION="1.7.47" EDITOR="PokerStars" EDITOR_URL="http://www.pokerstars.eu/" PREFIX="PokerStarsEU" - + POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "$WINEVERSION" - +POL_Wine_PrefixCreate + # Create tmp directory for downloaded files -POL_System_TmpCreate "PokerStarsTmp" - +POL_System_TmpCreate "$PREFIX" + # Moving tmp directory cd "$POL_System_TmpDir" -# Download file -POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe" - -# Select setup file -SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe" - -# Install file && check install errors -POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')" - -# Delete tmp directory -POL_System_TmpDelete +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" == "LOCAL" ]; then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" + POL_Wine start /unix "$SETUP_EXE" + POL_Wine_WaitExit "$TITLE" + cd "$POL_System_TmpDir" +else + # Download file + POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe" + + # Select setup file + SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe" + + # Install file && check install errors + POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')" + POL_Wine_WaitExit "$TITLE" +fi + # Create shortcut -POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" - +POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" "Game;" + # Wait is patch is installed POL_Wine_WaitExit "$TITLE" +# Delete tmp directory +POL_System_TmpDelete POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2013-02-22) # Last revision : see changelog # Author : lahtis # PlayOnLinux: 4.2.12 # # CHANGELOG # [lahtis] (2013-02-22) # Initial writting. # [lahtis] (2015-06-08) # Updates # [Dadu042] (2019-06-28) # Remove the required Wine version (currently 1.7.47) simplest for future POL's end users. # Add LOCAL install option (because the file is hard to download today). # Standardize POL_System_Tmp [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Poker Stars" EDITOR="PokerStars" EDITOR_URL="http://www.pokerstars.eu/" PREFIX="PokerStarsEU" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate # Create tmp directory for downloaded files POL_System_TmpCreate "$PREFIX" # Moving tmp directory cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$POL_System_TmpDir" else # Download file POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe" # Select setup file SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe" # Install file && check install errors POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')" POL_Wine_WaitExit "$TITLE" fi # Create shortcut POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" "Game;" # Wait is patch is installed POL_Wine_WaitExit "$TITLE" # Delete tmp directory POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesEdited by Dadu042 |
Incasinato | Saturday 29 June 2019 at 17:43 |
Incasinato
|
MessageVDRIVES_LINK_MADE=TRUE RepliesSaturday 29 June 2019 at 17:47
|
Incasinato | Saturday 8 September 2018 at 8:32 |
Incasinato
|
MessageHi all. :) I had to install again the program, beause there was any connection to servers. Then, now, I can't terminate installation: it's broke on the last sheet, absolutely empty. I don't know what to do.
Francesco RepliesSaturday 8 September 2018 at 8:42
Sunday 30 September 2018 at 2:59
Sunday 30 September 2018 at 3:01
|
giacecco | Friday 8 April 2016 at 12:15 |
giacecco
|
MessageAlmost all good on a Fedora 23 that is up-to-date at the moment of writing. The software also correctly self-updates from the International version to the UK version, where I live, all within the normal installation process. It is important not to let the window manager manage the windows, e.g. in I3WM - as in my case - this can create "loops" when pop-out windows are displayed. Replies |
raffiwin | Monday 14 March 2016 at 15:55 |
raffiwin
|
|
lahtis | Wednesday 5 August 2015 at 23:18 |
lahtis
|
WarningThis update has not been approved yet by the team. MessageNew working version. Differences@@ -1,6 +1,6 @@ #!/bin/bash # Date : (2013-02-22) -# Last revision : (2014-10-02 16:16) +# Last revision : (2015-06-08 00:16) # Author : lahtis # PlayOnLinux: 4.1.1 @@ -8,7 +8,7 @@ source "$PLAYONLINUX/lib/sources" TITLE="Poker Stars" -WINEVERSION="1.4.1" +WINEVERSION="1.7.47" EDITOR="PokerStars" EDITOR_URL="http://www.pokerstars.eu/" PREFIX="PokerStarsEU" New source code#!/bin/bash # Date : (2013-02-22) # Last revision : (2015-06-08 00:16) # Author : lahtis # PlayOnLinux: 4.1.1 [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Poker Stars" WINEVERSION="1.7.47" EDITOR="PokerStars" EDITOR_URL="http://www.pokerstars.eu/" PREFIX="PokerStarsEU" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "lahtis" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Create tmp directory for downloaded files POL_System_TmpCreate "PokerStarsTmp" # Moving tmp directory cd "$POL_System_TmpDir" # Download file POL_Download "http://www.pokerstars.net/PokerStarsInstallPM.exe" # Select setup file SETUP="$POL_System_TmpDir/PokerStarsInstallPM.exe" # Install file && check install errors POL_Wine "$SETUP" || POL_Debug_Fatal "$(eval_gettext 'Error while installing. Downloaded file not found.')" # Delete tmp directory POL_System_TmpDelete # Create shortcut POL_Shortcut "PokerStars.exe" "$TITLE" "$TITLE.png" # Wait is patch is installed POL_Wine_WaitExit "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 20 August 2015 at 19:45
|
rooltak | Wednesday 5 August 2015 at 22:06 |
rooltak
|
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