PSPad
Informations
Créateur | Messages |
---|---|
daniil_filipov
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience0 0 DescriptionPSPad - text editor for developers for Microsoft Windows systems.
The universal (freeware) text editor, useful for people who:
There is no complex installation process, PSPad is ready to work immediately without requiring customization. The editor supports many file types and languages, with syntax highlighting. There are macros, clip files and templates to automate repetative tasks. Integrated HEX Editor, Project support, FTP Client, Macro Recorder, File Search/Replace, Code Explorer, Code page conversion... these are just some of the many features that PSPad offers. Code source#!/bin/bash # Date : (2018-09-30 10-08) # Last revision : (2018-09-30 10-08) # Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_System_TmpCreate "PSPad" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://pspad.poradna.net/release/pspad500_setup.exe" INSTALLER="$POL_System_TmpDir/pspad500_setup.exe" fi POL_Wine_SelectPrefix "PSPad" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installation in progress." "PSPad Installation" POL_Wine "$INSTALLER" POL_System_TmpDelete POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
Kaavi.98 | Dimanche 30 September 2018 à 10:09 |
Kaavi.98
|
InformationCette mise à jour a été acceptée par l'équipe MessagesChanged link in download option. Now installer installs PSPad 5.
Differences@@ -1,36 +1,39 @@ #!/bin/bash -# Date : (2016-10-02 13-21) -# Last revision : (2016-10-05 17-50) -# Author : daniil_filipov - +# Date : (2018-09-30 10-08) +# Last revision : (2018-09-30 10-08) +# Author : Kaavi.98 + [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" - TITLE="PSPad" -PREFIX="PSPad" - POL_SetupWindow_Init POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate - -POL_Call POL_Install_LunaTheme +POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" -POL_SetupWindow_InstallMethod "LOCAL" +POL_System_TmpCreate "PSPad" + +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" -POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$APP_ANSWER" -POL_Wine_WaitExit "$TITLE" - + POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://pspad.poradna.net/release/pspad500_setup.exe" + INSTALLER="$POL_System_TmpDir/pspad500_setup.exe" fi -POL_Shortcut "PSPad.exe" "$TITLE" - + +POL_Wine_SelectPrefix "PSPad" +POL_Wine_PrefixCreate + +POL_SetupWindow_wait "Installation in progress." "PSPad Installation" +POL_Wine "$INSTALLER" + +POL_System_TmpDelete + +POL_Shortcut "PSPad.exe" "PSPad" + POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2018-09-30 10-08) # Last revision : (2018-09-30 10-08) # Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_System_TmpCreate "PSPad" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://pspad.poradna.net/release/pspad500_setup.exe" INSTALLER="$POL_System_TmpDir/pspad500_setup.exe" fi POL_Wine_SelectPrefix "PSPad" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installation in progress." "PSPad Installation" POL_Wine "$INSTALLER" POL_System_TmpDelete POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close exit Réponses |
Kaavi.98 | Samedi 2 September 2017 à 20:21 |
Kaavi.98
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWorking script, added download option Deleted luna theme Differences@@ -1,36 +1,39 @@ #!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) -# Author : daniil_filipov - +# Author : Kaavi.98 + [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" - TITLE="PSPad" -PREFIX="PSPad" - POL_SetupWindow_Init POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate - -POL_Call POL_Install_LunaTheme +POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" -POL_SetupWindow_InstallMethod "LOCAL" +POL_System_TmpCreate "PSPad" + +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" -POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$APP_ANSWER" -POL_Wine_WaitExit "$TITLE" - + POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://pspad.poradna.net/release/pspad462_setup.exe" + INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi -POL_Shortcut "PSPad.exe" "$TITLE" - + +POL_Wine_SelectPrefix "PSPad" +POL_Wine_PrefixCreate + +POL_SetupWindow_wait "Installation in progress." "PSPad Installation" +POL_Wine "$INSTALLER" + +POL_System_TmpDelete + +POL_Shortcut "PSPad.exe" "PSPad" + POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) # Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_System_TmpCreate "PSPad" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://pspad.poradna.net/release/pspad462_setup.exe" INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi POL_Wine_SelectPrefix "PSPad" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installation in progress." "PSPad Installation" POL_Wine "$INSTALLER" POL_System_TmpDelete POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close exit Réponses |
Kaavi.98 | Samedi 2 September 2017 à 19:44 |
Kaavi.98
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,36 +1,40 @@ #!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) -# Author : daniil_filipov - +# Author : Kaavi.98 + [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" - TITLE="PSPad" -PREFIX="PSPad" - POL_SetupWindow_Init POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate - +POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" + POL_Call POL_Install_LunaTheme - -POL_SetupWindow_InstallMethod "LOCAL" +POL_System_TmpCreate "PSPad" + +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" -POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$APP_ANSWER" -POL_Wine_WaitExit "$TITLE" - + POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "https://pspad.poradna.net/release/pspad462_setup.exe" + INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi -POL_Shortcut "PSPad.exe" "$TITLE" - + +POL_Wine_SelectPrefix "PSPad" +POL_Wine_PrefixCreate + +POL_SetupWindow_wait "Installation in progress." "PSPad Installation" +POL_Wine "$INSTALLER" + +POL_System_TmpDelete + +POL_Shortcut "PSPad.exe" "PSPad" + POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) # Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_Call POL_Install_LunaTheme POL_System_TmpCreate "PSPad" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://pspad.poradna.net/release/pspad462_setup.exe" INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi POL_Wine_SelectPrefix "PSPad" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installation in progress." "PSPad Installation" POL_Wine "$INSTALLER" POL_System_TmpDelete POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close exit Réponses |
Kaavi.98 | Samedi 2 September 2017 à 19:34 |
Kaavi.98
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,36 +1,40 @@ #!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) -# Author : daniil_filipov - +# Author : Kaavi.98 + [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" - -TITLE="PSPad" -PREFIX="PSPad" - +TITLE="PSPad" POL_SetupWindow_Init POL_Debug_Init +POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" -POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate - POL_Call POL_Install_LunaTheme - -POL_SetupWindow_InstallMethod "LOCAL" +POL_System_TmpCreate "PSPad" + +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" -POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$APP_ANSWER" -POL_Wine_WaitExit "$TITLE" - + POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "https://www.fosshub.com/PSPad.html/pspad462_setup.exe" + INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi -POL_Shortcut "PSPad.exe" "$TITLE" - + +POL_Wine_SelectPrefix "PSPad" +POL_Wine_PrefixCreate + +POL_SetupWindow_wait "Installation in progress." "PSPad Installation" +POL_Wine "$INSTALLER" + +POL_System_TmpDelete + +POL_Shortcut "PSPad.exe" "PSPad" + POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) # Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_Call POL_Install_LunaTheme POL_System_TmpCreate "PSPad" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://www.fosshub.com/PSPad.html/pspad462_setup.exe" INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi POL_Wine_SelectPrefix "PSPad" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installation in progress." "PSPad Installation" POL_Wine "$INSTALLER" POL_System_TmpDelete POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close exit Réponses |
Kaavi.98 | Samedi 2 September 2017 à 19:32 |
Kaavi.98
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -1,36 +1,40 @@ #!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) -# Author : daniil_filipov +# Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" - -TITLE="PSPad" -PREFIX="PSPad" POL_SetupWindow_Init POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate +POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_Call POL_Install_LunaTheme - -POL_SetupWindow_InstallMethod "LOCAL" +POL_System_TmpCreate "PSPad" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + if [ "$INSTALL_METHOD" = "LOCAL" ] then + POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" + INSTALLER="$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "https://www.fosshub.com/PSPad.html/pspad462_setup.exe" + INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" +fi + +POL_Wine_SelectPrefix "PSPad" +POL_Wine_PrefixCreate -cd "$HOME" -POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" -POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$APP_ANSWER" -POL_Wine_WaitExit "$TITLE" +POL_SetupWindow_wait "Installation in progress." "PSPad Installation" +POL_Wine "$INSTALLER" -fi -POL_Shortcut "PSPad.exe" "$TITLE" +POL_System_TmpDelete + +POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close -exit \ No newline at end of file +exit Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) # Author : Kaavi.98 [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "PSPad" "Radim Fiala" "http://www.pspad.com" "Kaavi.98" "PSPad" POL_Call POL_Install_LunaTheme POL_System_TmpCreate "PSPad" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the installation file to run." "PSPad Installation" INSTALLER="$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://www.fosshub.com/PSPad.html/pspad462_setup.exe" INSTALLER="$POL_System_TmpDir/pspad462_setup.exe" fi POL_Wine_SelectPrefix "PSPad" POL_Wine_PrefixCreate POL_SetupWindow_wait "Installation in progress." "PSPad Installation" POL_Wine "$INSTALLER" POL_System_TmpDelete POL_Shortcut "PSPad.exe" "PSPad" POL_SetupWindow_Close exit Réponses |
daniil_filipov | Jeudi 6 Octobre 2016 à 15:54 |
daniil_filipov
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -18,8 +18,19 @@ POL_Wine_PrefixCreate POL_Call POL_Install_LunaTheme +POL_System_TmpCreate "$PREFIX" -POL_SetupWindow_InstallMethod "LOCAL" +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + +cd "$POL_System_TmpDir" +POL_Download "https://www.fosshub.com/PSPad.html/pspad461setup.exe" "bc9c7bec21c47f5ae3d6d6d0ffe9f495" +POL_Wine_WaitBefore "$TITLE" +POL_Wine start /unix "pspad461setup.exe" +POL_Wine_WaitExit "$TITLE" +fi if [ "$INSTALL_METHOD" = "LOCAL" ] then @@ -30,6 +41,7 @@ POL_Wine_WaitExit "$TITLE" fi +POL_System_TmpDelete POL_Shortcut "PSPad.exe" "$TITLE" POL_SetupWindow_Close Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) # Author : daniil_filipov [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" PREFIX="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Call POL_Install_LunaTheme POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "https://www.fosshub.com/PSPad.html/pspad461setup.exe" "bc9c7bec21c47f5ae3d6d6d0ffe9f495" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "pspad461setup.exe" POL_Wine_WaitExit "$TITLE" fi if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi POL_System_TmpDelete POL_Shortcut "PSPad.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
daniil_filipov | Mercredi 5 Octobre 2016 à 18:03 |
daniil_filipov
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesPlease download aplication from here: http://www.pspad.com Differences@@ -0,0 +1,36 @@ +#!/bin/bash +# Date : (2016-10-02 13-21) +# Last revision : (2016-10-05 17-50) +# Author : daniil_filipov + +[ "$PLAYONLINUX" = "" ] && exit +source "$PLAYONLINUX/lib/sources" + +TITLE="PSPad" +PREFIX="PSPad" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_Call POL_Install_LunaTheme + +POL_SetupWindow_InstallMethod "LOCAL" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + +cd "$HOME" +POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" +POL_Wine_WaitBefore "$TITLE" +POL_Wine start /unix "$APP_ANSWER" +POL_Wine_WaitExit "$TITLE" + +fi +POL_Shortcut "PSPad.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Last revision : (2016-10-05 17-50) # Author : daniil_filipov [ "$PLAYONLINUX" = "" ] && exit source "$PLAYONLINUX/lib/sources" TITLE="PSPad" PREFIX="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com" "daniil_filipov" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Call POL_Install_LunaTheme POL_SetupWindow_InstallMethod "LOCAL" if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi POL_Shortcut "PSPad.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
daniil_filipov | Dimanche 2 Octobre 2016 à 13:25 |
daniil_filipov
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,26 @@ +#!/bin/bash +# Date : (2016-10-02 13-21) +# Date : (2016-10-02 13-21) +# Wine version used : N/A +# Distribution used to test : N/A +# Author : Daniil_filipov + + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="PSPad" +PREFIX="PSPad" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com/" "Daniil_Filipov" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_Shortcut "PSPad.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2016-10-02 13-21) # Date : (2016-10-02 13-21) # Wine version used : N/A # Distribution used to test : N/A # Author : Daniil_filipov [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="PSPad" PREFIX="PSPad" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Radim Fiala" "http://www.pspad.com/" "Daniil_Filipov" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_Shortcut "PSPad.exe" "$TITLE" POL_SetupWindow_Close exit 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