diff --git a/.gitignore b/.gitignore index 9eb56c8f9..48a593581 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,8 @@ Thumbs.db /test/test.log /Notepad3.VC.VC.opendb +/grepWin/portables/*.zip + /np3portableapp/Signing*.cmd /np3portableapp/Signing*.txt /np3portableapp/Notepad3Portable*.7z @@ -63,6 +65,8 @@ Thumbs.db /np3portableapp/Notepad3Portable/App/Notepad3/x64/lng /np3portableapp/Notepad3Portable/App/Notepad3/x86/*.exe /np3portableapp/Notepad3Portable/App/Notepad3/x86/lng +/np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini +/np3portableapp/Notepad3Portable/App/AppInfo/installer.ini # # Upgrade staging directory diff --git a/Build/make_portable_alpha(.7z).cmd b/Build/make_portable_alpha(.7z).cmd index fd29f6f64..0a393e0ed 100644 --- a/Build/make_portable_alpha(.7z).cmd +++ b/Build/make_portable_alpha(.7z).cmd @@ -17,7 +17,9 @@ rem * https://rizonesoft.com rem * * rem ****************************************************************************** -CD /D %~dp0 +PUSHD %~dp0 + +rem SET SEVENZIP=%~dp07za.exe rem Check for the help switches IF /I "%~1" == "help" GOTO SHOWHELP @@ -33,12 +35,12 @@ SET TEMP_NAME="make_portable_temp" IF NOT EXIST "..\%INPUTDIRx86%\Notepad3.exe" CALL :SUBMSG "ERROR" "Compile Notepad3 x86 first!" IF NOT EXIST "..\%INPUTDIRx86%\minipath.exe" CALL :SUBMSG "ERROR" "Compile MiniPath x86 first!" -IF NOT EXIST "..\%INPUTDIRx86%\grepWinNP3.exe" CALL :SUBMSG "ERROR" "Compile grepWinNP3 x86 first!" IF NOT EXIST "..\%INPUTDIRx86%\np3encrypt.exe" CALL :SUBMSG "ERROR" "Compile np3encrypt x86 first!" IF NOT EXIST "..\%INPUTDIRx64%\Notepad3.exe" CALL :SUBMSG "ERROR" "Compile Notepad3 x64 first!" IF NOT EXIST "..\%INPUTDIRx64%\minipath.exe" CALL :SUBMSG "ERROR" "Compile MiniPath x64 first!" -IF NOT EXIST "..\%INPUTDIRx64%\grepWinNP3.exe" CALL :SUBMSG "ERROR" "Compile grepWinNP3 x64 first!" IF NOT EXIST "..\%INPUTDIRx64%\np3encrypt.exe" CALL :SUBMSG "ERROR" "Compile np3encrypt x64 first!" +IF NOT EXIST "..\grepWin\portables\grepWin-x86_portable.exe" CALL :SUBMSG "ERROR" "grepWin x86 portable not found in grepWin\portables\!" +IF NOT EXIST "..\grepWin\portables\grepWin-x64_portable.exe" CALL :SUBMSG "ERROR" "grepWin x64 portable not found in grepWin\portables\!" CALL :SubGetVersion CALL :SubDetectSevenzipPath @@ -79,7 +81,9 @@ ECHO. :: =========================================================================================== ping -n 9 127.0.0.1>nul +POPD ENDLOCAL +::PAUSE EXIT /B @@ -91,18 +95,21 @@ IF EXIST "%TEMP_NAME%" RD /S /Q "%TEMP_NAME%" IF NOT EXIST "%TEMP_NAME%" MD "%TEMP_NAME%" IF NOT EXIST "Packages" MD "Packages" -FOR %%A IN ("..\License.txt" "..\Readme.txt" "..\grepWinNP3\grepWinLicense.txt" "Notepad3.ini" "minipath.ini"^ - "..\%1\Notepad3.exe" "..\%1\minipath.exe" "..\%1\grepWinNP3.exe" "..\%1\np3encrypt.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\" +FOR %%A IN ("..\License.txt" "..\Readme.txt" "Notepad3.ini" "minipath.ini"^ + "..\%1\Notepad3.exe" "..\%1\minipath.exe" "..\%1\np3encrypt.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\" SET "LNG=%TEMP_NAME%\lng" -SET "GRP=%TEMP_NAME%\lng\gwLng\" +SET "GREPWIN=%TEMP_NAME%\grepWin" SET "THEMES=%TEMP_NAME%\Themes" SET "DOCS=%TEMP_NAME%\Docs" IF NOT EXIST %LNG% MD %LNG% +IF NOT EXIST %GREPWIN% MD %GREPWIN% IF NOT EXIST %THEMES% MD %THEMES% IF NOT EXIST %DOCS% MD %DOCS% XCOPY /E /Y /V "..\%1\lng" "%LNG%" /EXCLUDE:Ignore.txt -XCOPY /E /Y /V "..\%1\lng\gwLng\" "%GRP%" +COPY /Y /V "..\grepWin\portables\grepWin-%2_portable.exe" "%GREPWIN%\" +COPY /Y /V "..\grepWin\portables\LICENSE.txt" "%GREPWIN%\" +XCOPY /Y /V "..\grepWin\translations\*.lang" "%GREPWIN%\" XCOPY /E /Y /V "Themes" "%THEMES%" XCOPY /E /Y /V "Docs" "%DOCS%" COPY /Y /V "Changes.txt" "%DOCS%" @@ -111,9 +118,9 @@ SET "FAVORITES=%TEMP_NAME%\Favorites" IF NOT EXIST "%FAVORITES%" MD "%FAVORITES%" PUSHD "%TEMP_NAME%" -"%SEVENZIP%" a -t7z -ms=on -mx=7^ - "%ZIP_NAME%.7z" "License.txt" "Notepad3.exe" "Notepad3.ini" "grepWinLicense.txt" "Readme.txt"^ - "Favorites" "minipath.exe" "minipath.ini" "grepWinNP3.exe" "np3encrypt.exe" "lng" "Themes" "Docs">NUL +"%SEVENZIP%" a -t7z -m0=lzma2 -ms=on -mx=9^ + "%ZIP_NAME%.7z" "License.txt" "Notepad3.exe" "Notepad3.ini" "Readme.txt"^ + "Favorites" "minipath.exe" "minipath.ini" "np3encrypt.exe" "grepWin" "lng" "Themes" "Docs">NUL IF %ERRORLEVEL% NEQ 0 CALL :SUBMSG "ERROR" "Compilation failed!" CALL :SUBMSG "INFO" "%ZIP_NAME%.7z created successfully!" diff --git a/Build/make_portable_beta(.7z).cmd b/Build/make_portable_beta(.7z).cmd index dcff407b0..e0a733868 100644 --- a/Build/make_portable_beta(.7z).cmd +++ b/Build/make_portable_beta(.7z).cmd @@ -17,7 +17,9 @@ rem * https://rizonesoft.com rem * * rem ****************************************************************************** -CD /D %~dp0 +PUSHD %~dp0 + +rem SET SEVENZIP=%~dp07za.exe rem Check for the help switches IF /I "%~1" == "help" GOTO SHOWHELP @@ -33,12 +35,12 @@ SET TEMP_NAME="make_portable_temp" IF NOT EXIST "..\%INPUTDIRx86%\Notepad3.exe" CALL :SUBMSG "ERROR" "Compile Notepad3 x86 first!" IF NOT EXIST "..\%INPUTDIRx86%\minipath.exe" CALL :SUBMSG "ERROR" "Compile MiniPath x86 first!" -IF NOT EXIST "..\%INPUTDIRx86%\grepWinNP3.exe" CALL :SUBMSG "ERROR" "Compile grepWinNP3 x86 first!" IF NOT EXIST "..\%INPUTDIRx86%\np3encrypt.exe" CALL :SUBMSG "ERROR" "Compile np3encrypt x86 first!" IF NOT EXIST "..\%INPUTDIRx64%\Notepad3.exe" CALL :SUBMSG "ERROR" "Compile Notepad3 x64 first!" IF NOT EXIST "..\%INPUTDIRx64%\minipath.exe" CALL :SUBMSG "ERROR" "Compile MiniPath x64 first!" -IF NOT EXIST "..\%INPUTDIRx64%\grepWinNP3.exe" CALL :SUBMSG "ERROR" "Compile grepWinNP3 x64 first!" IF NOT EXIST "..\%INPUTDIRx64%\np3encrypt.exe" CALL :SUBMSG "ERROR" "Compile np3encrypt x64 first!" +IF NOT EXIST "..\grepWin\portables\grepWin-x86_portable.exe" CALL :SUBMSG "ERROR" "grepWin x86 portable not found in grepWin\portables\!" +IF NOT EXIST "..\grepWin\portables\grepWin-x64_portable.exe" CALL :SUBMSG "ERROR" "grepWin x64 portable not found in grepWin\portables\!" CALL :SubGetVersion CALL :SubDetectSevenzipPath @@ -79,7 +81,9 @@ ECHO. :: =========================================================================================== ping -n 9 127.0.0.1>nul +POPD ENDLOCAL +::PAUSE EXIT /B @@ -91,18 +95,21 @@ IF EXIST "%TEMP_NAME%" RD /S /Q "%TEMP_NAME%" IF NOT EXIST "%TEMP_NAME%" MD "%TEMP_NAME%" IF NOT EXIST "Packages" MD "Packages" -FOR %%A IN ("..\License.txt" "..\Readme.txt" "..\grepWinNP3\grepWinLicense.txt" "Notepad3.ini" "minipath.ini"^ - "..\%1\Notepad3.exe" "..\%1\minipath.exe" "..\%1\grepWinNP3.exe" "..\%1\np3encrypt.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\" +FOR %%A IN ("..\License.txt" "..\Readme.txt" "Notepad3.ini" "minipath.ini"^ + "..\%1\Notepad3.exe" "..\%1\minipath.exe" "..\%1\np3encrypt.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\" SET "LNG=%TEMP_NAME%\lng" -SET "GRP=%TEMP_NAME%\lng\gwLng\" +SET "GREPWIN=%TEMP_NAME%\grepWin" SET "THEMES=%TEMP_NAME%\Themes" SET "DOCS=%TEMP_NAME%\Docs" IF NOT EXIST %LNG% MD %LNG% +IF NOT EXIST %GREPWIN% MD %GREPWIN% IF NOT EXIST %THEMES% MD %THEMES% IF NOT EXIST %DOCS% MD %DOCS% XCOPY /E /Y /V "..\%1\lng" "%LNG%" /EXCLUDE:Ignore.txt -XCOPY /E /Y /V "..\%1\lng\gwLng\" "%GRP%" +COPY /Y /V "..\grepWin\portables\grepWin-%2_portable.exe" "%GREPWIN%\" +COPY /Y /V "..\grepWin\portables\LICENSE.txt" "%GREPWIN%\" +XCOPY /Y /V "..\grepWin\translations\*.lang" "%GREPWIN%\" XCOPY /E /Y /V "Themes" "%THEMES%" XCOPY /E /Y /V "Docs" "%DOCS%" COPY /Y /V "Changes.txt" "%DOCS%" @@ -111,9 +118,9 @@ SET "FAVORITES=%TEMP_NAME%\Favorites" IF NOT EXIST "%FAVORITES%" MD "%FAVORITES%" PUSHD "%TEMP_NAME%" -"%SEVENZIP%" a -t7z -ms=on -mx=7^ - "%ZIP_NAME%.7z" "License.txt" "Notepad3.exe" "Notepad3.ini" "grepWinLicense.txt" "Readme.txt"^ - "Favorites" "minipath.exe" "minipath.ini" "grepWinNP3.exe" "np3encrypt.exe" "lng" "Themes" "Docs">NUL +"%SEVENZIP%" a -t7z -m0=lzma2 -ms=on -mx=9^ + "%ZIP_NAME%.7z" "License.txt" "Notepad3.exe" "Notepad3.ini" "Readme.txt"^ + "Favorites" "minipath.exe" "minipath.ini" "np3encrypt.exe" "grepWin" "lng" "Themes" "Docs">NUL IF %ERRORLEVEL% NEQ 0 CALL :SUBMSG "ERROR" "Compilation failed!" CALL :SUBMSG "INFO" "%ZIP_NAME%.7z created successfully!" diff --git a/Build/make_portable_rel(.zip).cmd b/Build/make_portable_rel(.zip).cmd index 3eae84dfd..7a5eb2a59 100644 --- a/Build/make_portable_rel(.zip).cmd +++ b/Build/make_portable_rel(.zip).cmd @@ -17,7 +17,9 @@ rem * https://rizonesoft.com rem * * rem ****************************************************************************** -CD /D %~dp0 +PUSHD %~dp0 + +rem SET SEVENZIP=%~dp07za.exe rem Check for the help switches IF /I "%~1" == "help" GOTO SHOWHELP @@ -33,12 +35,12 @@ SET TEMP_NAME="make_portable_temp" IF NOT EXIST "..\%INPUTDIRx86%\Notepad3.exe" CALL :SUBMSG "ERROR" "Compile Notepad3 x86 first!" IF NOT EXIST "..\%INPUTDIRx86%\minipath.exe" CALL :SUBMSG "ERROR" "Compile MiniPath x86 first!" -::IF NOT EXIST "..\%INPUTDIRx86%\grepWinNP3.exe" CALL :SUBMSG "ERROR" "Compile grepWinNP3 x86 first!" IF NOT EXIST "..\%INPUTDIRx86%\np3encrypt.exe" CALL :SUBMSG "ERROR" "Compile np3encrypt x86 first!" IF NOT EXIST "..\%INPUTDIRx64%\Notepad3.exe" CALL :SUBMSG "ERROR" "Compile Notepad3 x64 first!" IF NOT EXIST "..\%INPUTDIRx64%\minipath.exe" CALL :SUBMSG "ERROR" "Compile MiniPath x64 first!" -::IF NOT EXIST "..\%INPUTDIRx64%\grepWinNP3.exe" CALL :SUBMSG "ERROR" "Compile grepWinNP3 x64 first!" IF NOT EXIST "..\%INPUTDIRx64%\np3encrypt.exe" CALL :SUBMSG "ERROR" "Compile np3encrypt x64 first!" +IF NOT EXIST "..\grepWin\portables\grepWin-x86_portable.exe" CALL :SUBMSG "ERROR" "grepWin x86 portable not found in grepWin\portables\!" +IF NOT EXIST "..\grepWin\portables\grepWin-x64_portable.exe" CALL :SUBMSG "ERROR" "grepWin x64 portable not found in grepWin\portables\!" CALL :SubGetVersion CALL :SubDetectSevenzipPath @@ -79,7 +81,9 @@ ECHO. :: =========================================================================================== ping -n 9 127.0.0.1>nul +POPD ENDLOCAL +::PAUSE EXIT /B @@ -95,14 +99,17 @@ FOR %%A IN ("..\License.txt" "..\Readme.txt" "Notepad3.ini" "minipath.ini"^ "..\%1\Notepad3.exe" "..\%1\minipath.exe" "..\%1\np3encrypt.exe") DO COPY /Y /V "%%A" "%TEMP_NAME%\" SET "LNG=%TEMP_NAME%\lng" -SET "GRP=%TEMP_NAME%\lng\gwLng\" +SET "GREPWIN=%TEMP_NAME%\grepWin" SET "THEMES=%TEMP_NAME%\Themes" SET "DOCS=%TEMP_NAME%\Docs" IF NOT EXIST %LNG% MD %LNG% +IF NOT EXIST %GREPWIN% MD %GREPWIN% IF NOT EXIST %THEMES% MD %THEMES% IF NOT EXIST %DOCS% MD %DOCS% XCOPY /E /Y /V "..\%1\lng" "%LNG%" /EXCLUDE:Ignore.txt -XCOPY /E /Y /V "..\%1\lng\gwLng\" "%GRP%" +COPY /Y /V "..\grepWin\portables\grepWin-%2_portable.exe" "%GREPWIN%\" +COPY /Y /V "..\grepWin\portables\LICENSE.txt" "%GREPWIN%\" +XCOPY /Y /V "..\grepWin\translations\*.lang" "%GREPWIN%\" XCOPY /E /Y /V "Themes" "%THEMES%" XCOPY /E /Y /V "Docs" "%DOCS%" COPY /Y /V "Changes.txt" "%DOCS%" @@ -111,9 +118,9 @@ SET "FAVORITES=%TEMP_NAME%\Favorites" IF NOT EXIST "%FAVORITES%" MD "%FAVORITES%" PUSHD "%TEMP_NAME%" -"%SEVENZIP%" a -tzip -mcu=on -mx=7^ - "%ZIP_NAME%.zip" "License.txt" "Notepad3.exe" "Notepad3.ini" "grepWinLicense.txt" "Readme.txt"^ - "Favorites" "minipath.exe" "minipath.ini" "grepWinNP3.exe" "np3encrypt.exe" "lng" "Themes" "Docs">NUL +"%SEVENZIP%" a -tzip -mcu=on -mx=9^ + "%ZIP_NAME%.zip" "License.txt" "Notepad3.exe" "Notepad3.ini" "Readme.txt"^ + "Favorites" "minipath.exe" "minipath.ini" "np3encrypt.exe" "grepWin" "lng" "Themes" "Docs">NUL IF %ERRORLEVEL% NEQ 0 CALL :SUBMSG "ERROR" "Compilation failed!" CALL :SUBMSG "INFO" "%ZIP_NAME%.zip created successfully!" diff --git a/grepWin/portables/grepWin-2.1.12_portable.zip b/grepWin/portables/grepWin-2.1.12_portable.zip deleted file mode 100644 index 023b3bee2..000000000 Binary files a/grepWin/portables/grepWin-2.1.12_portable.zip and /dev/null differ diff --git a/grepWin/portables/grepWin-x64-2.1.12_portable.zip b/grepWin/portables/grepWin-x64-2.1.12_portable.zip deleted file mode 100644 index 4f4d9cded..000000000 Binary files a/grepWin/portables/grepWin-x64-2.1.12_portable.zip and /dev/null differ diff --git a/np3portableapp/Notepad3Portable/App/AppInfo/Launcher/Notepad3Portable.ini b/np3portableapp/Notepad3Portable/App/AppInfo/Launcher/Notepad3Portable.ini index 88165f1f3..2fd00a419 100644 --- a/np3portableapp/Notepad3Portable/App/AppInfo/Launcher/Notepad3Portable.ini +++ b/np3portableapp/Notepad3Portable/App/AppInfo/Launcher/Notepad3Portable.ini @@ -43,7 +43,7 @@ NOTEPAD3_PORTABLE_SETTINGS=%PAL:DataDir%\settings [RegistryKeys] ;This section allows you to backup and restore a given key and the keys below it within the registry. Any existing data in the same location will be backed up before the app is run and restored on exit. The portable app's data will be stored in a .reg key with the name at the beginning of each line within the Data directory. It's best to take as little of the registry as possible. In our example, taking the whole ExamplePublisher section isn't necessary because all our app's data is stored within AppName. If we took ExamplePublisher, we might run into problems with other apps from the same publisher. -AppName=HKCU\Software\ExamplePublisher\AppName +;AppName=HKCU\Software\ExamplePublisher\AppName ;If there is some data in the registry that the app creates but does not need to be saved between sessions of the portable app, it can be handled using a - instead of a name for a .reg file as follows: ;-=HKCU\Software\ExamplePublisher\GarbageData diff --git a/np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini b/np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini deleted file mode 100644 index b687026b9..000000000 --- a/np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini +++ /dev/null @@ -1,30 +0,0 @@ -[Format] -Type=PortableAppsFormat -Version=3.9 -[Details] -Name=Notepad3Portable -AppId=Notepad3Portable -BaseAppName=Notepad3 -Publisher=Notepad3 Contibutors & Rizonesoft & PortableApps.com -Homepage=PortableApps.com/Notepad3Portable -Category=Development -Description=A Lightweight Universal Text Editor -Language=Multilingual -[License] -Shareable=true -OpenSource=true -Freeware=true -CommercialUse=true -[SpecialPaths] -Plugins=NONE -[Dependencies] -UsesJava=false -UsesDotNetVersion=false -[Version] -PackageVersion=7.26.404.1 -DisplayVersion=7.26.404.1 -[Control] -Icons=1 -Start=Notepad3Portable.exe -[Associations] -FileTypes=txt,html,htm,xmp,php,asp,css,js,vb,vbs,c,cpp,h,rs,mak,java,pas,inc,bat,diff,ps1,ahk,au3,avs,cmake,iss,latex,lua,nsi,nsh,nfo,tcl,rb diff --git a/np3portableapp/Notepad3Portable/App/AppInfo/appinfo_template.ini b/np3portableapp/Notepad3Portable/App/AppInfo/appinfo_template.ini index 92bc74135..582ab8ab2 100644 --- a/np3portableapp/Notepad3Portable/App/AppInfo/appinfo_template.ini +++ b/np3portableapp/Notepad3Portable/App/AppInfo/appinfo_template.ini @@ -7,7 +7,7 @@ Version=3.9 Name=Notepad3PortablexxxDEVNAMExxx AppId=Notepad3Portable BaseAppName=Notepad3 -Publisher=Notepad3 Contibutors & Rizonesoft & PortableApps.com +Publisher=Notepad3 Contributors & Rizonesoft & PortableApps.com Homepage=PortableApps.com/Notepad3Portable Category=Development Description=A Lightweight Universal Text Editor diff --git a/np3portableapp/Notepad3Portable/App/AppInfo/installer.ini b/np3portableapp/Notepad3Portable/App/AppInfo/installer.ini deleted file mode 100644 index fd2cc2d47..000000000 --- a/np3portableapp/Notepad3Portable/App/AppInfo/installer.ini +++ /dev/null @@ -1,42 +0,0 @@ -[CheckRunning] -[Source] -IncludeInstallerSource=false -[MainDirectories] -RemoveAppDirectory=true -RemoveDataDirectory=false -RemoveOtherDirectory=true -[OptionalComponents] -[CopyLocalFiles] -[DownloadFiles] -[Languages] -ENGLISH=true -ENGLISHGB=true -AFRIKAANS=true -BELARUSIAN=true -DUTCH=true -FINNISH=true -FRENCH=true -GERMAN=true -GREEK=true -HINDI=true -HUNGARIAN=true -INDONESIAN=true -ITALIAN=true -JAPANESE=true -KOREAN=true -POLISH=true -PORTUGUESE=true -PORTUGUESEBR=true -RUSSIAN=true -SIMPCHINESE=true -SLOVAK=true -SPANISH=true -SPANISHINTERNATIONAL=true -SWEDISH=true -TRADCHINESE=true -TURKISH=true -VIETNAMESE=true -[DirectoriesToPreserve] -[DirectoriesToRemove] -[FilesToPreserve] -[FilesToRemove] diff --git a/np3portableapp/Notepad3Portable/Other/Source/Notepad3.nsi b/np3portableapp/Notepad3Portable/Other/Source/Notepad3.nsi deleted file mode 100644 index dca87ad42..000000000 --- a/np3portableapp/Notepad3Portable/Other/Source/Notepad3.nsi +++ /dev/null @@ -1,82 +0,0 @@ -;Copyright 2004-2016 John T. Haller of PortableApps.com -;encoding: UTF-8 - -;Website: https://PortableApps.com/Notepad3Portable - -;This software is OSI Certified Open Source Software. -;OSI Certified is a certification mark of the Open Source Initiative. - -;This program is free software; you can redistribute it and/or -;modify it under the terms of the GNU General Public License -;as published by the Free Software Foundation; either version 2 -;of the License, or (at your option) any later version. - -;This program is distributed in the hope that it will be useful, -;but WITHOUT ANY WARRANTY; without even the implied warranty of -;MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;GNU General Public License for more details. - -;You should have received a copy of the GNU General Public License -;along with this program; if not, write to the Free Software -;Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -!define PORTABLEAPPNAME "Notepad3, Portable Edition" -!define NamePortable "Notepad3, Portable Edition" -!define APPNAME "Notepad3" -!define NAME "Notepad3Portable" -!define AppID "Notepad3Portable" -!define VER "5.18.1108.1350" -!define WEBSITE "PortableApps.com/Notepad3Portable" -!define DEFAULTEXE "Notepad3.exe" -!define DEFAULTAPPDIR "Notepad3" -!define LAUNCHERLANGUAGE "English" - -;=== Program Details -Name "${PORTABLEAPPNAME}" -OutFile "${DEFAULTEXE}" -Caption "${PORTABLEAPPNAME} | PortableApps.com" -VIProductVersion "${VER}" -VIAddVersionKey ProductName "${PORTABLEAPPNAME}" -VIAddVersionKey Comments "A notepad replacement" -VIAddVersionKey CompanyName "Rizonesoft" -VIAddVersionKey LegalCopyright "Derick Payne" -VIAddVersionKey FileDescription "Based on code from Notepad2, Florian Balmer© 1996-2011" -VIAddVersionKey FileVersion "${VER}" -VIAddVersionKey ProductVersion "${VER}" -VIAddVersionKey InternalName "${PORTABLEAPPNAME}" -VIAddVersionKey LegalTrademarks "Rizonesoft © 2008-2026" -VIAddVersionKey OriginalFilename "${DEFAULTEXE}" -;VIAddVersionKey PrivateBuild "" -;VIAddVersionKey SpecialBuild "" - -;=== Runtime Switches -CRCCheck On -WindowIcon Off -SilentInstall Silent -AutoCloseWindow True -RequestExecutionLevel user -XPStyle on -Unicode true - -; Best Compression -SetCompress Auto -SetCompressor /SOLID lzma -SetCompressorDictSize 32 -SetDatablockOptimize On - -;=== Include -;(Standard NSIS) - -;=== Program Icon -Icon "..\..\App\AppInfo\appicon.ico" - -;=== Icon & Stye === -BrandingText "Rizonesoft©" - -;=== Languages -LoadLanguageFile "${NSISDIR}\Contrib\Language files\${LAUNCHERLANGUAGE}.nlf" -!include PortableApps.comLauncherLANG_${LAUNCHERLANGUAGE}.nsh - -Section "Main" - MessageBox MB_OK|MB_ICONINFORMATION "Notepad3.exe is running and will close when you click OK." -SectionEnd diff --git a/np3portableapp/Notepad3Portable/help.html b/np3portableapp/Notepad3Portable/help.html index d7c395c2f..5861063e0 100644 --- a/np3portableapp/Notepad3Portable/help.html +++ b/np3portableapp/Notepad3Portable/help.html @@ -131,7 +131,7 @@
Notepad3 Portable version is [Notepad3Portable_6.24.xxx.x_zzzz.paf.exe]. It's packaged with a PortableApps.com launcher as a portable app, so you can use it from a cloud folder, portable drive, or local folder without needing to install it on each PC. Learn more about Notepad3Portable...
Notepad3 Portable is packaged with a PortableApps.com launcher as a portable app, so you can use it from a cloud folder, portable drive, or local folder without needing to install it on each PC. Learn more about Notepad3Portable...