Skip to content

Commit c5a4457

Browse files
committed
Update web app to 1.7.0
1 parent 632de69 commit c5a4457

12 files changed

Lines changed: 2357 additions & 3 deletions

app/XLParser.Web/Default.aspx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
</td>
3535
<td>
3636
<select id="parserversionselected">
37-
<option value="163" selected>1.6.3</option>
37+
<option value="170" selected>1.7.0</option>
38+
<option value="163">1.6.3</option>
3839
<option value="162">1.6.2</option>
3940
<option value="161">1.6.1</option>
4041
<option value="160">1.6.0</option>

app/XLParser.Web/Parse.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private void WriteResponse(string s)
2828
false;
2929
#endif
3030

31-
private const string LatestVersion = "163";
31+
private const string LatestVersion = "170";
3232

3333
public void ProcessRequest(HttpContext context)
3434
{
@@ -240,6 +240,11 @@ private void LoadXlParserVersion(string version)
240240
_print = XLParserVersions.v163.ExcelFormulaParser.Print;
241241
_grammar = typeof(XLParserVersions.v163.ExcelFormulaGrammar);
242242
break;
243+
case "170":
244+
_parse = XLParserVersions.v170.ExcelFormulaParser.Parse;
245+
_print = XLParserVersions.v170.ExcelFormulaParser.Print;
246+
_grammar = typeof(XLParserVersions.v170.ExcelFormulaGrammar);
247+
break;
243248
default:
244249
throw new ArgumentException($"Version {version} doesn't exist");
245250
}

app/XLParser.Web/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
[assembly: ComVisible(false)]
55
[assembly: Guid("ffb6e35e-f708-485b-996e-f1f0a54fffb7")]
6-
[assembly: AssemblyVersion("1.6.3.0")]
6+
[assembly: AssemblyVersion("1.7.0.0")]

app/XLParser.Web/Properties/Resources.Designer.cs

Lines changed: 65 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/XLParser.Web/Properties/Resources.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,7 @@
154154
<data name="ExcelBuiltinFunctionList_v163" type="System.Resources.ResXFileRef, System.Windows.Forms">
155155
<value>..\resources\excelbuiltinfunctionlist-v163.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
156156
</data>
157+
<data name="ExcelBuiltinFunctionList_v170" type="System.Resources.ResXFileRef, System.Windows.Forms">
158+
<value>..\Resources\ExcelBuiltinFunctionList-v170.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
159+
</data>
157160
</root>

0 commit comments

Comments
 (0)