File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff 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
2033Bug/regression fixes:
21341 . "Copy value" / "Copy" not always return complete text
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ const TCHAR JSON_ERR_PARSE[] = TEXT("Unable to parse JSON. Please ens
4646const TCHAR JSON_ERR_VALIDATE[] = TEXT(" An error occurred while parsing the JSON. Check the current selection for the potential issue." );
4747const TCHAR JSON_ERR_VALIDATE_SUCCESS[] = TEXT(" The JSON appears valid. No errors were found during validation." );
4848const 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
5151const TCHAR STR_VERSION[] = TEXT(" Version: " );
5252const TCHAR STR_COPY[] = TEXT(" Copy" );
Original file line number Diff line number Diff line change 167167//
168168
169169VS_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"
You can’t perform that action at this time.
0 commit comments