File tree 3 files changed +18
-5
lines changed
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
16
16
17
17
## Latest Updates:
18
18
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
+
19
32
### 2.0.7.0
20
33
Bug/regression fixes:
21
34
1 . "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
46
46
const TCHAR JSON_ERR_VALIDATE[] = TEXT(" An error occurred while parsing the JSON. Check the current selection for the potential issue." );
47
47
const TCHAR JSON_ERR_VALIDATE_SUCCESS[] = TEXT(" The JSON appears valid. No errors were found during validation." );
48
48
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 ." );
50
50
51
51
const TCHAR STR_VERSION[] = TEXT(" Version: " );
52
52
const TCHAR STR_COPY[] = TEXT(" Copy" );
Original file line number Diff line number Diff line change 167
167
//
168
168
169
169
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
172
172
FILEFLAGSMASK 0x3fL
173
173
#ifdef _DEBUG
174
174
FILEFLAGS 0x1L
@@ -185,12 +185,12 @@ BEGIN
185
185
BEGIN
186
186
VALUE "CompanyName", "Kapil Ratnani"
187
187
VALUE "FileDescription", "Notepad++ plugin for JSON file"
188
- VALUE "FileVersion", "2.0.7 .0"
188
+ VALUE "FileVersion", "2.0.8 .0"
189
189
VALUE "InternalName", "JSONViewer"
190
190
VALUE "LegalCopyright", "Copyright � 2024"
191
191
VALUE "OriginalFilename", "NPPJSONViewer.dll"
192
192
VALUE "ProductName", "JSONViewer plugin for Notepad++"
193
- VALUE "ProductVersion", "2.0.7 .0"
193
+ VALUE "ProductVersion", "2.0.8 .0"
194
194
END
195
195
END
196
196
BLOCK "VarFileInfo"
You can’t perform that action at this time.
0 commit comments