Skip to content

Commit 3c5616a

Browse files
committed
JSONViewer release v2.0.8.0
1 parent 830b2b1 commit 3c5616a

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@ This plugin is meant to display a JSON string in a Treeview. It also marks the e
1616

1717
## Latest Updates:
1818

19+
### 2.0.8.0
20+
21+
1. New feature:
22+
1. Sort ascending by key
23+
2. Add file name in the title for visibility
24+
25+
26+
2. Bug/regression fixes:
27+
1. Updated license text on UI as per GitHub link
28+
2. Excplicit callout for no support on multi selection
29+
3. Some other minor code and UI enhancements
30+
31+
1932
### 2.0.7.0
2033
Bug/regression fixes:
2134
1. "Copy value" / "Copy" not always return complete text

src/NppJsonViewer/Define.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const TCHAR JSON_ERR_PARSE[] = TEXT("Unable to parse JSON. Please ens
4646
const TCHAR JSON_ERR_VALIDATE[] = TEXT("An error occurred while parsing the JSON. Check the current selection for the potential issue.");
4747
const TCHAR JSON_ERR_VALIDATE_SUCCESS[] = TEXT("The JSON appears valid. No errors were found during validation.");
4848
const TCHAR JSON_ERR_SAVE_SETTING[] = TEXT("Could not save the settings. Please try again.");
49-
const TCHAR JSON_ERR_MULTI_SELECTION[] = TEXT("Multiline selection is not currently supported in Json Viewer.");
49+
const TCHAR JSON_ERR_MULTI_SELECTION[] = TEXT("JSON-Viewer does not currently support multiple selections.");
5050

5151
const TCHAR STR_VERSION[] = TEXT("Version: ");
5252
const TCHAR STR_COPY[] = TEXT("Copy");

src/NppJsonViewer/resource.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,8 @@ END
167167
//
168168

169169
VS_VERSION_INFO VERSIONINFO
170-
FILEVERSION 2,0,7,0
171-
PRODUCTVERSION 2,0,7,0
170+
FILEVERSION 2,0,8,0
171+
PRODUCTVERSION 2,0,8,0
172172
FILEFLAGSMASK 0x3fL
173173
#ifdef _DEBUG
174174
FILEFLAGS 0x1L
@@ -185,12 +185,12 @@ BEGIN
185185
BEGIN
186186
VALUE "CompanyName", "Kapil Ratnani"
187187
VALUE "FileDescription", "Notepad++ plugin for JSON file"
188-
VALUE "FileVersion", "2.0.7.0"
188+
VALUE "FileVersion", "2.0.8.0"
189189
VALUE "InternalName", "JSONViewer"
190190
VALUE "LegalCopyright", "Copyright � 2024"
191191
VALUE "OriginalFilename", "NPPJSONViewer.dll"
192192
VALUE "ProductName", "JSONViewer plugin for Notepad++"
193-
VALUE "ProductVersion", "2.0.7.0"
193+
VALUE "ProductVersion", "2.0.8.0"
194194
END
195195
END
196196
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)