Merge remote-tracking branch 'upstream/master' into Dev_Master

This commit is contained in:
rkotten 2022-09-06 18:40:42 +02:00
commit d3c2d5d1ab
9 changed files with 21 additions and 17 deletions

View File

@ -34,7 +34,7 @@ UCD - (UCD)ARDET is an Encoding Detector Library
========================================================
Current BETA/RC Version 5.22.901.(build_#) (2022-09-01)
Current BETA/RC Version 5.22.902.(build_#) (2022-09-02)
========================================================
--------------------------------------------------------
@ -100,6 +100,10 @@ CHANGES Versions in Tools or Libraries:
FIXES:
--------------------------------------------------------
[.###.#]- .
[.902.1]- Try to fix printing scaling issue.
[.902.1]- Propagate default font to undefined-font styles.
[.902.1]- Remove wrong std. font selection.
[.902.1]- Font selection (if font face-name does not match to family-name).
[.901.1]- Bookmarks handling in case of delete (in-line, complete line, selection).
[.831.1]- Crash in SCI_FINDTEXTFULL caused by using wrong data structure.
[.830.1]- TAB (indent) usage in case of read-only mode sets doc modified flag.

View File

@ -2,7 +2,7 @@
[![Build status](https://img.shields.io/appveyor/ci/rizonesoft/notepad3/master.svg)](https://ci.appveyor.com/project/rizonesoft/notepad3/branch/master)
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.me/rizonesoft)
[![](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://www.paypal.com/donate/?hosted_button_id=7UGGCSDUZJPFE)
Notepad3 is a fast and light-weight Scintilla-based text editor with syntax highlighting. It has a small memory footprint, but is powerful enough to handle most programming jobs. [Download Notepad3 here](https://www.rizonesoft.com/downloads/notepad3).

View File

@ -1 +1 @@
901
902

View File

@ -352,10 +352,10 @@ BEGIN
MENUITEM SEPARATOR
POPUP "Change History Marker"
BEGIN
MENUITEM "Hide All Change Markers", IDM_VIEW_CHGHIST_NONE
MENUITEM "Show in Margin only", IDM_VIEW_CHGHIST_MARGIN
MENUITEM "Show in Document only", IDM_VIEW_CHGHIST_DOCTXT
MENUITEM "Show All Change Markers", IDM_VIEW_CHGHIST_ALL
MENUITEM "Ocultar todos los marcadores de cambio", IDM_VIEW_CHGHIST_NONE
MENUITEM "Mostrar sólo en el margen", IDM_VIEW_CHGHIST_MARGIN
MENUITEM "Mostrar sólo en el documento", IDM_VIEW_CHGHIST_DOCTXT
MENUITEM "Mostrar todos los marcadores de cambio", IDM_VIEW_CHGHIST_ALL
END
MENUITEM SEPARATOR
MENUITEM "Indicar &hipervínculos\tCtrl+Alt+W", IDM_VIEW_HYPERLINKHOTSPOTS

View File

@ -352,10 +352,10 @@ BEGIN
MENUITEM SEPARATOR
POPUP "Change History Marker"
BEGIN
MENUITEM "Hide All Change Markers", IDM_VIEW_CHGHIST_NONE
MENUITEM "Show in Margin only", IDM_VIEW_CHGHIST_MARGIN
MENUITEM "Show in Document only", IDM_VIEW_CHGHIST_DOCTXT
MENUITEM "Show All Change Markers", IDM_VIEW_CHGHIST_ALL
MENUITEM "Ocultar todos los marcadores de cambio", IDM_VIEW_CHGHIST_NONE
MENUITEM "Mostrar sólo en el margen", IDM_VIEW_CHGHIST_MARGIN
MENUITEM "Mostrar sólo en el documento", IDM_VIEW_CHGHIST_DOCTXT
MENUITEM "Mostrar todos los marcadores de cambio", IDM_VIEW_CHGHIST_ALL
END
MENUITEM SEPARATOR
MENUITEM "Indicar &hipervínculos\tCtrl+Alt+W", IDM_VIEW_HYPERLINKHOTSPOTS

View File

@ -352,10 +352,10 @@ BEGIN
MENUITEM SEPARATOR
POPUP "Change History Marker"
BEGIN
MENUITEM "Hide All Change Markers", IDM_VIEW_CHGHIST_NONE
MENUITEM "Show in Margin only", IDM_VIEW_CHGHIST_MARGIN
MENUITEM "Show in Document only", IDM_VIEW_CHGHIST_DOCTXT
MENUITEM "Show All Change Markers", IDM_VIEW_CHGHIST_ALL
MENUITEM "Masquer tous les marqueurs de modification", IDM_VIEW_CHGHIST_NONE
MENUITEM "Afficher uniquement dans la marge", IDM_VIEW_CHGHIST_MARGIN
MENUITEM "Afficher uniquement dans le document", IDM_VIEW_CHGHIST_DOCTXT
MENUITEM "Afficher tous les marqueurs de modification", IDM_VIEW_CHGHIST_ALL
END
MENUITEM SEPARATOR
MENUITEM "Indi&cateurs de liens\tCtrl+Alt+W", IDM_VIEW_HYPERLINKHOTSPOTS

View File

@ -3,7 +3,7 @@
<assemblyIdentity
name="Rizonesoft.Notepad3"
processorArchitecture="*"
version="5.22.901.1"
version="5.22.902.1"
type="win32"
/>
<description>Notepad3 beta</description>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 106 KiB

After

Width:  |  Height:  |  Size: 106 KiB

View File

@ -8,7 +8,7 @@
#define SAPPNAME "Notepad3"
#define VERSION_MAJOR 5
#define VERSION_MINOR 22
#define VERSION_REV 901
#define VERSION_REV 902
#define VERSION_BUILD 1
#define SCINTILLA_VER 530
#define LEXILLA_VER 519