From 02d9bd9f24d9451090007ff3ab9c3077cd84b474 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Wed, 18 Oct 2017 14:01:53 +0200 Subject: [PATCH 1/5] + doc: doc/Notepad3.txt - add description of [Section2] .ini settings (mostly taken from orig. Notepad2 FAQs) --- doc/Notepad3.txt | 148 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) diff --git a/doc/Notepad3.txt b/doc/Notepad3.txt index 895cc5d0d..833827052 100644 --- a/doc/Notepad3.txt +++ b/doc/Notepad3.txt @@ -758,10 +758,158 @@ Command Line Switches /o Keep window on top; /o0 do not keep window on top. /f Specify ini-file; /f0 use no ini-file (don't save settings). /u Launch with elevated privileges. + /v Print specified document to default printer and quit. /z Skip next (usable for registry-based Notepad replacement). /? Display a brief summary about command line parameters. +======================================================================= +What about the [Settings2] section of the ini-file? +======================================================================= + +You may have noticed that the Notepad3 ini-file has a configuration section +named [Settings2]. This section offers some advanced Notepad3 program settings, +and can only be edited manually. Press Ctrl+F7 to open the Notepad3 ini-file. +Most changes only take effect upon restarting Notepad3. + +StickyWindowPosition +ReuseWindow +SingleFileInstance +These items are managed by Notepad3. + +SciDirectWriteTech +SciFontQuality +Specifies Scintilla's internal rendering technology and font quality. + SciDirectWriteTech (default is 1): + 0: SC_TECHNOLOGY_DEFAULT + 1: SC_TECHNOLOGY_DIRECTWRITE + 2: SC_TECHNOLOGY_DIRECTWRITERETAIN + 3: SC_TECHNOLOGY_DIRECTWRITEDC + SciFontQuality (default is 3): + 0: SC_EFF_QUALITY_DEFAULT + 1: SC_EFF_QUALITY_NON_ANTIALIASED + 2: SC_EFF_QUALITY_ANTIALIASED + 3: SC_EFF_QUALITY_LCD_OPTIMIZED + +MarkOccurrencesMaxCount +The maximum number of counts for marking occurences, if this option is active. +The default is 2000. + +MultiFileArg +Control if Notepad3 should allow multiple files on the command line (set to 1). +The default behaviour is to accept only a single file, without quoted spaces, +like Windows Notepad (set to 0). +The command line switches + and - can be used to override this setting on the fly, +and the /z switch has the same effect as the - switch. + +OffsetNewWindows +Determines whether positions of new windows (opened though Alt+N or Alt+0) +should be offset relative to the active Notepad3 window (1). +The new default setting for Notepad3 5.0 is to use the same window position +as the currently active Notepad3 window (0). + +RelativeFileMRU +Set to 0 to disable recent files on the same drive or network share as Notepad3.exe +being saved with relative pathnames. The default is 1 (enabled). + +PortableMyDocs +If set to 1, recent files and other path settings referring to the +My Documents directory tree are stored relative to My Documents. +This enhances USB stick portability between Windows XP and more recent versions of Windows, + which are using different locations for My Documents. + This setting has no effect if Notepad3.exe itself is located inside + My Documents (or a subdirectory thereof). + The default is 1 (enabled) if RelativeFileMRU is enabled, and 0 (disabled) otherwise. + +DefaultExtension +Specify the default extension for saved files (omit the leading dot, just like txt or html). +The default extension is 'txt', +and a value of (none) needs to specified if no default extension is preferred. +To save a file without extension (regardless of the default extension setting), +put the filename in double quotes. + +DefaultDirectory +Specify the default directory for the open and save dialogs, used if no file is opened. +Pathnames can be relative to the Notepad3 program directory. + +FileDlgFilters +Specify filters for the open and save dialogs +(Example: Text Files|*.txt;*.wtx;*.log;*.asc;*.doc;*.diz;*.nfo|All Files|*.*). + +FileCheckInterval +The interval (in milliseconds) to check for external modification +of the currently opened file. Defaults to 2000 ms. + +AutoReloadTimeout +The timeout (in milliseconds) to wait before automatically reloading modified files. +The default value of 2000 ms usually prevents read/write conflicts. + +FileLoadWarningMB +The size limit, in megabytes, to display a warning message for large files. +A value of 0 disables the warning. + +OpacityLevel +Opacity level (in %) of the Notepad3 window in transparent mode. + +NoFadeHidden +Set to 1 to disable fading of hidden objects in file lists (such as Favorites, etc.). + +ToolbarLook +Determines the look of disabled toolbar buttons. 0 means system default +(dark-grey and somewhat grainy on Windows Vista and Windows 7; not available on Windows 2000), +1 means colored and faded (the default from Notepad3 4.2.25 on Windows XP and above), +and 2 means Windows XP-style light-grey (the default from Notepad3 4.2.25 on Windows 2000; +looks better than the system default on Windows Vista and Windows 7). + +SimpleIndentGuides +Set to 1 to prevent indentation guides from jumping across empty lines. + +NoHTMLGuess +Set to 1 to disable simple HTML/XML detection for files without extensions. + +NoCGIGuess +Set to 1 to disable simple language detection for cgi and fcgi files. + +NoFileVariables +Set to 1 to disable file variable parsing. Encoding tag parsing can be disabled +in the File, Encoding, Default dialog box. + +filebrowser.exe +Specify the path of an external program that is launched +when pressing the Browse toolbar button. Defaults to metapath.exe, +which is my file browser plugin (found in the Project Archive). +You can specify additional command line switches, +and the file currently opened in Notepad3 will be appended +as the last command line parameter. +To have the current file selected in Windows Explorer +when pressing the browse toolbar button, set this entry to "explorer.exe /e,/select,%1". +Note: Due to special treatment of quotes by the Win32 ini-file APIs, +pathnames with spaces need to be quadruple-quoted (""path to/file.exe""), +but only double-quoted if there's additional command line arguments ("path to/file.exe" /arg). + +DateTimeShort +DateTimeLong +Specify the short/long date and time formats. +This is the format parameter passed to the strftime() function. +Note that the locale will be set to English +(because of the English Visual C++ Runtime Library used by Notepad3). + +TimeStamp +Regular expression used to update timestamps. + +WebTemplate1 +WebTemplate2 +Undocumented. Dangerous. ☺ + +ShellAppUserModelID +ShellUseSystemMRU +Control system MRU, taskbar and jump list behaviour. +See Replacing Windows Notepad for detailed explanations. + + +======================================================================= +======================================================================= + Source Code Notepad2 is based on the Scintilla source code editing component: From 949a637fbe81c6a70145d0c5564842f41f13a394 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Wed, 18 Oct 2017 14:46:20 +0200 Subject: [PATCH 2/5] + doc: minor changes to Notepad3.txt --- doc/Notepad3.txt | 316 ++++++++++++++++++++++++----------------------- 1 file changed, 161 insertions(+), 155 deletions(-) diff --git a/doc/Notepad3.txt b/doc/Notepad3.txt index 833827052..8e75c450e 100644 --- a/doc/Notepad3.txt +++ b/doc/Notepad3.txt @@ -113,19 +113,171 @@ Changed command Line Switches compared to Notepad2: /vd Print specified document, but open Print dialog before -Hidden .ini-File parameters: +======================================================================= +How to reset the Notepad3 notification messages? +======================================================================= + +To bring back the notification messages suppressed with the +"Don't display this message again" option, load the ini-file (Ctrl+F7) +and delete all the values from the [Suppressed Messages] section. + +To block the "Don't display this message again" option for an +individual notification, set the value of the corresponding ini-option to 2. +For example, MsgNotFound=2 ensures the "Text not found" notification message +will always be displayed. + + +======================================================================= +What about the [Settings2] section of the .ini-file? +======================================================================= + +You may have noticed that the Notepad3 ini-file has a configuration section +named [Settings2]. This section offers some advanced Notepad3 program settings, +and can only be edited manually. Press Ctrl+F7 to open the Notepad3 ini-file. +Most changes only take effect upon restarting Notepad3. + +New (Notepad3) in [Settings2] -[Settings2] -StickyWindowPosition= 0/1 (BOOL) - get/set by Notepad3 -DefaultExtension= txt (string) - get/set by Notepad3 -DefaultDirectory= dir (string) - open/save file dialog -FileDlgFilters= filter (string) - open/save file dialog filter -FileCheckInverval= 2000 [ms] - ... -AutoReloadTimeout= 2000 [ms] - ... SciDirectWriteTech= -1,0,1,2,3 - Scintilla's Direct Write Technology SciFontQuality= 0,1,2,3 - default,none,standard,cleartype (if not defined by 'smoothing:xxx' in Style Schema) -MarkOccurrencesMaxCount= 2000 - max count of marked word occurences +SciDirectWriteTech +SciFontQuality +Specifies Scintilla's internal rendering technology and font quality. + SciDirectWriteTech (default is 1): + 0: SC_TECHNOLOGY_DEFAULT + 1: SC_TECHNOLOGY_DIRECTWRITE + 2: SC_TECHNOLOGY_DIRECTWRITERETAIN + 3: SC_TECHNOLOGY_DIRECTWRITEDC + SciFontQuality (default is 3): + 0: SC_EFF_QUALITY_DEFAULT + 1: SC_EFF_QUALITY_NON_ANTIALIASED + 2: SC_EFF_QUALITY_ANTIALIASED + 3: SC_EFF_QUALITY_LCD_OPTIMIZED + +MarkOccurrencesMaxCount +The maximum number of counts for marking occurences, if this option is active. +The default is 2000. + + +Notepad2 already existing settings: +----------------------------------- + +StickyWindowPosition +ReuseWindow +SingleFileInstance +These items are managed by Notepad3. + +MultiFileArg +Control if Notepad3 should allow multiple files on the command line (set to 1). +The default behaviour is to accept only a single file, without quoted spaces, +like Windows Notepad (set to 0). +The command line switches + and - can be used to override this setting on the fly, +and the /z switch has the same effect as the - switch. + +OffsetNewWindows +Determines whether positions of new windows (opened though Alt+N or Alt+0) +should be offset relative to the active Notepad3 window (1). +The new default setting for Notepad3 5.0 is to use the same window position +as the currently active Notepad3 window (0). + +RelativeFileMRU +Set to 0 to disable recent files on the same drive or network share as Notepad3.exe +being saved with relative pathnames. The default is 1 (enabled). + +PortableMyDocs +If set to 1, recent files and other path settings referring to the +My Documents directory tree are stored relative to My Documents. +This enhances USB stick portability between Windows XP and more recent versions of Windows, + which are using different locations for My Documents. + This setting has no effect if Notepad3.exe itself is located inside + My Documents (or a subdirectory thereof). + The default is 1 (enabled) if RelativeFileMRU is enabled, and 0 (disabled) otherwise. + +DefaultExtension +Specify the default extension for saved files (omit the leading dot, just like txt or html). +The default extension is 'txt', +and a value of (none) needs to specified if no default extension is preferred. +To save a file without extension (regardless of the default extension setting), +put the filename in double quotes. + +DefaultDirectory +Specify the default directory for the open and save dialogs, used if no file is opened. +Pathnames can be relative to the Notepad3 program directory. + +FileDlgFilters +Specify filters for the open and save dialogs +(Example: Text Files|*.txt;*.wtx;*.log;*.asc;*.doc;*.diz;*.nfo|All Files|*.*). + +FileCheckInverval +The interval (in milliseconds) to check for external modification +of the currently opened file. Defaults to 2000 ms. + +AutoReloadTimeout +The timeout (in milliseconds) to wait before automatically reloading modified files. +The default value of 2000 ms usually prevents read/write conflicts. + +FileLoadWarningMB +The size limit, in megabytes, to display a warning message for large files. +A value of 0 disables the warning. + +OpacityLevel +Opacity level (in %) of the Notepad3 window in transparent mode. + +NoFadeHidden +Set to 1 to disable fading of hidden objects in file lists (such as Favorites, etc.). + +ToolbarLook +Determines the look of disabled toolbar buttons. 0 means system default +(dark-grey and somewhat grainy on Windows Vista and Windows 7; not available on Windows 2000), +1 means colored and faded (the default from Notepad3 4.2.25 on Windows XP and above), +and 2 means Windows XP-style light-grey (the default from Notepad3 4.2.25 on Windows 2000; +looks better than the system default on Windows Vista and Windows 7). + +SimpleIndentGuides +Set to 1 to prevent indentation guides from jumping across empty lines. + +NoHTMLGuess +Set to 1 to disable simple HTML/XML detection for files without extensions. + +NoCGIGuess +Set to 1 to disable simple language detection for cgi and fcgi files. + +NoFileVariables +Set to 1 to disable file variable parsing. Encoding tag parsing can be disabled +in the File, Encoding, Default dialog box. + +filebrowser.exe +Specify the path of an external program that is launched +when pressing the Browse toolbar button. Defaults to metapath.exe, +which is my file browser plugin (found in the Project Archive). +You can specify additional command line switches, +and the file currently opened in Notepad3 will be appended +as the last command line parameter. +To have the current file selected in Windows Explorer +when pressing the browse toolbar button, set this entry to "explorer.exe /e,/select,%1". +Note: Due to special treatment of quotes by the Win32 ini-file APIs, +pathnames with spaces need to be quadruple-quoted (""path to/file.exe""), +but only double-quoted if there's additional command line arguments ("path to/file.exe" /arg). + +DateTimeShort +DateTimeLong +Specify the short/long date and time formats. +This is the format parameter passed to the strftime() function. +Note that the locale will be set to English +(because of the English Visual C++ Runtime Library used by Notepad3). + +TimeStamp +Regular expression used to update timestamps. + +WebTemplate1 +WebTemplate2 +Undocumented. Dangerous. ☺ + +ShellAppUserModelID +ShellUseSystemMRU +Control system MRU, taskbar and jump list behaviour. +See Replacing Windows Notepad for detailed explanations. ======================================================================= @@ -763,152 +915,6 @@ Command Line Switches /? Display a brief summary about command line parameters. -======================================================================= -What about the [Settings2] section of the ini-file? -======================================================================= - -You may have noticed that the Notepad3 ini-file has a configuration section -named [Settings2]. This section offers some advanced Notepad3 program settings, -and can only be edited manually. Press Ctrl+F7 to open the Notepad3 ini-file. -Most changes only take effect upon restarting Notepad3. - -StickyWindowPosition -ReuseWindow -SingleFileInstance -These items are managed by Notepad3. - -SciDirectWriteTech -SciFontQuality -Specifies Scintilla's internal rendering technology and font quality. - SciDirectWriteTech (default is 1): - 0: SC_TECHNOLOGY_DEFAULT - 1: SC_TECHNOLOGY_DIRECTWRITE - 2: SC_TECHNOLOGY_DIRECTWRITERETAIN - 3: SC_TECHNOLOGY_DIRECTWRITEDC - SciFontQuality (default is 3): - 0: SC_EFF_QUALITY_DEFAULT - 1: SC_EFF_QUALITY_NON_ANTIALIASED - 2: SC_EFF_QUALITY_ANTIALIASED - 3: SC_EFF_QUALITY_LCD_OPTIMIZED - -MarkOccurrencesMaxCount -The maximum number of counts for marking occurences, if this option is active. -The default is 2000. - -MultiFileArg -Control if Notepad3 should allow multiple files on the command line (set to 1). -The default behaviour is to accept only a single file, without quoted spaces, -like Windows Notepad (set to 0). -The command line switches + and - can be used to override this setting on the fly, -and the /z switch has the same effect as the - switch. - -OffsetNewWindows -Determines whether positions of new windows (opened though Alt+N or Alt+0) -should be offset relative to the active Notepad3 window (1). -The new default setting for Notepad3 5.0 is to use the same window position -as the currently active Notepad3 window (0). - -RelativeFileMRU -Set to 0 to disable recent files on the same drive or network share as Notepad3.exe -being saved with relative pathnames. The default is 1 (enabled). - -PortableMyDocs -If set to 1, recent files and other path settings referring to the -My Documents directory tree are stored relative to My Documents. -This enhances USB stick portability between Windows XP and more recent versions of Windows, - which are using different locations for My Documents. - This setting has no effect if Notepad3.exe itself is located inside - My Documents (or a subdirectory thereof). - The default is 1 (enabled) if RelativeFileMRU is enabled, and 0 (disabled) otherwise. - -DefaultExtension -Specify the default extension for saved files (omit the leading dot, just like txt or html). -The default extension is 'txt', -and a value of (none) needs to specified if no default extension is preferred. -To save a file without extension (regardless of the default extension setting), -put the filename in double quotes. - -DefaultDirectory -Specify the default directory for the open and save dialogs, used if no file is opened. -Pathnames can be relative to the Notepad3 program directory. - -FileDlgFilters -Specify filters for the open and save dialogs -(Example: Text Files|*.txt;*.wtx;*.log;*.asc;*.doc;*.diz;*.nfo|All Files|*.*). - -FileCheckInterval -The interval (in milliseconds) to check for external modification -of the currently opened file. Defaults to 2000 ms. - -AutoReloadTimeout -The timeout (in milliseconds) to wait before automatically reloading modified files. -The default value of 2000 ms usually prevents read/write conflicts. - -FileLoadWarningMB -The size limit, in megabytes, to display a warning message for large files. -A value of 0 disables the warning. - -OpacityLevel -Opacity level (in %) of the Notepad3 window in transparent mode. - -NoFadeHidden -Set to 1 to disable fading of hidden objects in file lists (such as Favorites, etc.). - -ToolbarLook -Determines the look of disabled toolbar buttons. 0 means system default -(dark-grey and somewhat grainy on Windows Vista and Windows 7; not available on Windows 2000), -1 means colored and faded (the default from Notepad3 4.2.25 on Windows XP and above), -and 2 means Windows XP-style light-grey (the default from Notepad3 4.2.25 on Windows 2000; -looks better than the system default on Windows Vista and Windows 7). - -SimpleIndentGuides -Set to 1 to prevent indentation guides from jumping across empty lines. - -NoHTMLGuess -Set to 1 to disable simple HTML/XML detection for files without extensions. - -NoCGIGuess -Set to 1 to disable simple language detection for cgi and fcgi files. - -NoFileVariables -Set to 1 to disable file variable parsing. Encoding tag parsing can be disabled -in the File, Encoding, Default dialog box. - -filebrowser.exe -Specify the path of an external program that is launched -when pressing the Browse toolbar button. Defaults to metapath.exe, -which is my file browser plugin (found in the Project Archive). -You can specify additional command line switches, -and the file currently opened in Notepad3 will be appended -as the last command line parameter. -To have the current file selected in Windows Explorer -when pressing the browse toolbar button, set this entry to "explorer.exe /e,/select,%1". -Note: Due to special treatment of quotes by the Win32 ini-file APIs, -pathnames with spaces need to be quadruple-quoted (""path to/file.exe""), -but only double-quoted if there's additional command line arguments ("path to/file.exe" /arg). - -DateTimeShort -DateTimeLong -Specify the short/long date and time formats. -This is the format parameter passed to the strftime() function. -Note that the locale will be set to English -(because of the English Visual C++ Runtime Library used by Notepad3). - -TimeStamp -Regular expression used to update timestamps. - -WebTemplate1 -WebTemplate2 -Undocumented. Dangerous. ☺ - -ShellAppUserModelID -ShellUseSystemMRU -Control system MRU, taskbar and jump list behaviour. -See Replacing Windows Notepad for detailed explanations. - - -======================================================================= -======================================================================= Source Code From 2377d52b7fa57239fa40db803c60e2da5bf05e1c Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Wed, 18 Oct 2017 16:57:10 +0200 Subject: [PATCH 3/5] + restore wrongly discarded np3portableapps .ini files for NP3Portable, redirecting .ini reading to correct path --- .gitignore | 1 - .../Notepad3Portable/Notepad3/Notepad3.ini | Bin 0 -> 138 bytes .../Notepad3Portable/Notepad3/minipath.ini | Bin 0 -> 138 bytes .../Notepad3Portable/Notepad3/x64/Notepad3.ini | Bin 0 -> 138 bytes .../Notepad3Portable/Notepad3/x64/minipath.ini | Bin 0 -> 138 bytes 5 files changed, 1 deletion(-) create mode 100644 np3portableapp/Notepad3Portable/Notepad3/Notepad3.ini create mode 100644 np3portableapp/Notepad3Portable/Notepad3/minipath.ini create mode 100644 np3portableapp/Notepad3Portable/Notepad3/x64/Notepad3.ini create mode 100644 np3portableapp/Notepad3Portable/Notepad3/x64/minipath.ini diff --git a/.gitignore b/.gitignore index ba6095ab0..26aff8c11 100644 --- a/.gitignore +++ b/.gitignore @@ -44,6 +44,5 @@ Thumbs.db /Versions/build.txt /Notepad3.VC.db /Notepad3.VC.VC.opendb -/np3portableapp/Notepad3Portable/App/Notepad3 /np3portableapp/Notepad3Portable/Notepad3Portable.exe /np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini diff --git a/np3portableapp/Notepad3Portable/Notepad3/Notepad3.ini b/np3portableapp/Notepad3Portable/Notepad3/Notepad3.ini new file mode 100644 index 0000000000000000000000000000000000000000..b62b57fec44c256e4f969626514a78d4998c1528 GIT binary patch literal 138 zcmezWFPg!RA)ldyA(f$kA(0`4!I&YIftP^`LsX9;lOYd?Z5dR7a{de<46Y0T42}#g pKppWwmOn!fP|T6RiNOab6VDI~BtwAE6R6r9$WvvA!D%MQJ^=cl7h?bb literal 0 HcmV?d00001 diff --git a/np3portableapp/Notepad3Portable/Notepad3/minipath.ini b/np3portableapp/Notepad3Portable/Notepad3/minipath.ini new file mode 100644 index 0000000000000000000000000000000000000000..279b4089e28123b1b9453ad0fde70d53e29d6077 GIT binary patch literal 138 zcmezWFPb5jA(J5whzl4J8A=#37-AWC8MrV+^`NS38B`hk82lMR7+e_w7#tZ~7>pU> mfh>Q9AfT8dgA;=fP$r%s7)XWyp(jwaJCLW!5QEc9kbMABSr~T! literal 0 HcmV?d00001 diff --git a/np3portableapp/Notepad3Portable/Notepad3/x64/Notepad3.ini b/np3portableapp/Notepad3Portable/Notepad3/x64/Notepad3.ini new file mode 100644 index 0000000000000000000000000000000000000000..b62b57fec44c256e4f969626514a78d4998c1528 GIT binary patch literal 138 zcmezWFPg!RA)ldyA(f$kA(0`4!I&YIftP^`LsX9;lOYd?Z5dR7a{de<46Y0T42}#g pKppWwmOn!fP|T6RiNOab6VDI~BtwAE6R6r9$WvvA!D%MQJ^=cl7h?bb literal 0 HcmV?d00001 diff --git a/np3portableapp/Notepad3Portable/Notepad3/x64/minipath.ini b/np3portableapp/Notepad3Portable/Notepad3/x64/minipath.ini new file mode 100644 index 0000000000000000000000000000000000000000..279b4089e28123b1b9453ad0fde70d53e29d6077 GIT binary patch literal 138 zcmezWFPb5jA(J5whzl4J8A=#37-AWC8MrV+^`NS38B`hk82lMR7+e_w7#tZ~7>pU> mfh>Q9AfT8dgA;=fP$r%s7)XWyp(jwaJCLW!5QEc9kbMABSr~T! literal 0 HcmV?d00001 From 6fba734c656e272a598016612a8a93ecbed51c7b Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Wed, 18 Oct 2017 17:02:55 +0200 Subject: [PATCH 4/5] + fixing .ini paths for np3portableapps --- .../App/DefaultData/settings/Notepad3.ini | Bin 1150 -> 2090 bytes .../{ => App}/Notepad3/Notepad3.ini | Bin .../{ => App}/Notepad3/minipath.ini | Bin .../{ => App}/Notepad3/x64/Notepad3.ini | Bin .../{ => App}/Notepad3/x64/minipath.ini | Bin .../Data/settings/Notepad3.ini | Bin 0 -> 2090 bytes 6 files changed, 0 insertions(+), 0 deletions(-) rename np3portableapp/Notepad3Portable/{ => App}/Notepad3/Notepad3.ini (100%) rename np3portableapp/Notepad3Portable/{ => App}/Notepad3/minipath.ini (100%) rename np3portableapp/Notepad3Portable/{ => App}/Notepad3/x64/Notepad3.ini (100%) rename np3portableapp/Notepad3Portable/{ => App}/Notepad3/x64/minipath.ini (100%) create mode 100644 np3portableapp/Notepad3Portable/Data/settings/Notepad3.ini diff --git a/np3portableapp/Notepad3Portable/App/DefaultData/settings/Notepad3.ini b/np3portableapp/Notepad3Portable/App/DefaultData/settings/Notepad3.ini index 3a5f01638a1c502fd1f3a985da4e89f106cfccfc..ea9752cf957c12f12f98fee7d7e8670cf20daa27 100644 GIT binary patch literal 2090 zcmZvdTT>cA5QY0WRrwFTN5vAu@Rc+VL8`w?k(JshA7+g3O%XPe!NaxA(t=fL!e_gAAzaAOH zN+lQeHL^RluRLwCyC&~be8en;;%uJ72^sY~AN3~cH1RY7>yBrBWG~b+bIJ{9{t{`Xm*i}%De5;_}n6StOC#eIaGJXYrZ65l0rdEya*rebNA*q-D2 zmSdHIWi`)yWMa{vK&R=*X1uAYs(YwYr7snzj6!B>~P zv|i^imbFgkfg%dg9KB(ob$uD9_jSZZ_|X|HukG} zbx!(lK%NzI;$0M@qo>H6miK#zrg+-0qry{U@Fmf@)H&f%?t%Z3&S0Dn)jbW-8wDQu zJW36#ej(MgIJPq~KSNJ@^^IgOzNCQScJ=>h$j$^j$;hbJJVEMZD zE4-_7(WXIv>YR1w@h^*;ty%Gkhs=?Umb>@u}{H%%X3xt|pBT+G6SZsh)d_orFR delta 49 zcmZ1_@Q-7{oQd-cHa^?LIC%-{l*tCHD$KeJhLeL?mBI8yHtETe*y1K1Vi%b_gMAVJ D*B%jM diff --git a/np3portableapp/Notepad3Portable/Notepad3/Notepad3.ini b/np3portableapp/Notepad3Portable/App/Notepad3/Notepad3.ini similarity index 100% rename from np3portableapp/Notepad3Portable/Notepad3/Notepad3.ini rename to np3portableapp/Notepad3Portable/App/Notepad3/Notepad3.ini diff --git a/np3portableapp/Notepad3Portable/Notepad3/minipath.ini b/np3portableapp/Notepad3Portable/App/Notepad3/minipath.ini similarity index 100% rename from np3portableapp/Notepad3Portable/Notepad3/minipath.ini rename to np3portableapp/Notepad3Portable/App/Notepad3/minipath.ini diff --git a/np3portableapp/Notepad3Portable/Notepad3/x64/Notepad3.ini b/np3portableapp/Notepad3Portable/App/Notepad3/x64/Notepad3.ini similarity index 100% rename from np3portableapp/Notepad3Portable/Notepad3/x64/Notepad3.ini rename to np3portableapp/Notepad3Portable/App/Notepad3/x64/Notepad3.ini diff --git a/np3portableapp/Notepad3Portable/Notepad3/x64/minipath.ini b/np3portableapp/Notepad3Portable/App/Notepad3/x64/minipath.ini similarity index 100% rename from np3portableapp/Notepad3Portable/Notepad3/x64/minipath.ini rename to np3portableapp/Notepad3Portable/App/Notepad3/x64/minipath.ini diff --git a/np3portableapp/Notepad3Portable/Data/settings/Notepad3.ini b/np3portableapp/Notepad3Portable/Data/settings/Notepad3.ini new file mode 100644 index 0000000000000000000000000000000000000000..ea9752cf957c12f12f98fee7d7e8670cf20daa27 GIT binary patch literal 2090 zcmZvdTT>cA5QY0WRrwFTN5vAu@Rc+VL8`w?k(JshA7+g3O%XPe!NaxA(t=fL!e_gAAzaAOH zN+lQeHL^RluRLwCyC&~be8en;;%uJ72^sY~AN3~cH1RY7>yBrBWG~b+bIJ{9{t{`Xm*i}%De5;_}n6StOC#eIaGJXYrZ65l0rdEya*rebNA*q-D2 zmSdHIWi`)yWMa{vK&R=*X1uAYs(YwYr7snzj6!B>~P zv|i^imbFgkfg%dg9KB(ob$uD9_jSZZ_|X|HukG} zbx!(lK%NzI;$0M@qo>H6miK#zrg+-0qry{U@Fmf@)H&f%?t%Z3&S0Dn)jbW-8wDQu zJW36#ej(MgIJPq~KSNJ@^^IgOzNCQScJ=>h$j$^j$;hbJJVEMZD zE4-_7(WXIv>YR1w@h^*;ty%Gkhs=?Umb>@u}{H%%X3xt|pBT+G6SZsh)d_orFR literal 0 HcmV?d00001 From 90e7ddbfaa70cf39404aed6e63a54e501aea3a74 Mon Sep 17 00:00:00 2001 From: Rainer Kottenhoff Date: Wed, 18 Oct 2017 17:13:33 +0200 Subject: [PATCH 5/5] - fix: add *.exe for np3portableapps to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 26aff8c11..bc8c758e7 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,5 @@ Thumbs.db /Notepad3.VC.VC.opendb /np3portableapp/Notepad3Portable/Notepad3Portable.exe /np3portableapp/Notepad3Portable/App/AppInfo/appinfo.ini +/np3portableapp/Notepad3Portable/App/Notepad3/*.exe +/np3portableapp/Notepad3Portable/App/Notepad3/x64/*.exe