Skip to content

Commit

Permalink
Update web app to 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
WillemJann committed Sep 14, 2023
1 parent a4681c8 commit 8572ce4
Show file tree
Hide file tree
Showing 12 changed files with 2,349 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/XLParser.Web/Default.aspx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
</td>
<td>
<select id="parserversionselected">
<option value="170" selected>1.7.0</option>
<option value="171" selected>1.7.1</option>
<option value="170">1.7.0</option>
<option value="163">1.6.3</option>
<option value="162">1.6.2</option>
<option value="161">1.6.1</option>
Expand Down
5 changes: 5 additions & 0 deletions app/XLParser.Web/Parse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,11 @@ private void LoadXlParserVersion(string version)
_print = XLParserVersions.v170.ExcelFormulaParser.Print;
_grammar = typeof(XLParserVersions.v170.ExcelFormulaGrammar);
break;
case "171":
_parse = XLParserVersions.v171.ExcelFormulaParser.Parse;
_print = XLParserVersions.v171.ExcelFormulaParser.Print;
_grammar = typeof(XLParserVersions.v171.ExcelFormulaGrammar);
break;
default:
throw new ArgumentException($"Version {version} doesn't exist");
}
Expand Down
2 changes: 1 addition & 1 deletion app/XLParser.Web/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

[assembly: ComVisible(false)]
[assembly: Guid("ffb6e35e-f708-485b-996e-f1f0a54fffb7")]
[assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyVersion("1.7.1.0")]
65 changes: 65 additions & 0 deletions app/XLParser.Web/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions app/XLParser.Web/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,7 @@
<data name="ExcelBuiltinFunctionList_v170" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ExcelBuiltinFunctionList-v170.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="ExcelBuiltinFunctionList_v171" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\ExcelBuiltinFunctionList-v171.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
</root>
Loading

0 comments on commit 8572ce4

Please sign in to comment.