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
FIX: bug where JsonTools was supposed to send a NULL-terminated string
to Notepad++ in the SetText and InsertText methods,
but I was not appending the NULL char.
By addressing this issue, I removed the necessity for the RemoveTrailingSOH method,
which means that JsonTools can output files ending with the SOH character.
FIX: Issue with JsonGrepperTests where I was expecting JSON from a weather.gov API
that had switched to returning HTML.
FIX: Potential race condition with the automatic-parse-after-edit thread
during plugin cleanup.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
48
48
- GrepperForm loses its JSON permanently when the buffer associated with its treeview is deleted.
49
49
- 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.
50
50
- 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`.
51
+
- 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
+
53
+
## [9.0.0] - (UNRELEASED) YYYY-MM-DD
54
+
55
+
### Fixed
56
+
57
+
1. Bug where JsonTools could not set the text of a file to end with the SOH character (ASCII code `\x01`)
58
+
2. Bug where some JsonGrepper tests would always fail because they queried an external API that had previously returned JSON but now returns HTML.
0 commit comments