mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-07-12 21:13:37 +08:00
66 lines
2.1 KiB
Plaintext
66 lines
2.1 KiB
Plaintext
;Copyright 2004-2016 John T. Haller of PortableApps.com
|
|
|
|
;Website: http://PortableApps.com/FirefoxPortable
|
|
|
|
;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.
|
|
|
|
;=== Program Details
|
|
Name "Notepad3"
|
|
OutFile "Notepad3.exe"
|
|
Caption "Notepad3 | PortableApps.com"
|
|
VIProductVersion "2.0.2.436"
|
|
VIAddVersionKey ProductName "Notepad3"
|
|
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 "2.0.2.436"
|
|
VIAddVersionKey ProductVersion "2.0.2.436"
|
|
VIAddVersionKey InternalName "Notepad3"
|
|
VIAddVersionKey LegalTrademarks "Rizonesoft® 2008-2016"
|
|
VIAddVersionKey OriginalFilename "Notepad3.exe"
|
|
;VIAddVersionKey PrivateBuild ""
|
|
;VIAddVersionKey SpecialBuild ""
|
|
|
|
;=== Runtime Switches
|
|
CRCCheck On
|
|
WindowIcon Off
|
|
SilentInstall Silent
|
|
AutoCloseWindow True
|
|
RequestExecutionLevel user
|
|
XPStyle on
|
|
|
|
; Best Compression
|
|
SetCompress Auto
|
|
SetCompressor /SOLID lzma
|
|
SetCompressorDictSize 32
|
|
SetDatablockOptimize On
|
|
|
|
;=== Program Icon
|
|
Icon "..\..\App\AppInfo\appicon.ico"
|
|
|
|
;=== Icon & Stye ===
|
|
BrandingText "Rizonesoft®"
|
|
|
|
;=== Languages
|
|
LoadLanguageFile "${NSISDIR}\Contrib\Language files\English.nlf"
|
|
|
|
Section "Main"
|
|
MessageBox MB_OK|MB_ICONINFORMATION "Notepad3.exe is running and will close when you click OK."
|
|
SectionEnd
|