Don HO
c6d14e9245
Notepad++ v8 release
2021-06-07 01:18:21 +02:00
Don Ho
06657c82b3
Remove Microsoft Bing from search engines for Search on Internet command
...
Ref: https://www.reuters.com/technology/microsoft-bing-raises-concerns-over-lack-image-results-tiananmen-tank-man-2021-06-04/
When a search engin does the censorship instead of its job, the search result loses its quality and it's not reliable anymore.
Hence, Microsoft Bing is removed from Notepad++ for "Search on Internet" command.
2021-06-06 16:42:45 +02:00
mere-human
0e1a4663d9
Fix append extension feature not working in save dialog
...
In some cases, checkbox was found instead of OK button and window procedure was overriden for it. Now, the OK button is identified using style and label checks.
Also, in some cases IFileDialog::GetFileTypeIndex() returns the old value. To fix that, always remember the file type selected.
Fix #9939 , close #9945
2021-06-06 14:32:18 +02:00
Udo Hoffmann
f9d6fb9e31
Close all tabs in stack with single action
...
Shift-click closes the whole stack.
Fix #8922 , close #9930
2021-06-03 02:21:08 +02:00
Thomas De Rocker
511893680b
Update dutch.xml
...
Close #9877
2021-06-03 01:38:17 +02:00
rddim
e211cbaa28
Update Bulgarian localization
...
Close #9878
2021-06-03 01:35:34 +02:00
Patriccollu
2ce57b88ce
Update Corsican translation
...
Close #9893
2021-06-03 01:32:50 +02:00
Sergio Flor
3ef5f11aa2
Updating spanish.xml
...
Resolves issue #4401 "Spanish translation: Search dialog items do not fit (translated texts too long)". Now the text fits the search dialog
Before:
<Item id="1703" name="&. se ajusta a línea nueva"/>
Now:
<Item id="1703" name="&. para nueva línea"/>
Fix #4401 , close #9898
2021-06-03 01:23:46 +02:00
spkprs
17b7a0eaf4
Update greek.xml
...
Updated (partially till 80%) whole file from eng.xml.
Close #9899
2021-06-03 01:20:24 +02:00
~GOLEM~
e524a64b3a
Update russian.xml
...
Close #9917
2021-06-03 01:13:12 +02:00
Edditoria
0221639cc9
Update Hong Kong Cantonese: Update access keys on menu
...
As at commit f7a04ca
of this repo.
View of shortcuts:
Original: Display all shortcuts in form of `Example(X)`
Now: Display the shortcuts in English word, if any.
i.e. `E&xample`
Originally it is to follow the pattern of Taiwan translation.
However, the previous commit had added a lot of shortcuts.
It is better to adapt new strategy for the UI.
Close #9920
2021-06-03 01:09:14 +02:00
yasmise
2c1b01f7c6
update japanese.xml
...
Close #9927
Update translation according this commits:
* Add access keys to non-keyboard-accessible menu items (32dce9b54e
)
2021-06-03 01:06:26 +02:00
kubalav
60cd6c463f
Update Slovak translation
...
Close #9934
2021-06-03 00:44:24 +02:00
Don HO
066b694d56
Remove unecessary codes
2021-06-03 00:13:38 +02:00
Adam D. Walling
5908166a63
Invert lightness of toolbar icon for dark mode
...
Close #9935
2021-06-02 23:38:25 +02:00
Don HO
8a898bae3f
Add new API NPPM_ADDTOOLBARICON_FORDARKMODE for darkmode
...
Usage:
void NPPM_ADDTOOLBARICON_FORDARKMODE(UINT funcItem[X]._cmdID, toolbarIconsWithDarkMode iconHandles)
This new API NPPM_ADDTOOLBARICON_FORDARKMODE is for replacing obsolete NPPM_ADDTOOLBARICON which doesn't support the dark mode.
2 formats / 3 icons are needed: 1 * BMP + 2 * ICO
All 3 handles below should be set so the icon will be displayed correctly if toolbar icon sets are changed by users, also in dark mode.
struct toolbarIconsWithDarkMode {
HBITMAP hToolbarBmp;
HICON hToolbarIcon;
HICON hToolbarIconDarkMode;
};
Close #9928
2021-06-01 01:36:07 +02:00
Don HO
219dfda6b3
Remove HexEdit via installer due to its crash
...
Ref: https://github.com/chcg/NPP_HexEdit/issues/51
2021-05-30 11:51:25 +02:00
Adam D. Walling
ceca91557b
Fix disabled checkboxes in dark mode
...
Fix the following issue:
https://community.notepad-plus-plus.org/topic/21228/notepad-v8-release-candidate-2?_=1622335986466
Close #9919
2021-05-30 07:52:48 +02:00
Don HO
46b3e3c7b2
Fix wrong plugin toolbar icon display if the ICO format is absent
...
An empty icon will be displayed after this fix.
2021-05-29 16:56:02 +02:00
Don HO
f7a04caca7
Update uzbek.xml
2021-05-29 13:26:36 +02:00
Don HO
5758b99b3e
Fix crash on Dark mode under Windows 8
...
Fix #9911
2021-05-27 19:32:28 +02:00
Don HO
51207a4fe5
Refactoring some code of Dark mode
2021-05-27 03:56:22 +02:00
Don HO
9a2dcaa5f8
Fix plugin icons added on toolbar not taking effect for Fluent UI icon sets
...
NPPM_ADDTOOLBARICON take structure
struct toolbarIcons {
HBITMAP hToolbarBmp;
HICON hToolbarIcon;
};
as argument, both hToolbarBmp & hToolbarIcon should not be null to take effect.
2021-05-22 01:49:50 +02:00
Don HO
156bde258f
Fix the tabbar incoherent alternate icons settings while switching in dark mode
2021-05-20 19:08:32 +02:00
Don HO
585608b456
Update english_customizable.xml
2021-05-18 22:09:11 +02:00
debiedowner
32dce9b54e
Add access keys to non-keyboard-accessible menu items
...
Fix #9875 , close #9876
2021-05-18 20:41:18 +02:00
Don HO
6d25b8b908
Add DarkModeDefault.xml into installation package
2021-05-18 19:09:04 +02:00
Don HO
19c3035d5a
Fix Dark mode default theme not being applied bug
2021-05-18 17:06:42 +02:00
Don HO
6c19e88242
Fix "Match Whole Word" option being enabled in RegEx Search
...
Fix #9766
2021-05-16 03:23:10 +02:00
Don HO
0faa139234
Revert "Fix for 'Match Whole Word' option being enabled in Regular Expression Search"
...
This reverts commit f249fc5902
due to a regression.
To reproduce the regression:
1. Ctrl+f and set to "Regular expression" as Search mode.
2. Press Shift+Ctrl+f to bring up "Find in Files".
3. Note that "Match whole word only" checkbox is missing, and cannot be made to appear.
Ref: #9766 & #9792
2021-05-16 02:03:30 +02:00
rddim
da352ef5ad
Fix duplicated words in Auto-Completion pop-up window
...
Fix #9711 , close #9867
2021-05-15 23:32:29 +02:00
Scott Sumner
e623e76d0b
Rename sort randomly menu item, move it and reverse lines out of sorting section
...
Close #9868
2021-05-15 22:56:38 +02:00
Don HO
71fabb1567
Remove the access of Live Support on Gitter
2021-05-15 13:30:28 +02:00
ccuser44
93c1edd934
Update finnish.xml
...
Example was not translated.
In finnish it is esimerkki and in this context Esimerkiksi
Close #9787
2021-05-15 01:23:38 +02:00
conky77
a26b1f443d
Update Italian.xml
...
Close #9669
2021-05-15 01:18:05 +02:00
Don HO
e248e29f7f
Update lacalization files (Taiwanese Madarin & French)
2021-05-14 12:31:25 +02:00
kubalav
b2f3d573fb
Update Slovak translation
...
Close #9695
2021-05-13 14:23:20 +02:00
yasmise
37863f47a0
update japanese.xml to v7.9.6
...
Follow-up to this commit:
* Catch regex search exceptions and show exception message (926e6e97d8
)
2021-05-13 14:12:49 +02:00
schnurlos
f42748d4b3
Update german.xml
...
Following 926e6e97d8
, 6834d796ab
& 874f0d0140
Close #9708
2021-05-13 14:02:21 +02:00
Iñigo Zendegi
7196c1ab7a
Update basque.xml (full translation)
...
Close #9826
2021-05-13 13:17:05 +02:00
xomx
d173b24f6d
Update czech translation
...
Close #9749
2021-05-13 13:11:52 +02:00
Scott Sumner
a1abe867b9
Add Ctrl+C and Ctrl+A standard keyboard accelerators to Search results context menu
...
Fix #9824 , close #9836
2021-05-13 10:10:54 +02:00
rddim
ddc551e0d2
Update Bulgarian localization
...
Close #9697
2021-05-13 09:21:12 +02:00
miwob
70d7b8504c
Update C keyword list
...
1. Add true/false as per c99 stdbool.h
2. Alphabetize list
Close #9453
2021-05-13 03:32:09 +02:00
ArkadiuszMichalski
50d204f2a8
Update polish.xml
...
Close #9856
2021-05-13 03:14:25 +02:00
Hugo Carvalho
d75068f62e
Update Portuguese translation
...
Close #9737
2021-05-13 01:54:25 +02:00
Edditoria
bcb6911527
Update localization: Hong Kong Cantonese...
...
As at commit 9c66ff9
of this repo.
Close #9773
2021-05-13 01:49:28 +02:00
Tmp341
58b33ecbd7
Update Turkish
...
* According to 2e7c5e3
, 926e6e9
, 6834d79
, 874f0d0
, 4369718
, 1ae39c2
, cbf3d2c
, 1a9307b
, e3dbeda
, a0177e8
, 0dbdef3
and b657f58
commits.
Close #9843
2021-05-13 00:15:26 +02:00
Patriccollu
6162e1ed5c
Update Corsican translation
...
Close #9714
2021-05-12 23:45:21 +02:00
~GOLEM~
8df5dc41c5
Update russian.xml
...
Close #9718
2021-05-12 21:10:35 +02:00