Skip to content

Commit e63f0ba

Browse files
committed
fix Issue #51
1 parent 25d5f26 commit e63f0ba

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

NppJSONViewer/TreeBuilder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,11 @@ bool TreeBuilder::StartArray()
162162
if (this->stack.empty())
163163
{
164164
parent = new TreeNode;
165-
parent->isArray = false;
165+
parent->isArray = true;
166166
parent->subRoot = treeRoot;
167167
parent->counter = 0;
168168
this->stack.push(parent);
169+
return true;
169170
}
170171
else
171172
{

NppJSONViewer/resource.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ END
113113
//
114114

115115
VS_VERSION_INFO VERSIONINFO
116-
FILEVERSION 1,32,0,0
117-
PRODUCTVERSION 1,32,0,0
116+
FILEVERSION 1,34,0,0
117+
PRODUCTVERSION 1,34,0,0
118118
FILEFLAGSMASK 0x3fL
119119
#ifdef _DEBUG
120120
FILEFLAGS 0x1L
@@ -132,11 +132,11 @@ BEGIN
132132
VALUE "Comments", "JSONViewer plugin for Notepad++"
133133
VALUE "CompanyName", "Kapil Ratnani"
134134
VALUE "FileDescription", "Notepad++ plugin"
135-
VALUE "FileVersion", "1.32.0.0"
135+
VALUE "FileVersion", "1.34.0.0"
136136
VALUE "InternalName", "JSONViewer"
137137
VALUE "OriginalFilename", "NPPJSONViewer.dll"
138138
VALUE "ProductName", "JSONViewer plugin for Notepad++"
139-
VALUE "ProductVersion", "1.32.0.0"
139+
VALUE "ProductVersion", "1.34.0.0"
140140
VALUE "SpecialBuild", "UNICODE"
141141
END
142142
END

0 commit comments

Comments
 (0)