Skip to content

Commit e100722

Browse files
committed
Release v8.5
No changes to code since v8.4.0.8 Tested on many versions of Notepad++ (oldest: v7.3.3, newest: v8.9.2)
1 parent c8c5b1c commit e100722

6 files changed

Lines changed: 61 additions & 59 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4949
- Since v7.0, holding down `Enter` in a multiline textbox (like the [tree viewer query box](/docs/README.md#remespath)) only adds one newline when the key is lifted.
5050
- Maybe use pre-7.1 (dictionary-based rather than indicator-based) [selection remembering](/docs/README.md#working-with-selections) for Notepad++ 8.5.5 and earlier? Indicators are risky with those older NPP's because of the lack of `NPPM_ALLOCATEINDICATOR`.
5151
- Hard-to-reproduce issue where sometimes clicking a treenode in regex search results does not navigate to the correct location in the document (should navigate to the start of the match). Appears to only happen when there is no capture group. It's an all-or-nothing issue; either none of the treenodes navigate to the correct location or all of them do.
52+
- Add warning to users when they attempt to use features like [Path to current position](/docs/README.md#path-to-current-position) on a non-UTF8 file with non-ASCII characters (see release notes for [8.5.0](#850---2026-03-03) below), since those features currently will simply not work correctly and the user will only understand why if they read the documentation.
5253

53-
## [9.0.0] - (UNRELEASED) YYYY-MM-DD
54+
## [8.5.0] - 2026-03-03
5455

5556
### Added
5657

57-
1. New [`Make this visible` option](/docs/README.md#reveal-tree-nodes-hidden-by-code-folding-added-in-v9) on the tree view's right click context menu to reveal nodes hidden by code folding. This was first requested in [issue 103](https://github.com/molsonkiko/JsonToolsNppPlugin/issues/103).
58+
1. New [`Make this visible` option](/docs/README.md#reveal-tree-nodes-hidden-by-code-folding-added-in-v8.5) on the tree view's right click context menu to reveal nodes hidden by code folding. This was first requested in [issue 103](https://github.com/molsonkiko/JsonToolsNppPlugin/issues/103).
5859

5960
### Fixed
6061

JsonToolsNppPlugin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// Build Number
2929
// Revision
3030
//
31-
[assembly: AssemblyVersion("8.4.0.8")]
32-
[assembly: AssemblyFileVersion("8.4.0.8")]
31+
[assembly: AssemblyVersion("8.5.0.0")]
32+
[assembly: AssemblyFileVersion("8.5.0.0")]

JsonToolsNppPlugin/Release_x64.zip

-343 Bytes
Binary file not shown.

JsonToolsNppPlugin/Release_x86.zip

-463 Bytes
Binary file not shown.

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,9 +435,9 @@ This functionality can also be used to select regex search results or values fro
435435

436436
Beginning in [v6.1](/CHANGELOG.md#610---2023-12-28), using this option from the root treenode selects all remembered selections when in [multi-selection mode](#working-with-selections), and selects every JSON line in [JSON lines](#json-lines-documents) mode.
437437

438-
## Reveal tree nodes hidden by code folding *(added in v9)*
438+
## Reveal tree nodes hidden by code folding *(added in v8.5)*
439439

440-
Beginning in [v9](/CHANGELOG.md#900---unreleased-yyyy-mm-dd), the right click context menu for tree nodes has a `Make this visible` option that undoes code folding to make them visible.
440+
Beginning in [v8.5](/CHANGELOG.md#850---2026-03-03), the right click context menu for tree nodes has a `Make this visible` option that undoes code folding to make them visible.
441441

442442
Below is an image of the tree for a document just before using this command. Note that the selected node is hidden by two layers of code folding.
443443

0 commit comments

Comments
 (0)