dail8859
1c84051d99
Allows user defined extension to associate workspace files
...
Closes #209 ; Close #169
Files ending in the defined extension will be opened in the project panel instead of as a normal file to edit (much like how the session file extension works).
2016-01-09 22:59:52 +01:00
Markus Heidelberg
715a64a32a
Make GCC/MinGW build work again and support cross-building under Linux
...
Close #1229 , Fixes #385
Only build errors are fixed, compile warnings are left alone. To reduce
the number of changes, even the compiler option "-fpermissive" has been
used to downgrade several errors to warnings.
2015-12-15 17:10:46 +01:00
Don Ho
773397d6ea
Add Debug Info feature
2015-12-07 01:15:17 +01:00
Don Ho
48e9b84bb2
Enhance the version detection capacity
...
By adding targeting in notepad++.manifest:
https://msdn.microsoft.com/en-us/library/windows/desktop/dn481241(v=vs.85).aspx
Windows 8.1 and windows 10 are detected correctely
2015-12-05 21:39:53 +01:00
Don Ho
6c7ca02fea
Add no editor border edge option
...
Close #707
Add no editor border edge option in preferences dialog.
Add new API NPPM_SETEDITORBORDEREDGE
2015-12-04 19:01:28 +01:00
Don Ho
b61170d669
Restore file extension feature in save dialog
...
Fixes #1159 , fixes #1129
Restore file extension feature in save dialog: make new style save
dialog optional (without file extension feature).
2015-11-26 19:09:40 +01:00
Don Ho
280ddcd493
Make the EOL type more explicite
2015-10-27 15:35:19 +01:00
Don Ho
963d7fc885
Enhance Javascript syntax highlighting
...
Separate the normal javascript (*.js) syntax highlighting from the
embbeded Javascript (in html) syntax highlighting.
2015-10-11 21:32:41 +02:00
Don Ho
46e810aa53
Add JSON language support; Add auto-detection for xml, php and bash.
2015-09-19 18:49:55 +02:00
Don Ho
4fc06e2bc1
Fix plugin shortcut configuration lost problem by using option -noPlugin. ( closes #589 )
...
Solution: save shortcut.xml only if shortcuts have been modified.
2015-08-29 21:49:49 +02:00
Don Ho
234e0615db
[RELEASE] Notepad++ 6.8.2 release
...
Use default font if font name loaded from stylers.xml cannot be found in
system.
2015-08-20 02:35:38 +02:00
Damien GERARD
f2bb34ccb2
Code simplification
2015-08-14 23:32:23 +02:00
Damien GERARD
9c857ed811
Parameters: using nullptr instead of NULL, added static
2015-08-14 22:51:44 +02:00
Damien GERARD
6e6ca7fe12
Parameters: fixed alignment (indent with tabs, align with spaces)
2015-08-14 22:42:56 +02:00
Damien GERARD
a53c25499e
Code simplification
2015-08-14 22:22:27 +02:00
Damien GERARD
2ad6ba5a44
Code: using enum class for FormatType
2015-08-14 05:57:19 -07:00
Damien GERARD
3fb1d96671
Some warning fixes
2015-08-14 04:32:38 -07:00
Don Ho
a958b019ff
[BUG_FIXED] Fix "Restore recent close file" text disappears ( closes #346 )
...
Detailed description: "Restore recent close file" text disappears from
menu while closing a file.
2015-07-28 22:47:17 +02:00
Don Ho
7164d4f516
[ENHANCEMENT] Make smooth font optional
...
The old behaviour enabled smooth font and it didn't allow user to change
this setting. The new behaviour makes it optional and turn it off by
default.
2015-07-16 12:52:16 +02:00
Don Ho
5e240147c5
[MODIF] Remove settings on cloud dependency
...
This feature got a lot of regression due to its dependency on dropbox,
google drive and one drive implementation. This modification removes
such dependecy and allow users to set their settings location - any
cloud location path and even customized local location.
2015-07-08 13:33:53 +02:00
Don Ho
4ace901a07
[UPDATE] Method getContextMenuFromXmlTree refactoring
...
The method getContextMenuFromXmlTree of NppParameters is too long to
maintain. Making 2 new methods to make the method in question more
readable.
2015-06-14 17:49:27 +02:00
Don HO
3ff0ad484d
Merge pull request #151 from NN---/EnumFonts
...
[UPDATE] Use updated prototype of EnumFontFamExProc.
2015-06-06 14:34:50 +02:00
Don Ho
bc94d07766
[UPDATE] Unprecompile headers (part 4 - final)
2015-06-03 00:55:28 +02:00
Don HO
ea4b409c3d
Merge pull request #149 from milipili/xml-memory-leaks
...
[BUG_FIXED] fixed minor memory leak when exporting the parameters to XML.
2015-06-01 23:36:30 +02:00
NN
485c7f21d0
Use correct prototype of EnumFontFamExProc.
2015-06-01 21:09:10 +03:00
Don Ho
e9e710a3d4
[UPDATE] Unprecompile headers (part 2)
2015-05-31 22:40:07 +02:00
milipili
25b3a712fb
fixed minor memory leak when exporting the parameters to XML
...
When writing the parameters as a XML file (when the application quits), a new
node was created but not destroyed (`InsertEndChild` makes a clone of the
given node).
2015-05-31 21:27:27 +02:00
Don Ho
b35e759d11
[UPDATE] Unprecompile headers
2015-05-31 15:57:17 +02:00
Andreas Jönsson
d0bafb7fba
Add more options for sorting.
...
User can now choose between lexicographic, integer and decimal sorting.
For decimal sorting there are two further options: decimal point ('.')
or decimal comma (',').
When doing integer/decimal sort, the parsing is not as strict as
before. E.g during integer sorting the program will interpret "123abc"
as 123.
Performance of integer sorting has been improved by 30%.
The implementation of sorting is delegated to classes which implement
the new "ISorter" interface. Unfortunately due to template issues most
of the code had to go in the header file.
2015-05-17 19:18:43 +02:00
Andreas Jönsson
1f4a1fb2e7
Optimize sort.
...
Remove custom, recursive implementation of quicksort which becomes too
slow to use after a couple of hundred lines.
2015-05-08 23:27:21 +02:00
Don HO
b02adce942
Merge branch 'master' of https://github.com/donho/notepad-plus-plus
2015-05-08 12:53:51 +02:00
Don HO
c40a6fc384
[UPDATE] Make project recompilable on VS2005
2015-05-08 12:53:32 +02:00
Don Ho
91f9751a85
[BUG_FIXED] Fix Setting on cloud for Google drive unrecognized regression.
2015-05-08 04:12:12 +02:00
Don Ho
ce9810ecb5
[NEW_FEATURE] Add "Restore last closed file" (Ctrl+Shift+T) feature.
2015-04-07 02:10:03 +02:00
Don Ho
3ed1e767b1
[BUG_FIXED] Fix Settings on Cloud Google Drive not working issue.
2015-04-06 18:29:59 +02:00
Don Ho
55099cb4b7
[BUG_FIXED] (Author: Alexander Riccio) Fix several bugs.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1352 f5eea248-9336-0410-98b8-ebc06183d4e3
2015-03-14 22:55:03 +00:00
Don Ho
b75fb7cb4a
[BUG_FIXED] Fix crash bug on loading dropbox settings.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1332 f5eea248-9336-0410-98b8-ebc06183d4e3
2015-02-04 01:12:41 +00:00
Don Ho
b1b6f01f34
[BUG_FIXED](Author: Pavel Nedev) Remove erroneous use of FreeLibrary(_hUser32).
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1330 f5eea248-9336-0410-98b8-ebc06183d4e3
2015-02-01 21:03:01 +00:00
Don Ho
bf76a3f5ee
[RELEASE] Notepad++ 6.7.1 Release.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1313 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-12-21 19:43:40 +00:00
Don Ho
ee67ab951f
[BUG_FIXED] Fix crash issue on quit Notepad++ while session snapshot period backup feature is on.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1286 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-11-11 13:20:38 +00:00
Don Ho
57633249ab
[NEW] Add C# in Function List.
...
[BUG_FIXED] Add "Block Uncomment" command in the Shortcut Mapper.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1281 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-10-28 22:09:55 +00:00
Don Ho
b50d2a9a29
[NEW] Add VS 2013 support.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1278 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-10-14 22:29:23 +00:00
Don Ho
c92f6cc91d
[NEW] Apply new file default settings on created new file (opened via commandline).
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1269 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-08-02 11:28:42 +00:00
Don Ho
b3abee8824
[BUG_FIXED] (Author: Andreas Jonsson) Fix the bug that "backslash is escape char for SQL" setting is not saved correctly.
...
[BUG_FIXED] (Author: Andreas Jonsson) Fix the bug that user cannot disable "backslash is SQL escape char" without restarting.
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1263 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-07-21 19:36:34 +00:00
Don Ho
e9ada08611
[NEW_FEATURE] Settings on cloud - Google Drive.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1258 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-06-30 15:54:40 +00:00
Don Ho
822693e106
[NEW] Add SQL ability.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1257 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-06-29 11:41:35 +00:00
Don Ho
c27ea30f0e
[ENHANCEMENT] Read dropbox database file instead of json file. Remove unnecessary and unstable component.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1256 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-06-28 00:53:11 +00:00
Don Ho
795678e3a2
[BUG_FIXED] Fix OneDrive detection error.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1255 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-06-26 23:13:40 +00:00
Don Ho
2683ec18ea
[BUG_FIXED] Fix a crash bug on Notepad++ start up.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1253 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-06-24 18:39:12 +00:00
Don Ho
e959002a69
[NEW_FEATURE] Settings on cloud - OneDrive.
...
git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1252 f5eea248-9336-0410-98b8-ebc06183d4e3
2014-06-24 18:13:01 +00:00