Notepad Plus Plus
Informatie
| Creator | Bericht |
|---|---|
Quentin PÂRIS
|
InformationThis installer has been approved by the team. InformatiePlatforms: Feedbacks7 2 OmschrijvingNotepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Wikipedia. Website. SchermafdrukkenBroncode#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
# [mrHedgehog] (2020-01-21 16-01)
# Update Notepad++ from 7.8.1 to 7.8.3
# Update Wine from 4.0.3 to 5.0
# [Dadu042] (2020-06-16 09-00)
# Wine 5.0 -> 5.0.1
# Add category TextEditor
# [Yaotl] (2020-09-11 15-07)
# Update Notepad++ 7.8.3 to 7.8.9
# Wine 5.0.1 -> 5.0.2
# Added auto selection for 32-bit or 64-bit installation
# [Yaotl] (2020-12-05 16-18)
# Update Notepad++ 7.8.9 to 7.9.1
# Wine 5.0.2 -> 5.0.3
# [Yaotl] (2021-06-14 21-45)
# Update Notepad++ 7.9.1 to 8.0
# Wine 5.0.3 -> 6.0.1
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="6.0.1"
NPVERSION="8.0"
# x86
DOWNLOAD_URL_X86="https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8/npp.8.0.Installer.exe"
MD5_CHECKSUM_x86="940f248133b55d6ebba043f872a01d56"
# x64
DOWNLOAD_URL_X64="https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8/npp.8.0.Installer.x64.exe"
MD5_CHECKSUM_x64="6cf3f43a109fb82ea740dc98c54be109"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "POL & POM Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
if [ "$POL_ARCH" == "amd64" ]; then
ARCH=".x64"
DOWNLOAD_URL=$DOWNLOAD_URL_X64
MD5_CHECKSUM="$MD5_CHECKSUM_x64"
else
ARCH=""
DOWNLOAD_URL=$DOWNLOAD_URL_X86
MD5_CHECKSUM="$MD5_CHECKSUM_x86"
fi
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$ARCH.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;TextEditor;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Bericht |
| WolvenSpectre | Maandag 24 April 2023 om 10:00 |
WolvenSpectre
|
BerichtWhen I try to install on Linux Mint 21.1 The install goes well until it tries to download and install tahoma32.exe. I have tried installing and deleting Notepad++ 3 times and it keeps hanging on this file's install. I left it for well over a half hour while watching videos and it still didn't download. Antwoorden |
| Yaotl | Dinsdag 15 Juni\ 2021 om 23:28 |
Yaotl
|
InformationThis update has been approved by the team. Differences@@ -39,16 +39,23 @@
# [Yaotl] (2020-12-05 16-18)
# Update Notepad++ 7.8.9 to 7.9.1
# Wine 5.0.2 -> 5.0.3
+# [Yaotl] (2021-06-14 21-45)
+# Update Notepad++ 7.9.1 to 8.0
+# Wine 5.0.3 -> 6.0.1
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-WORKING_WINE_VERSION="5.0.3"
-NPVERSION="7.9.1"
-MD5_CHECKSUM_x86="fbb950c5ef01f7e57079c096f888791a"; # 32-bit setup file
-MD5_CHECKSUM_x64="49c992a90b16e21b9fdc8056626b327d"; # 64-bit setup file
+WORKING_WINE_VERSION="6.0.1"
+NPVERSION="8.0"
+# x86
+DOWNLOAD_URL_X86="https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8/npp.8.0.Installer.exe"
+MD5_CHECKSUM_x86="940f248133b55d6ebba043f872a01d56"
+# x64
+DOWNLOAD_URL_X64="https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8/npp.8.0.Installer.x64.exe"
+MD5_CHECKSUM_x64="6cf3f43a109fb82ea740dc98c54be109"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
@@ -72,16 +79,18 @@
INSTALLER="$APP_ANSWER"
else
if [ "$POL_ARCH" == "amd64" ]; then
- Ac=".x64"
+ ARCH=".x64"
+ DOWNLOAD_URL=$DOWNLOAD_URL_X64
MD5_CHECKSUM="$MD5_CHECKSUM_x64"
else
- Ac=""
+ ARCH=""
+ DOWNLOAD_URL=$DOWNLOAD_URL_X86
MD5_CHECKSUM="$MD5_CHECKSUM_x86"
fi
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer$Ac.exe" "$MD5_CHECKSUM"
- INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$Ac.exe"
+ POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
+ INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$ARCH.exe"
fi
POL_Wine start /unix "$INSTALLER"
New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
# [mrHedgehog] (2020-01-21 16-01)
# Update Notepad++ from 7.8.1 to 7.8.3
# Update Wine from 4.0.3 to 5.0
# [Dadu042] (2020-06-16 09-00)
# Wine 5.0 -> 5.0.1
# Add category TextEditor
# [Yaotl] (2020-09-11 15-07)
# Update Notepad++ 7.8.3 to 7.8.9
# Wine 5.0.1 -> 5.0.2
# Added auto selection for 32-bit or 64-bit installation
# [Yaotl] (2020-12-05 16-18)
# Update Notepad++ 7.8.9 to 7.9.1
# Wine 5.0.2 -> 5.0.3
# [Yaotl] (2021-06-14 21-45)
# Update Notepad++ 7.9.1 to 8.0
# Wine 5.0.3 -> 6.0.1
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="6.0.1"
NPVERSION="8.0"
# x86
DOWNLOAD_URL_X86="https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8/npp.8.0.Installer.exe"
MD5_CHECKSUM_x86="940f248133b55d6ebba043f872a01d56"
# x64
DOWNLOAD_URL_X64="https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v8/npp.8.0.Installer.x64.exe"
MD5_CHECKSUM_x64="6cf3f43a109fb82ea740dc98c54be109"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "POL & POM Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
if [ "$POL_ARCH" == "amd64" ]; then
ARCH=".x64"
DOWNLOAD_URL=$DOWNLOAD_URL_X64
MD5_CHECKSUM="$MD5_CHECKSUM_x64"
else
ARCH=""
DOWNLOAD_URL=$DOWNLOAD_URL_X86
MD5_CHECKSUM="$MD5_CHECKSUM_x86"
fi
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$ARCH.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;TextEditor;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenWoensdag 16 Juni\ 2021 om 6:27
|
| Yaotl | Zaterdag 5 December 2020 om 17:16 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -36,16 +36,19 @@ # Update Notepad++ 7.8.3 to 7.8.9 # Wine 5.0.1 -> 5.0.2 # Added auto selection for 32-bit or 64-bit installation +# [Yaotl] (2020-12-05 16-18) +# Update Notepad++ 7.8.9 to 7.9.1 +# Wine 5.0.2 -> 5.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Notepad Plus Plus" PREFIX="NotepadPlusPlus" -WORKING_WINE_VERSION="5.0.2" -NPVERSION="7.8.9" -MD5_CHECKSUM_x86="1bd43ba2e242af6083444f4d7ee58a18"; # 32-bit setup file -MD5_CHECKSUM_x64="3b9e72ddd83b0ff4a8db3f1cca8b2ec4"; # 64-bit setup file +WORKING_WINE_VERSION="5.0.3" +NPVERSION="7.9.1" +MD5_CHECKSUM_x86="fbb950c5ef01f7e57079c096f888791a"; # 32-bit setup file +MD5_CHECKSUM_x64="49c992a90b16e21b9fdc8056626b327d"; # 64-bit setup file POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE" POL_SetupWindow_Init New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
# [mrHedgehog] (2020-01-21 16-01)
# Update Notepad++ from 7.8.1 to 7.8.3
# Update Wine from 4.0.3 to 5.0
# [Dadu042] (2020-06-16 09-00)
# Wine 5.0 -> 5.0.1
# Add category TextEditor
# [Yaotl] (2020-09-11 15-07)
# Update Notepad++ 7.8.3 to 7.8.9
# Wine 5.0.1 -> 5.0.2
# Added auto selection for 32-bit or 64-bit installation
# [Yaotl] (2020-12-05 16-18)
# Update Notepad++ 7.8.9 to 7.9.1
# Wine 5.0.2 -> 5.0.3
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="5.0.3"
NPVERSION="7.9.1"
MD5_CHECKSUM_x86="fbb950c5ef01f7e57079c096f888791a"; # 32-bit setup file
MD5_CHECKSUM_x64="49c992a90b16e21b9fdc8056626b327d"; # 64-bit setup file
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "POL & POM Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
if [ "$POL_ARCH" == "amd64" ]; then
Ac=".x64"
MD5_CHECKSUM="$MD5_CHECKSUM_x64"
else
Ac=""
MD5_CHECKSUM="$MD5_CHECKSUM_x86"
fi
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer$Ac.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$Ac.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;TextEditor;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenZondag 6 December 2020 om 13:46
|
| Yaotl | Vrijdag 11 September 2020 om 16:29 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -32,40 +32,53 @@
# [Dadu042] (2020-06-16 09-00)
# Wine 5.0 -> 5.0.1
# Add category TextEditor
+# [Yaotl] (2020-09-11 15-07)
+# Update Notepad++ 7.8.3 to 7.8.9
+# Wine 5.0.1 -> 5.0.2
+# Added auto selection for 32-bit or 64-bit installation
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-WORKING_WINE_VERSION="5.0.1"
-NPVERSION="7.8.3"
-MD5_CHECKSUM="becca16e1b0a5ff408e9ef2b8111b75c"
+WORKING_WINE_VERSION="5.0.2"
+NPVERSION="7.8.9"
+MD5_CHECKSUM_x86="1bd43ba2e242af6083444f4d7ee58a18"; # 32-bit setup file
+MD5_CHECKSUM_x64="3b9e72ddd83b0ff4a8db3f1cca8b2ec4"; # 64-bit setup file
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "PlayOnLinux Community" "$PREFIX"
+POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "POL & POM Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
-if [ "$INSTALL_METHOD" = "LOCAL" ]; then
+if [ "$INSTALL_METHOD" == "LOCAL" ]; then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
else
+ if [ "$POL_ARCH" == "amd64" ]; then
+ Ac=".x64"
+ MD5_CHECKSUM="$MD5_CHECKSUM_x64"
+ else
+ Ac=""
+ MD5_CHECKSUM="$MD5_CHECKSUM_x86"
+ fi
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
- INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
+ POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer$Ac.exe" "$MD5_CHECKSUM"
+ INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$Ac.exe"
fi
POL_Wine start /unix "$INSTALLER"
New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
# [mrHedgehog] (2020-01-21 16-01)
# Update Notepad++ from 7.8.1 to 7.8.3
# Update Wine from 4.0.3 to 5.0
# [Dadu042] (2020-06-16 09-00)
# Wine 5.0 -> 5.0.1
# Add category TextEditor
# [Yaotl] (2020-09-11 15-07)
# Update Notepad++ 7.8.3 to 7.8.9
# Wine 5.0.1 -> 5.0.2
# Added auto selection for 32-bit or 64-bit installation
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="5.0.2"
NPVERSION="7.8.9"
MD5_CHECKSUM_x86="1bd43ba2e242af6083444f4d7ee58a18"; # 32-bit setup file
MD5_CHECKSUM_x64="3b9e72ddd83b0ff4a8db3f1cca8b2ec4"; # 64-bit setup file
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "POL & POM Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
if [ "$POL_ARCH" == "amd64" ]; then
Ac=".x64"
MD5_CHECKSUM="$MD5_CHECKSUM_x64"
else
Ac=""
MD5_CHECKSUM="$MD5_CHECKSUM_x86"
fi
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer$Ac.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer$Ac.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;TextEditor;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenVrijdag 11 September 2020 om 16:54
|
| Dadu042 | Dinsdag 16 Juni\ 2020 om 9:17 |
|
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -17,7 +17,7 @@ # [p-90-for-retail] (2018-03-03 19-13) # Improvments # Updated NP++ -# ... +# ... # [Yaotl] (2019-10-29 14-53) # Update Notepad++ 7.7.1 to 7.8.1 # Update Wine 4.0.1 to 4.0.2 @@ -29,13 +29,16 @@ # [mrHedgehog] (2020-01-21 16-01) # Update Notepad++ from 7.8.1 to 7.8.3 # Update Wine from 4.0.3 to 5.0 +# [Dadu042] (2020-06-16 09-00) +# Wine 5.0 -> 5.0.1 +# Add category TextEditor [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Notepad Plus Plus" PREFIX="NotepadPlusPlus" -WORKING_WINE_VERSION="5.0" +WORKING_WINE_VERSION="5.0.1" NPVERSION="7.8.3" MD5_CHECKSUM="becca16e1b0a5ff408e9ef2b8111b75c" @@ -68,7 +71,7 @@ POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "$INSTALLER" -POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;" +POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;TextEditor;" POL_System_TmpDelete POL_SetupWindow_Close New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
# [mrHedgehog] (2020-01-21 16-01)
# Update Notepad++ from 7.8.1 to 7.8.3
# Update Wine from 4.0.3 to 5.0
# [Dadu042] (2020-06-16 09-00)
# Wine 5.0 -> 5.0.1
# Add category TextEditor
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="5.0.1"
NPVERSION="7.8.3"
MD5_CHECKSUM="becca16e1b0a5ff408e9ef2b8111b75c"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "PlayOnLinux Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;TextEditor;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| mrHedgehog | Dinsdag 21 Januari 2020 om 22:03 |
mrHedgehog
|
WarningThis update has not been approved yet by the team. Differences@@ -26,15 +26,18 @@ # Fix invalid URL. # Update Wine 4.0.2 to 4.0.3 # Add corefonts +# [mrHedgehog] (2020-01-21 16-01) +# Update Notepad++ from 7.8.1 to 7.8.3 +# Update Wine from 4.0.3 to 5.0 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Notepad Plus Plus" PREFIX="NotepadPlusPlus" -WORKING_WINE_VERSION="4.0.3" -NPVERSION="7.8.1" -MD5_CHECKSUM="741cab59266b05a277c5da306ecf1955" +WORKING_WINE_VERSION="5.0" +NPVERSION="7.8.3" +MD5_CHECKSUM="becca16e1b0a5ff408e9ef2b8111b75c" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE" POL_SetupWindow_Init New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
# [mrHedgehog] (2020-01-21 16-01)
# Update Notepad++ from 7.8.1 to 7.8.3
# Update Wine from 4.0.3 to 5.0
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="5.0"
NPVERSION="7.8.3"
MD5_CHECKSUM="becca16e1b0a5ff408e9ef2b8111b75c"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "PlayOnLinux Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenDonderdag 11 Juni\ 2020 om 22:35
|
| Yaotl | Zondag 1 December 2019 om 4:03 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -22,13 +22,17 @@
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
+# [Yaotl] (2019-12-01 06-58)
+# Fix invalid URL.
+# Update Wine 4.0.2 to 4.0.3
+# Add corefonts
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-WORKING_WINE_VERSION="4.0.2"
+WORKING_WINE_VERSION="4.0.3"
NPVERSION="7.8.1"
MD5_CHECKSUM="741cab59266b05a277c5da306ecf1955"
@@ -44,6 +48,8 @@
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+POL_Call POL_Install_corefonts
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]; then
cd "$HOME"
@@ -52,7 +58,7 @@
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "http://download.notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
+ POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
# [Yaotl] (2019-12-01 06-58)
# Fix invalid URL.
# Update Wine 4.0.2 to 4.0.3
# Add corefonts
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="4.0.3"
NPVERSION="7.8.1"
MD5_CHECKSUM="741cab59266b05a277c5da306ecf1955"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "PlayOnLinux Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_Call POL_Install_corefonts
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenZondag 1 December 2019 om 10:44
Aangepast door Yaotl |
| Kelvinoss | Woensdag 6 November 2019 om 19:32 |
Kelvinoss
|
BerichtWhen I try to install Notepad ++, i get this error: Error in POL_Wine_InstallVersion Unable to find version: 4.0.2 AntwoordenZondag 1 December 2019 om 5:02
Aangepast door Kelvinoss |
| Yaotl | Dinsdag 22 October 2019 om 1:24 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -17,30 +17,33 @@
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
+# ...
+# [Yaotl] (2019-10-29 14-53)
+# Update Notepad++ 7.7.1 to 7.8.1
+# Update Wine 4.0.1 to 4.0.2
+# Script Fixes
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-WORKING_WINE_VERSION="4.0.1"
-NPVERSION="7.7.1"
-EDITOR="Don Ho"
-GAME_URL="https://notepad-plus-plus.org/"
-AUTHOR="LinuxScripter"
-MD5_CHECKSUM="a327dd44a4e2f0e35364bde7c4a59718"
-
+WORKING_WINE_VERSION="4.0.2"
+NPVERSION="7.8.1"
+MD5_CHECKSUM="741cab59266b05a277c5da306ecf1955"
+
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-
-POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
-
+
+POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "PlayOnLinux Community" "$PREFIX"
+
+POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
+
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]; then
cd "$HOME"
@@ -49,13 +52,15 @@
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
+ POL_Download "http://download.notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
- POL_Wine start /unix "$INSTALLER"
- POL_Wine_WaitExit "$INSTALLER"
- POL_System_TmpDelete
fi
-
+
+POL_Wine start /unix "$INSTALLER"
+POL_Wine_WaitExit "$INSTALLER"
+
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
+
+POL_System_TmpDelete
POL_SetupWindow_Close
exit 0
\ No newline at end of file
New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
# ...
# [Yaotl] (2019-10-29 14-53)
# Update Notepad++ 7.7.1 to 7.8.1
# Update Wine 4.0.1 to 4.0.2
# Script Fixes
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="4.0.2"
NPVERSION="7.8.1"
MD5_CHECKSUM="741cab59266b05a277c5da306ecf1955"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Don Ho" "https://notepad-plus-plus.org/" "PlayOnLinux Community" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://download.notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenZaterdag 2 November 2019 om 11:36
Aangepast door Yaotl |
| Dadu042 | Woensdag 26 Juni\ 2019 om 10:13 |
|
Dadu042
|
WarningThis update has not been approved yet by the team. BerichtDifferences@@ -1,6 +1,26 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2014 ? )
+# Last revision : see changelog
+# Wine version used : see below
+# Distribution used to test :
+# Author : see changelog
+# PlayOnLinux : 4.3.4
+# Script licence : GPL3
+# Program licence : Freeware
+#
+# CHANGELOG
+# Script by Tinou (original) and Congelli501
+# [SuperPlumus] (2013-07-08 12-03)
+# Update POLv3 -> POLv4
+# [SuperPlumus] (2017-05-20 16-05)
+# Update Notepad++ version 6.8.8 to 7.4.1
+# [p-90-for-retail] (2018-03-03 19-13)
+# Improvments
+# Updated NP++
+
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="4.0.1"
@@ -9,18 +29,18 @@
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
MD5_CHECKSUM="a327dd44a4e2f0e35364bde7c4a59718"
-
+
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-
+
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
-
+
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
-
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]; then
cd "$HOME"
@@ -35,7 +55,7 @@
POL_Wine_WaitExit "$INSTALLER"
POL_System_TmpDelete
fi
-
+
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_SetupWindow_Close
-exit
\ No newline at end of file
+exit 0
\ No newline at end of file
New source code#!/usr/bin/env playonlinux-bash
# Date : (2014 ? )
# Last revision : see changelog
# Wine version used : see below
# Distribution used to test :
# Author : see changelog
# PlayOnLinux : 4.3.4
# Script licence : GPL3
# Program licence : Freeware
#
# CHANGELOG
# Script by Tinou (original) and Congelli501
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="4.0.1"
NPVERSION="7.7.1"
EDITOR="Don Ho"
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
MD5_CHECKSUM="a327dd44a4e2f0e35364bde7c4a59718"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_System_TmpDelete
fi
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_SetupWindow_Close
exit 0 Antwoorden |
| Yaotl | Woensdag 26 Juni\ 2019 om 0:47 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -3,11 +3,12 @@
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-WORKING_WINE_VERSION="4.0"
-NPVERSION="7.7"
+WORKING_WINE_VERSION="4.0.1"
+NPVERSION="7.7.1"
EDITOR="Don Ho"
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
+MD5_CHECKSUM="a327dd44a4e2f0e35364bde7c4a59718"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
@@ -15,6 +16,7 @@
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
@@ -27,7 +29,7 @@
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "151cbb695037b5b1ca023dbb66655731"
+ POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
New source code[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="4.0.1"
NPVERSION="7.7.1"
EDITOR="Don Ho"
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
MD5_CHECKSUM="a327dd44a4e2f0e35364bde7c4a59718"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$MD5_CHECKSUM"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_System_TmpDelete
fi
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_SetupWindow_Close
exit AntwoordenWoensdag 26 Juni\ 2019 om 10:08
Aangepast door Yaotl |
| FatHard | Zaterdag 1 Juni\ 2019 om 10:59 |
FatHard
|
WarningThis update has not been approved yet by the team. Bericht-New wine version -New program version -App Drawer Shortcuts -New CheckSum Differences@@ -3,8 +3,8 @@
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-WORKING_WINE_VERSION="3.0.3"
-NPVERSION="7.5.9"
+WORKING_WINE_VERSION="4.0"
+NPVERSION="7.7"
EDITOR="Don Ho"
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
@@ -27,13 +27,13 @@
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "ac94e6b042d383e2caf3a4cc1294d734"
+ POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "151cbb695037b5b1ca023dbb66655731"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_System_TmpDelete
fi
-POL_Shortcut "notepad++.exe" "$TITLE"
+POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_SetupWindow_Close
exit
\ No newline at end of file
New source code[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="4.0"
NPVERSION="7.7"
EDITOR="Don Ho"
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "151cbb695037b5b1ca023dbb66655731"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_System_TmpDelete
fi
POL_Shortcut "notepad++.exe" "Notepad++" "" "" "Development;Development;"
POL_SetupWindow_Close
exit AntwoordenZaterdag 1 Juni\ 2019 om 13:05
Aangepast door FatHard |
| LinuxScripter | Vrijdag 9 November 2018 om 15:34 |
LinuxScripter
|
WarningThis update has not been approved yet by the team. BerichtI've rewrote this script to make it more standardized. The previous version did not specify Wien version used. Generally it should be. Also updated the version of Notepad++ to 7.5.9 which is the latest as of right now. Differences@@ -1,51 +1,39 @@
-#!/bin/bash
-# Script by Tinou (original) and Congelli501
-
-# CHANGELOG
-# [SuperPlumus] (2017-05-20 16-05)
-# Update Notepad++ version 6.8.8 to 7.4.1
-# [SuperPlumus] (2013-07-08 12-03)
-# Update POLv3 -> POLv4
-
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-NPVERSION="7.4.2"
-NPMD5="d41d8cd98f00b204e9800998ecf8427e"
-
+WORKING_WINE_VERSION="3.0.3"
+NPVERSION="7.5.9"
+EDITOR="Don Ho"
+GAME_URL="https://notepad-plus-plus.org/"
+AUTHOR="LinuxScripter"
+
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-
-POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
-
+
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
-if [ "$INSTALL_METHOD" = "LOCAL" ]
-then
+if [ "$INSTALL_METHOD" = "LOCAL" ]; then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
INSTALLER="$APP_ANSWER"
-elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
-then
+else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
+ POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "ac94e6b042d383e2caf3a4cc1294d734"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
+ POL_Wine start /unix "$INSTALLER"
+ POL_Wine_WaitExit "$INSTALLER"
+ POL_System_TmpDelete
fi
-
-POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate
-Set_OS "win7"
-
-POL_Wine_WaitBefore "$TITLE"
-POL_Wine "$INSTALLER"
-
-POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
-
-[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
-
+
+POL_Shortcut "notepad++.exe" "$TITLE"
POL_SetupWindow_Close
-exit 0
\ No newline at end of file
+exit
\ No newline at end of file
New source code[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
WORKING_WINE_VERSION="3.0.3"
NPVERSION="7.5.9"
EDITOR="Don Ho"
GAME_URL="https://notepad-plus-plus.org/"
AUTHOR="LinuxScripter"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
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"
INSTALLER="$APP_ANSWER"
else
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "ac94e6b042d383e2caf3a4cc1294d734"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine start /unix "$INSTALLER"
POL_Wine_WaitExit "$INSTALLER"
POL_System_TmpDelete
fi
POL_Shortcut "notepad++.exe" "$TITLE"
POL_SetupWindow_Close
exit Antwoorden |
| p-90-for-retail | Zaterdag 3 Maart 2018 om 9:13 |
p-90-for-retail
|
WarningThis update has not been approved yet by the team. Differences@@ -6,21 +6,28 @@
# Update Notepad++ version 6.8.8 to 7.4.1
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
+# [p-90-for-retail] (2018-03-03 19-13)
+# Improvments
+# Updated NP++
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-NPVERSION="7.4.2"
-NPMD5="d41d8cd98f00b204e9800998ecf8427e"
+NPVERSION="7.5.5"
+NPMD5="0e30ee37332c35399e2ad803666a8f54"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
+POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate
+Set_OS "win7"
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
@@ -34,18 +41,11 @@
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
+ POL_Wine_WaitBefore "$TITLE"
+ POL_AutoWine "$INSTALLER"
fi
-
-POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate
-Set_OS "win7"
-
-POL_Wine_WaitBefore "$TITLE"
-POL_Wine "$INSTALLER"
-
-POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
-
-[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
-
+
+POL_System_TmpDelete
+POL_Shortcut "notepad++.exe" "$TITLE"
POL_SetupWindow_Close
-exit 0
\ No newline at end of file
+exit
New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
# [p-90-for-retail] (2018-03-03 19-13)
# Improvments
# Updated NP++
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
NPVERSION="7.5.5"
NPMD5="0e30ee37332c35399e2ad803666a8f54"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
Set_OS "win7"
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
POL_Wine_WaitBefore "$TITLE"
POL_AutoWine "$INSTALLER"
fi
POL_System_TmpDelete
POL_Shortcut "notepad++.exe" "$TITLE"
POL_SetupWindow_Close
exit
Antwoorden |
| Quentin PÂRIS | Dinsdag 20 Juni\ 2017 om 23:18 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. Differences@@ -12,8 +12,8 @@ TITLE="Notepad Plus Plus" PREFIX="NotepadPlusPlus" -NPVERSION="7.4.1" -NPMD5="4eb1b67eec52d608e48ba4e5f5a34d00" +NPVERSION="7.4.2" +NPMD5="d41d8cd98f00b204e9800998ecf8427e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE" POL_SetupWindow_Init New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
NPVERSION="7.4.2"
NPMD5="d41d8cd98f00b204e9800998ecf8427e"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| SuperPlumus | Zaterdag 20 Mei 2017 om 16:18 |
SuperPlumus
|
WarningThis update has not been approved yet by the team. BerichtUpdate Notepad++ version 6.8.8 to 7.4.1. Differences@@ -1,25 +1,27 @@
#!/bin/bash
# Script by Tinou (original) and Congelli501
-
+
# CHANGELOG
+# [SuperPlumus] (2017-05-20 16-05)
+# Update Notepad++ version 6.8.8 to 7.4.1
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
-
+
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-NPVERSION="6.8.8"
-NPMD5="a47b0b173eddf1e60a3f56cabbd27ffd"
-
+NPVERSION="7.4.1"
+NPMD5="4eb1b67eec52d608e48ba4e5f5a34d00"
+
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-
+
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
-
+
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
@@ -30,20 +32,20 @@
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "http://notepad-plus-plus.org/repository/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
+ POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
-
+
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
Set_OS "win7"
-
+
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
-
+
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
-
+
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
-
+
POL_SetupWindow_Close
exit 0
\ No newline at end of file
New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2017-05-20 16-05)
# Update Notepad++ version 6.8.8 to 7.4.1
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
NPVERSION="7.4.1"
NPMD5="4eb1b67eec52d608e48ba4e5f5a34d00"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "https://notepad-plus-plus.org/repository/7.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| petch | Dinsdag 16 Februari 2016 om 0:28 |
petch
|
WarningThis update has not been approved yet by the team. Bericht- Switch to Windows 7 compatibility (NP++ refuses to self update under XP now) - Download update Differences@@ -10,8 +10,8 @@ TITLE="Notepad Plus Plus" PREFIX="NotepadPlusPlus" -NPVERSION="6.7.7" -NPMD5="6959da4755e57890225a0bc95a892a15" +NPVERSION="6.8.8" +NPMD5="a47b0b173eddf1e60a3f56cabbd27ffd" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE" POL_SetupWindow_Init @@ -36,6 +36,7 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate +Set_OS "win7" POL_Wine_WaitBefore "$TITLE" POL_Wine "$INSTALLER" New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
NPVERSION="6.8.8"
NPMD5="a47b0b173eddf1e60a3f56cabbd27ffd"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://notepad-plus-plus.org/repository/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
Set_OS "win7"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| rsalong | Woensdag 21 October 2015 om 20:39 |
rsalong
|
BerichtThanks for this, Installed without any issues, difficulties, runs great without any problems so far. Antwoorden |
| petch | Zondag 3 Mei 2015 om 21:08 |
petch
|
WarningThis update has not been approved yet by the team. BerichtUpdate download URL Differences@@ -10,8 +10,8 @@
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-NPVERSION="6.7.5"
-NPMD5="a474e2c8efef23f9838dbdaebe131119"
+NPVERSION="6.7.7"
+NPMD5="6959da4755e57890225a0bc95a892a15"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
@@ -30,7 +30,7 @@
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
+ POL_Download "http://notepad-plus-plus.org/repository/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
NPVERSION="6.7.7"
NPMD5="6959da4755e57890225a0bc95a892a15"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://notepad-plus-plus.org/repository/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| mytlu | Vrijdag 1 Mei 2015 om 20:53 |
mytlu
|
BerichtEverything works well. Antwoorden |
| Talis | Donderdag 30 April 2015 om 18:27 |
Talis
|
BerichtInstaller works great and shortcut was created in the desktop. Basic functionality is also working. Antwoorden |
| petch | Maandag 20 April 2015 om 21:09 |
petch
|
WarningThis update has not been approved yet by the team. BerichtFix version string Differences@@ -10,13 +10,15 @@
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
+NPVERSION="6.7.5"
+NPMD5="a474e2c8efef23f9838dbdaebe131119"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
-POL_SetupWindow_presentation "Notepad++ $VERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
+POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
@@ -28,8 +30,8 @@
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/6.7.5/npp.6.7.5.Installer.exe" "a474e2c8efef23f9838dbdaebe131119"
- INSTALLER="$POL_System_TmpDir/npp.6.7.5.Installer.exe"
+ POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
+ INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
NPVERSION="6.7.5"
NPMD5="a474e2c8efef23f9838dbdaebe131119"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $NPVERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/$NPVERSION/npp.$NPVERSION.Installer.exe" "$NPMD5"
INSTALLER="$POL_System_TmpDir/npp.$NPVERSION.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| petch | Donderdag 16 April 2015 om 4:34 |
petch
|
WarningThis update has not been approved yet by the team. BerichtAdd POL_SetupWindow_SetID Differences@@ -13,6 +13,7 @@ POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE" POL_SetupWindow_Init +POL_SetupWindow_SetID 69 POL_Debug_Init POL_SetupWindow_presentation "Notepad++ $VERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4 New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_SetID 69
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $VERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/6.7.5/npp.6.7.5.Installer.exe" "a474e2c8efef23f9838dbdaebe131119"
INSTALLER="$POL_System_TmpDir/npp.6.7.5.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Antwoorden |
| petch | Zaterdag 21 Maart 2015 om 22:20 |
petch
|
WarningThis update has not been approved yet by the team. Bericht- Script name change - Icon change - Version upgrade Differences@@ -8,38 +8,38 @@
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-TITLE="Notepad++"
+TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
-POL_GetSetupImages "" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
+POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $VERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
-POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate
-
-POL_System_TmpCreate "$PREFIX"
-
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 "$APP_ANSWER"
+ INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
+ POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
- POL_Download "http://download.tuxfamily.org/notepadplus/6.4.1/npp.6.4.1.Installer.exe" "af1fd574e70f2ebec10cc619c3388ecf"
- POL_Wine_WaitBefore "$TITLE"
- POL_Wine "npp.6.4.1.Installer.exe"
+ POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/6.7.5/npp.6.7.5.Installer.exe" "a474e2c8efef23f9838dbdaebe131119"
+ INSTALLER="$POL_System_TmpDir/npp.6.7.5.Installer.exe"
fi
-POL_System_TmpDelete
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate
+
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine "$INSTALLER"
+
+POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
-POL_Shortcut "notepad++.exe" "$TITLE"
+[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0
\ No newline at end of file
New source code#!/bin/bash
# Script by Tinou (original) and Congelli501
# CHANGELOG
# [SuperPlumus] (2013-07-08 12-03)
# Update POLv3 -> POLv4
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Notepad Plus Plus"
PREFIX="NotepadPlusPlus"
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/np/top.jpg" "http://files.playonlinux.com/resources/setups/np/left.jpg" "$TITLE"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "Notepad++ $VERSION" "Notepad++" "http://notepad-plus.sourceforge.net/" "Tinou and Congelli501" "NotepadPlusPlus" 1 4
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"
INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
POL_Download "http://dl.notepad-plus-plus.org/downloads/6.x/6.7.5/npp.6.7.5.Installer.exe" "a474e2c8efef23f9838dbdaebe131119"
INSTALLER="$POL_System_TmpDir/npp.6.7.5.Installer.exe"
fi
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$INSTALLER"
POL_Shortcut "notepad++.exe" "$TITLE" "$TITLE.png"
[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 AntwoordenAangepast door petch |
| FuzzyToothpaste | Dinsdag 16 September 2014 om 2:21 |
FuzzyToothpaste
|
BerichtWHy is it that when looking at the list of programs I can install with PlayOnLinux, it says Notepad instead of Notepad++? This is not the official Windows Notepad, and the official name is Notepad++. Although low priority, this should be a simple fix that should be incorperated into the next version of PlayOnLinux. AntwoordenDinsdag 16 September 2014 om 7:52
|
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
Installeer dit programma 