KakaoTalk
Informations
Creator | Message |
---|---|
Dadu042
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 2 DescriptionKakaoTalk (Hangul: 카카오톡), or sometimes KaTalk, is a free mobile instant messaging application for smartphones with free text and free call features, operated by Kakao Corporation. Website, Wikipedia. ScreenshotsSource code#!/bin/bash # Date : (2020-01-25 22-29) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 bionic # Author : TheBallOfAeolus # Licence : GPLv3 # PlayOnLinux: 4.3.4 # # CHANGELOG # [TheBallOfAeolus] (2019-11-11 15-30) # Initial script. # [TheBallOfAeolus] (2019-11-16 21-44) # I have modified the script and added mp10, riched20 and wmpcodecs, I was having issues with some notifications # and by adding those, everything is fine. # I am not sure which one is the one that actually fixed it, but now everything is working :P # [Dadu042] (2020-01-21 09:50) # Wine 4.19 -> 4.21 (latest and perhaps final). # [TheBallOfAeolus] (2020-01-25 22-29) # The latest version of KakaoTalk is not supporting Windows 2008 anymore, updating the configs to Windows 10 # [Dadu042] (2020-02-10 16:20) # Add POL_RequiredVersion. # Add category to POL_Shortcut. # [kladess] (2020-09-02 01:15) # Wine 4.21 -> 5.0.2 (stable) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="KakaoTalk" WINEVERSION="5.0.2" TITLE="Kakao Talk" EDITOR="Kakao Corp." GAME_URL="https://www.kakaocorp.com/" AUTHOR="TheBallOfAeolus" DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" OSVERSION="win10" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" # Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create Prefix POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "$OSVERSION" #Dependencies POL_Call POL_Install_gdiplus #POL_Call POL_Install_msxml6 #POL_Call POL_Install_riched20 #POL_Call POL_Install_riched30 #POL_Call POL_Install_wmp9 #POL_Call POL_install_wmp10 #POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko POL_Call POL_Install_winhttp # Installation Set_OS "$OSVERSION" POL_SetupWindow_message "The installer for $TITLE will now appear.nDo not allow the installer to launch the game.nUncheck the box to launch the game at the end of the installation.nnIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" "" "" "Network;" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.UTF-8" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
AquaSZS | Thursday 27 May 2021 at 12:22 |
AquaSZS
|
MessageThank you for putting up this app. Getting Kakaotalk to work was a pain in the ass. Most of the app works fine, but I cannot download any file people upload. The download starts then immediately says "failed to load", only leaving behind .part file at the download directory. I tried installing additional wine components and changing locale to no avail. Is this an issue for anyone else? RepliesWednesday 2 June 2021 at 9:16
|
kladess | Wednesday 2 September 2020 at 3:18 |
kladess
|
InformationThis update has been approved by the team. Messagewine 4.21 -> wine 5.0.2 no more need wmp9, wmp10, wmpcodecs, msxml6, riched20, riched30
Differences@@ -20,12 +20,14 @@ # [Dadu042] (2020-02-10 16:20) # Add POL_RequiredVersion. # Add category to POL_Shortcut. - +# [kladess] (2020-09-02 01:15) +# Wine 4.21 -> 5.0.2 (stable) + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="KakaoTalk" -WINEVERSION="4.21" +WINEVERSION="5.0.2" TITLE="Kakao Talk" EDITOR="Kakao Corp." GAME_URL="https://www.kakaocorp.com/" @@ -34,20 +36,20 @@ OSVERSION="win10" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" - + # Initialization POL_SetupWindow_Init - + POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" - + # Create Prefix POL_System_TmpCreate "$PREFIX" - + POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then @@ -59,40 +61,41 @@ POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi - + POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" - + # Configuration -Set_OS "winxp" - +Set_OS "$OSVERSION" + #Dependencies POL_Call POL_Install_gdiplus -POL_Call POL_Install_msxml6 -POL_Call POL_Install_riched20 -POL_Call POL_Install_riched30 -POL_Call POL_Install_wmp9 -POL_Call POL_install_wmp10 -POL_Call POL_install_wmpcodecs +#POL_Call POL_Install_msxml6 +#POL_Call POL_Install_riched20 +#POL_Call POL_Install_riched30 +#POL_Call POL_Install_wmp9 +#POL_Call POL_install_wmp10 +#POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko - - +POL_Call POL_Install_winhttp + # Installation Set_OS "$OSVERSION" - + POL_SetupWindow_message "The installer for $TITLE will now appear.nDo not allow the installer to launch the game.nUncheck the box to launch the game at the end of the installation.nnIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" - + # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" "" "" "Network;" -POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" - +POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.UTF-8" + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_Close exit \ No newline at end of file New source code#!/bin/bash # Date : (2020-01-25 22-29) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 bionic # Author : TheBallOfAeolus # Licence : GPLv3 # PlayOnLinux: 4.3.4 # # CHANGELOG # [TheBallOfAeolus] (2019-11-11 15-30) # Initial script. # [TheBallOfAeolus] (2019-11-16 21-44) # I have modified the script and added mp10, riched20 and wmpcodecs, I was having issues with some notifications # and by adding those, everything is fine. # I am not sure which one is the one that actually fixed it, but now everything is working :P # [Dadu042] (2020-01-21 09:50) # Wine 4.19 -> 4.21 (latest and perhaps final). # [TheBallOfAeolus] (2020-01-25 22-29) # The latest version of KakaoTalk is not supporting Windows 2008 anymore, updating the configs to Windows 10 # [Dadu042] (2020-02-10 16:20) # Add POL_RequiredVersion. # Add category to POL_Shortcut. # [kladess] (2020-09-02 01:15) # Wine 4.21 -> 5.0.2 (stable) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="KakaoTalk" WINEVERSION="5.0.2" TITLE="Kakao Talk" EDITOR="Kakao Corp." GAME_URL="https://www.kakaocorp.com/" AUTHOR="TheBallOfAeolus" DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" OSVERSION="win10" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" # Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create Prefix POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "$OSVERSION" #Dependencies POL_Call POL_Install_gdiplus #POL_Call POL_Install_msxml6 #POL_Call POL_Install_riched20 #POL_Call POL_Install_riched30 #POL_Call POL_Install_wmp9 #POL_Call POL_install_wmp10 #POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko POL_Call POL_Install_winhttp # Installation Set_OS "$OSVERSION" POL_SetupWindow_message "The installer for $TITLE will now appear.nDo not allow the installer to launch the game.nUncheck the box to launch the game at the end of the installation.nnIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" "" "" "Network;" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.UTF-8" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit RepliesEdited by kladess |
Dadu042 | Monday 10 February 2020 at 16:22 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -17,6 +17,9 @@ # Wine 4.19 -> 4.21 (latest and perhaps final). # [TheBallOfAeolus] (2020-01-25 22-29) # The latest version of KakaoTalk is not supporting Windows 2008 anymore, updating the configs to Windows 10 +# [Dadu042] (2020-02-10 16:20) +# Add POL_RequiredVersion. +# Add category to POL_Shortcut. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -39,6 +42,8 @@ # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create Prefix POL_System_TmpCreate "$PREFIX" @@ -83,7 +88,7 @@ POL_Wine_WaitExit "$TITLE" # Create Shortcuts -POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" +POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" "" "" "Network;" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" # Cleanup New source code#!/bin/bash # Date : (2020-01-25 22-29) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 bionic # Author : TheBallOfAeolus # Licence : GPLv3 # PlayOnLinux: 4.3.4 # # CHANGELOG # [TheBallOfAeolus] (2019-11-11 15-30) # Initial script. # [TheBallOfAeolus] (2019-11-16 21-44) # I have modified the script and added mp10, riched20 and wmpcodecs, I was having issues with some notifications # and by adding those, everything is fine. # I am not sure which one is the one that actually fixed it, but now everything is working :P # [Dadu042] (2020-01-21 09:50) # Wine 4.19 -> 4.21 (latest and perhaps final). # [TheBallOfAeolus] (2020-01-25 22-29) # The latest version of KakaoTalk is not supporting Windows 2008 anymore, updating the configs to Windows 10 # [Dadu042] (2020-02-10 16:20) # Add POL_RequiredVersion. # Add category to POL_Shortcut. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="KakaoTalk" WINEVERSION="4.21" TITLE="Kakao Talk" EDITOR="Kakao Corp." GAME_URL="https://www.kakaocorp.com/" AUTHOR="TheBallOfAeolus" DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" OSVERSION="win10" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" # Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" # Create Prefix POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Dependencies POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml6 POL_Call POL_Install_riched20 POL_Call POL_Install_riched30 POL_Call POL_Install_wmp9 POL_Call POL_install_wmp10 POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko # Installation Set_OS "$OSVERSION" POL_SetupWindow_message "The installer for $TITLE will now appear.nDo not allow the installer to launch the game.nUncheck the box to launch the game at the end of the installation.nnIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" "" "" "Network;" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit Replies |
Dadu042 | Sunday 26 January 2020 at 10:17 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -1,5 +1,5 @@ #!/bin/bash -# Date : (2019-11-11 15-30) +# Date : (2020-01-25 22-29) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 bionic # Author : TheBallOfAeolus @@ -15,10 +15,12 @@ # I am not sure which one is the one that actually fixed it, but now everything is working :P # [Dadu042] (2020-01-21 09:50) # Wine 4.19 -> 4.21 (latest and perhaps final). +# [TheBallOfAeolus] (2020-01-25 22-29) +# The latest version of KakaoTalk is not supporting Windows 2008 anymore, updating the configs to Windows 10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + PREFIX="KakaoTalk" WINEVERSION="4.21" TITLE="Kakao Talk" @@ -26,21 +28,21 @@ GAME_URL="https://www.kakaocorp.com/" AUTHOR="TheBallOfAeolus" DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" -OSVERSION="win2008" +OSVERSION="win10" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" - + # Initialization POL_SetupWindow_Init - + POL_Debug_Init - + # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + # Create Prefix POL_System_TmpCreate "$PREFIX" - + POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then @@ -52,13 +54,13 @@ POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Configuration Set_OS "winxp" - + #Dependencies POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml6 @@ -69,23 +71,23 @@ POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko - - + + # Installation Set_OS "$OSVERSION" - -POL_SetupWindow_message "The installer for $TITLE will now appear.\nDo not allow the installer to launch the game.\nUncheck the box to launch the game at the end of the installation.\n\nIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.\n" "Uncheck the Launch Game checkbox!" + +POL_SetupWindow_message "The installer for $TITLE will now appear.nDo not allow the installer to launch the game.nUncheck the box to launch the game at the end of the installation.nnIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" - + # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" - + # Cleanup POL_System_TmpDelete - + POL_SetupWindow_Close exit \ No newline at end of file New source code#!/bin/bash # Date : (2020-01-25 22-29) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 bionic # Author : TheBallOfAeolus # Licence : GPLv3 # PlayOnLinux: 4.3.4 # # CHANGELOG # [TheBallOfAeolus] (2019-11-11 15-30) # Initial script. # [TheBallOfAeolus] (2019-11-16 21-44) # I have modified the script and added mp10, riched20 and wmpcodecs, I was having issues with some notifications # and by adding those, everything is fine. # I am not sure which one is the one that actually fixed it, but now everything is working :P # [Dadu042] (2020-01-21 09:50) # Wine 4.19 -> 4.21 (latest and perhaps final). # [TheBallOfAeolus] (2020-01-25 22-29) # The latest version of KakaoTalk is not supporting Windows 2008 anymore, updating the configs to Windows 10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="KakaoTalk" WINEVERSION="4.21" TITLE="Kakao Talk" EDITOR="Kakao Corp." GAME_URL="https://www.kakaocorp.com/" AUTHOR="TheBallOfAeolus" DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" OSVERSION="win10" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" # Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Dependencies POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml6 POL_Call POL_Install_riched20 POL_Call POL_Install_riched30 POL_Call POL_Install_wmp9 POL_Call POL_install_wmp10 POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko # Installation Set_OS "$OSVERSION" POL_SetupWindow_message "The installer for $TITLE will now appear.nDo not allow the installer to launch the game.nUncheck the box to launch the game at the end of the installation.nnIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit Replies |
Dadu042 | Tuesday 21 January 2020 at 9:57 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,91 @@ +#!/bin/bash +# Date : (2019-11-11 15-30) +# Last revision : see changelog +# Distribution used to test : Ubuntu 18.04 bionic +# Author : TheBallOfAeolus +# Licence : GPLv3 +# PlayOnLinux: 4.3.4 +# +# CHANGELOG +# [TheBallOfAeolus] (2019-11-11 15-30) +# Initial script. +# [TheBallOfAeolus] (2019-11-16 21-44) +# I have modified the script and added mp10, riched20 and wmpcodecs, I was having issues with some notifications +# and by adding those, everything is fine. +# I am not sure which one is the one that actually fixed it, but now everything is working :P +# [Dadu042] (2020-01-21 09:50) +# Wine 4.19 -> 4.21 (latest and perhaps final). + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="KakaoTalk" +WINEVERSION="4.21" +TITLE="Kakao Talk" +EDITOR="Kakao Corp." +GAME_URL="https://www.kakaocorp.com/" +AUTHOR="TheBallOfAeolus" +DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" +OSVERSION="win2008" +SHORTCUTFILENAME="KakaoTalk.exe" +DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" + +# Initialization +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "$DOWNLOADURL" + INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" +fi + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "winxp" + +#Dependencies +POL_Call POL_Install_gdiplus +POL_Call POL_Install_msxml6 +POL_Call POL_Install_riched20 +POL_Call POL_Install_riched30 +POL_Call POL_Install_wmp9 +POL_Call POL_install_wmp10 +POL_Call POL_install_wmpcodecs +POL_Call POL_Install_mono28 +POL_Call POL_Install_gecko + + +# Installation +Set_OS "$OSVERSION" + +POL_SetupWindow_message "The installer for $TITLE will now appear.\nDo not allow the installer to launch the game.\nUncheck the box to launch the game at the end of the installation.\n\nIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.\n" "Uncheck the Launch Game checkbox!" +POL_SetupWindow_wait "Installation in progress." "$TITLE installation" +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$INSTALLER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" +POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" + +# Cleanup +POL_System_TmpDelete + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash # Date : (2019-11-11 15-30) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 bionic # Author : TheBallOfAeolus # Licence : GPLv3 # PlayOnLinux: 4.3.4 # # CHANGELOG # [TheBallOfAeolus] (2019-11-11 15-30) # Initial script. # [TheBallOfAeolus] (2019-11-16 21-44) # I have modified the script and added mp10, riched20 and wmpcodecs, I was having issues with some notifications # and by adding those, everything is fine. # I am not sure which one is the one that actually fixed it, but now everything is working :P # [Dadu042] (2020-01-21 09:50) # Wine 4.19 -> 4.21 (latest and perhaps final). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="KakaoTalk" WINEVERSION="4.21" TITLE="Kakao Talk" EDITOR="Kakao Corp." GAME_URL="https://www.kakaocorp.com/" AUTHOR="TheBallOfAeolus" DOWNLOADURL="http://app.pc.kakao.com/talk/win32/KakaoTalk_Setup.exe" OSVERSION="win2008" SHORTCUTFILENAME="KakaoTalk.exe" DOWNLOADEDSETUPFILE="KakaoTalk_Setup.exe" # Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "$DOWNLOADURL" INSTALLER="$POL_System_TmpDir/$DOWNLOADEDSETUPFILE" fi POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "winxp" #Dependencies POL_Call POL_Install_gdiplus POL_Call POL_Install_msxml6 POL_Call POL_Install_riched20 POL_Call POL_Install_riched30 POL_Call POL_Install_wmp9 POL_Call POL_install_wmp10 POL_Call POL_install_wmpcodecs POL_Call POL_Install_mono28 POL_Call POL_Install_gecko # Installation Set_OS "$OSVERSION" POL_SetupWindow_message "The installer for $TITLE will now appear.\nDo not allow the installer to launch the game.\nUncheck the box to launch the game at the end of the installation.\n\nIf the game is launched from the installer, the apllication will not be installed and you have to start the process again.\n" "Uncheck the Launch Game checkbox!" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "$SHORTCUTFILENAME" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "LANG=ko_KR.EUC-KR" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit RepliesTuesday 21 January 2020 at 9:57
|
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