Skip to content

Commit

Permalink
JSONViewer release v2.0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SinghRajenM committed Oct 16, 2024
1 parent 830b2b1 commit 3c5616a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ This plugin is meant to display a JSON string in a Treeview. It also marks the e

## Latest Updates:

### 2.0.8.0

1. New feature:
1. Sort ascending by key
2. Add file name in the title for visibility


2. Bug/regression fixes:
1. Updated license text on UI as per GitHub link
2. Excplicit callout for no support on multi selection
3. Some other minor code and UI enhancements


### 2.0.7.0
Bug/regression fixes:
1. "Copy value" / "Copy" not always return complete text
Expand Down
2 changes: 1 addition & 1 deletion src/NppJsonViewer/Define.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const TCHAR JSON_ERR_PARSE[] = TEXT("Unable to parse JSON. Please ens
const TCHAR JSON_ERR_VALIDATE[] = TEXT("An error occurred while parsing the JSON. Check the current selection for the potential issue.");
const TCHAR JSON_ERR_VALIDATE_SUCCESS[] = TEXT("The JSON appears valid. No errors were found during validation.");
const TCHAR JSON_ERR_SAVE_SETTING[] = TEXT("Could not save the settings. Please try again.");
const TCHAR JSON_ERR_MULTI_SELECTION[] = TEXT("Multiline selection is not currently supported in Json Viewer.");
const TCHAR JSON_ERR_MULTI_SELECTION[] = TEXT("JSON-Viewer does not currently support multiple selections.");

const TCHAR STR_VERSION[] = TEXT("Version: ");
const TCHAR STR_COPY[] = TEXT("Copy");
Expand Down
8 changes: 4 additions & 4 deletions src/NppJsonViewer/resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,0,7,0
PRODUCTVERSION 2,0,7,0
FILEVERSION 2,0,8,0
PRODUCTVERSION 2,0,8,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -185,12 +185,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Kapil Ratnani"
VALUE "FileDescription", "Notepad++ plugin for JSON file"
VALUE "FileVersion", "2.0.7.0"
VALUE "FileVersion", "2.0.8.0"
VALUE "InternalName", "JSONViewer"
VALUE "LegalCopyright", "Copyright � 2024"
VALUE "OriginalFilename", "NPPJSONViewer.dll"
VALUE "ProductName", "JSONViewer plugin for Notepad++"
VALUE "ProductVersion", "2.0.7.0"
VALUE "ProductVersion", "2.0.8.0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 3c5616a

Please sign in to comment.