You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ADDED
- "Make this visible" option to tree view's right click context menu
to undo code folding in Notepad++ as necessary
to make the node visible in the editor.
Responds to issue #103.
FIXED
- Bug where s_join in RemesPath would treat some non-strings as empty strings,
rather than correctly throwing an error.
CODEBASE (no change to public API)
- Removed the unnecesary IScintillaGateway interface,
because it makes no sense to create an interface that will
only have one implementation.
Now all references to IScintillaGateway instead go to ScintillaGateway.
- In CI_build.yml, update actions/checkout to v6, addressing dependabot PR #109.
DOCS
- Make docs for the "Dump selected..." commands easier to read.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
52
52
53
53
## [9.0.0] - (UNRELEASED) YYYY-MM-DD
54
54
55
+
### Added
56
+
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
+
55
59
### Fixed
56
60
57
61
1.__Correctly parse all ANSI files.__ Previously JsonTools assumed that Notepad++ used UTF8 to internally represent every document, and while that appears to have worked fine for most encodings, it would specifically fail on ANSI-encoded documents containing non-ASCII.
@@ -64,6 +68,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
64
68
3. Minor bug where some JsonGrepper tests would always fail because they queried an external API that had previously returned JSON but now returns HTML.
65
69
4. Bug where editing a document in [multi-selection mode](/docs/README.md#working-with-selections) would sometimes cause selections to be forgotten (fixed in [v8.4.0.3](https://github.com/molsonkiko/JsonToolsNppPlugin/commit/16f0358274c662273a2015994c5ab22d22fd23ab))
66
70
5. Bug ([issue 104](https://github.com/molsonkiko/JsonToolsNppPlugin/issues/104)) where [error form](/docs/README.md#error-form-and-status-bar) would not always re-parse the document after the `Refresh with current errors` right-click context menu item on the error form was clicked.
71
+
6. Bug where [`s_join` RemesPath function](/docs/RemesPath.md#non-vectorized-functions) would not throw an exception when the second argument was an array containing non-strings (previously it would silently treat nulls, objects and arrays as though they were empty strings).
0 commit comments