Don HO
47481c76e8
Update CONTRIBUTING.md
...
Define the braces position in C++ header files.
2022-02-17 13:50:48 +01:00
Don Ho
2df765e189
Code enhancement: prevent from signed integer overflow
...
Ref:
94154b0f0e (commitcomment-66609009)
2022-02-16 19:13:35 +01:00
Don Ho
51b1c9377c
Fix incorrect message on double click on search result regression
...
This regression was inserted by commit c0be50494c
(PR #11107 ).
Fix #11215 , Fix #11106
2022-02-16 18:22:47 +01:00
Don HO
5c02505998
Notepad++ v8.3.1 release
...
Boycotting Beijing 2022 continues in this release
2022-02-15 16:32:03 +01:00
Hugo Carvalho
92eb49f6af
Update portuguese.xml
...
For commits: 85e7207eef
2c1090e554
6392508cd1
Close #11176
2022-02-12 18:15:27 +01:00
Thomas De Rocker
c5f692815d
Update dutch.xml
...
Close #11174
2022-02-12 18:13:13 +01:00
rddim
4612d0aafb
Update Bulgarian localization
...
Close #11154
2022-02-12 18:11:24 +01:00
yasmise
2d9545dd3b
update japanese.xml
...
Added translation for these commits:
* Enhance error handling while opening file (85e7207eef
)
* Update english.xml (2c1090e554
)
Close #11151
2022-02-12 18:08:53 +01:00
kubalav
bde3da46fe
Update Slovak translation to 8.3.0
...
Close #11149
2022-02-12 16:39:08 +01:00
Patriccollu
f3b11d16d4
Update Corsican translation for Notepad++ 8.3.1
...
Close #11116
2022-02-12 16:33:56 +01:00
Artem Polivanchuk
30651e94ff
Update belarusian.xml
...
Close #11108
2022-02-12 16:30:56 +01:00
xomx
5d78c7f08e
Update czech.xml to v8.2.2
...
- WantToOpenHugeFile
- added missing translations for Print Header & Footer Variable combobox items
- better meaning for some of the edit-onSelection items
- some previous typing error corrections
Close #11100
2022-02-12 16:27:22 +01:00
~GOLEM~
8be6bcc708
Update russian.xml to v8.3.1
...
Close #11094
2022-02-12 16:16:57 +01:00
Daniel Fuchs
0c83175b59
Fix conflicting German translations
...
* make two functions available in Shortcut Mapper by improving their translation
Close #11092
2022-02-12 14:52:46 +01:00
Regmos
79d1a2230d
Update danish.xml
...
Close #11062
2022-02-12 14:46:56 +01:00
Tmp341
c2af4a8b3d
Update Turkish localization
...
* * According to d9ef4be
, 9be4eeb
, 78c6554
, 68d339d
, e048f83
, 85e7207
and 2c1090e
commits.
* I don't know how i missed the removal of id=42079, but removed now (line 178).
Close #11183
2022-02-12 14:31:38 +01:00
xomx
fc1365ea99
Fix target directory parameter ignored by x64 installer issue
...
Fix for the /D= NSIS param regression (x64)
Detailed explanation is in the .onInit patch comments.
This regression has been caused by the previous PR: #11013 .
Fix #11072 , close #11158
2022-02-12 03:29:18 +01:00
Don Ho
d372894e78
Fix typo and reword contribution note
...
Fix #11058
2022-02-10 14:23:27 +01:00
Don Ho
94154b0f0e
Code enhancement: Fix comparison of different signs integers
2022-02-09 20:06:59 +01:00
Don Ho
785453147b
Inialize all memebers of struct (instead of its 1st member) to zero
...
The curly brace initiator in C/C++ is quite confusing (at least to me).
The C style array uses {0} for initializing all the array to 0,
whereas C++ struct uses {0} for initializing only the 1st member's value to 0.
If we want to set all members' value in a struct to 0, we should use {} instread of {0}.
This commit fix the error which initialize only the 1st member's value to 0 in the structures.
Ref:
1. https://docs.microsoft.com/en-us/cpp/cpp/initializing-classes-and-structs-without-constructors-cpp?view=msvc-170
2. https://en.cppreference.com/w/c/language/struct_initialization
2022-02-09 16:41:56 +01:00
Don Ho
2e9342ae24
Code enhancement: Initialize member variables
2022-02-09 04:40:16 +01:00
Daniel Fuchs
dee3bad29d
Make variable list combobox translatable in printing preferences
...
The list of variables defined under Preferences > Print can be translated using the following method:
https://github.com/notepad-plus-plus/notepad-plus-plus/pull/11093/files#diff-a6ac7ceba70d88bf1547fd1defd760bd55052dcdb78c44f9d46d99ef1f450472R999-R1007
However as pointed out by others this will break the "Add" button, so translation is currently not possible. The result is, that nothing is added to the current field.
This commit makes translation possible without breaking "Add" feature.
Fix #11114 , close #11115
2022-02-08 19:40:23 +01:00
Don Ho
987a944ada
Update french.xml & taiwaneseMandarin.xml
2022-02-08 19:17:27 +01:00
Don Ho
6392508cd1
Solve the confilt in english.xml
2022-02-08 18:44:59 +01:00
Daniel Fuchs
2c1090e554
Update english.xml
...
English localization for #11047
* add translation for WantToOpenHugeFile as referenced by commit 46011e3
* add previously untranslated drop-down items in Preferences > Print
Close #11093
2022-02-08 18:40:41 +01:00
Don Ho
f815b7057f
Revert "Enable backup on save (simple) feature by default"
...
This reverts commit 40fbae1f76
.
https://github.com/notepad-plus-plus/notepad-plus-plus/issues/10725#issuecomment-1032106977
2022-02-08 02:10:23 +01:00
xomx
85e7207eef
Enhance error handling while opening file
...
In FileManager::loadFileData method:
1. Fix unnecessary GCC crashes when opening larger files in 32-bit Notepad++ binary.
2. Take into account and report correctly also other possible Scintilla error states there (than the previously handled SC_STATUS_BADALLOC).
3. Catch and report correctly also exceptions not handled by the Scintilla exception handler.
4. Catch and report correctly also Notepad++ code exceptions there.
Fix #11103 , close #11112
2022-02-07 23:34:54 +01:00
Don Ho
9baaef786b
Fix Path Completion not working regression
...
Fix #11147
2022-02-07 23:17:07 +01:00
Don Ho
6c345e907b
Optimize setting image call in auto-completion
...
In PR #11088 the calling scinitilla is not optimized:
SCI_REGISTERIMAGE & SCI_AUTOCSETTYPESEPARATOR need to be called only once.
2022-02-07 20:12:45 +01:00
VinsWorldcom
c394a890aa
Add icons on function items of auto-completion to distiguish from word items
...
Fix #11087 , close #11088
2022-02-07 19:01:47 +01:00
mere-human
b5a5baf13b
Fix file dialog "Append extension" checkbox not working in empty dir
...
Use hooks for keyboard and window procedure instead of subclassing controls.
Use a handle map for transferring instance data to the hook procedure.
This approach should be more reliable than the previous one.
Fix #10436 , close #11050
2022-02-07 15:38:21 +01:00
Don Ho
bbe8a7db26
Restore auto-completion insert selection default setting (ENTER & TAB)
...
Since auto-completion feature appeared in Notepad++, its selected item insertion default setting has had been always both "ENTER" & "TAB" keys. In commit 68d339d224eba0fa7aeb2e0f7526b3311cc02c5a:
68d339d224
this default setting was changed to only "TAB", that made a lot users who used "ENTER" for insertion unhappy.
In this commit the old default value has been restored. Users can always change this behaviour in auto-completion settings of preferences dialog.
Ref:
https://community.notepad-plus-plus.org/topic/22425/notepad-v8-2-1-release/34?_=1644179730538
2022-02-06 23:45:04 +01:00
xomx
deb99ae45b
Fix cmdline '-n' param not working and wrong cursor position regression
...
When file is opened via "Edit with Notepad++", cursor position is placed on the 2nd position instead of the first.
This fixes the signed/unsigned mismatch there arisen from the current 2GB+ changes.
Fix #11131 , close #11132
2022-02-05 19:23:13 +01:00
ArkadiuszMichalski
9fccc37987
Fix Dark Mode Customized tone link part is not persistent
...
Fix #11095 , close #11102
2022-02-04 18:02:25 +01:00
Christian Grasser
c0be50494c
Fix NPPM_RELOADFILE with 8.3 path containing bug
...
Fixes issue seen with pythonscript testcase https://github.com/bruderstein/PythonScript/blob/master/PythonScript/python_tests/tests/NotepadWrapperTestCase.py#L383-L397 using NPPM_RELOADFILE with a 8.3 path containing.
Fix #11106 , close #11107
2022-02-04 17:17:37 +01:00
Don HO
73a4cdc104
Fix XML tag mark deletion crash Notepad++ v8.3
...
The uninitialized structure members contain the random value.
The crash is fixed by initializing them with a default value.
Fix #11128
2022-02-04 15:20:55 +01:00
Don HO
ae6361fa35
Notepad++ release v8.3 (Boycott Beijing 2022)
2022-02-03 23:35:12 +01:00
Don HO
1c6055ecf7
Better management for unstable plugin
2022-02-03 02:46:29 +01:00
Don HO
bf82faea5e
Adapt Installer script for the unstable plugins
2022-02-02 16:51:06 +01:00
Don HO
807271f989
Fix NSIS build error
2022-01-31 21:28:12 +01:00
Don Ho
720bb3f74b
Remove unstable 64 bits plugins during the installation
...
Fix #11104
2022-01-31 05:03:18 +01:00
Don Ho
993506af0a
Fix Find in Files crash
2022-01-31 03:55:28 +01:00
Don Ho
6d311e102e
Fix 2 logic error (wrong copied/pasted)
...
ref:
774321e099 (r64847350)
2022-01-29 15:11:59 +01:00
Don Ho
4077ec2f69
Fix crash regression in UDL dialog
...
Fix #11101
2022-01-28 23:27:27 +01:00
Don Ho
774321e099
Improve 200MB+ files loading/editing performance
...
While loading files over more 200MB, they are all considered as Normal text files, that improve loading speed (for example for huge XML or SQL file).
Also, the feature as braces match, smart highlightingg, tag match and URL colorization are disabled for not penalizing the editing performance.
2022-01-28 19:49:58 +01:00
Don Ho
db3308329b
Fix crash on opening file with wild card characters
...
And redefining Sci_PositionCR to 64 bits on x64 build for managing 2GB+ files.
(ref: https://github.com/notepad-plus-plus/notepad-plus-plus/pull/11047#issuecomment-1021540298 )
Fix #11098
2022-01-28 04:17:45 +01:00
Don Ho
44004d41d4
Enhance large file loading: disable 4 features for large files
...
Dur to the performaance issue, the loading of large files will disable automatically the following feature:
1. auto-completion (only for large files)
2. snapshot periode backup (only for large files)
3. backup on save (only for large files)
4. word wrap (persistent for all files. Need to enable it manually)
Ref: https://community.notepad-plus-plus.org/topic/22438/notepad-v8-2-2-release-candidate/6?_=1643194615292
Fix #8802
2022-01-27 16:12:50 +01:00
Don Ho
edabe44000
Disable Word Wrap while load a 2GB+ file
2022-01-26 18:44:58 +01:00
Don Ho
2132505cba
Fix unsaved untitled files not being opened on the next session regression
...
Fix #11080
2022-01-26 17:49:37 +01:00
Don Ho
961a133a60
Remove 2GB file open restriction for x64 binary
...
Fix #10921 , close #11047
2022-01-25 18:08:05 +01:00