Browse Source

update release notes

re-fix bug for EDATE and Today function in AnalysisToolPak
pull/7/head 2.0.1
Tony Qu 13 years ago
parent
commit
abac6a8060
  1. 12
      Build and Test.txt
  2. 12
      Release Notes.txt
  3. 2
      main/SS/Formula/Atp/AnalysisToolPak.cs
  4. 2
      main/SS/Formula/Eval/FunctionEval.cs

12
Build and Test.txt

@ -17,8 +17,8 @@ Select the solution from the appropriate solution folder:
The name of the solution defines the target:
- NPOI.sln for the library NPOI itself.
- NPOITest.sln for the library together with a test suite.
- OOXML.sln for the OOXML library of NPOI
- OOXMLTest.sln for the OOXML library with a test suite
Test Suite
==========
@ -32,8 +32,12 @@ Copy the content of testcases/test-data to the same folder within NPOI.
Load the the NPOITest.sln into your IDE, build the project and execute
all the unit tests.
Here are some numbers (2012-05-04):
unit tests: 1712, passed: 1705 (failed 7)
*****2013-03-06 Test Result******
NPOI.OOXML and NPOI test suite: 2511 passed, 22 skiped, 24 failed
*****2012-05-04 Test Result******
NPOI test suite: unit tests: 1712, passed: 1705 (failed 7)
There are 11 unit tests flagged with the [Ignore] attribute:
- testcases\main\HSSF\Model\TestOperandClassTransformer.cs(63): [Ignore] //this test is disabled in poi.

12
Release Notes.txt

@ -12,6 +12,18 @@ Example changes
a. Use MemoryStream.WriteTo instead in ExportXlsToDownload in order to avoid out of memory exception
b. add new examples like CalendarDemo, BusinessPlan, CopySheet
NPOI Bug Fixes
Issue with 2.0 Beta: Get an non-Closing Element error
http://npoi.codeplex.com/workitem/11085
Npoi 2 error in NumericCellValue (XSSFCell)
http://npoi.codeplex.com/workitem/11083
[HSSF]Comment is not saved correctly while using a xls template with comment
http://npoi.codeplex.com/workitem/11169
Access issue creating worksheet
http://npoi.codeplex.com/workitem/11383
Error when running NPOI with Mono C# compiler version 2.0.1.0
http://npoi.codeplex.com/workitem/4547
POI Bug Fixes
53282 - Avoid exception when parsing OPC relationships with non-breaking spaces(poi-developers)
54016 - Avoid exception when parsing workbooks with DConRefRecord in row aggregate(poi-developers)

2
main/SS/Formula/Atp/AnalysisToolPak.cs

@ -107,7 +107,7 @@ namespace NPOI.SS.Formula.Atp
r(m, "DOLLARDE", null);
r(m, "DOLLARFR", null);
r(m, "DURATION", null);
r(m, "EDATE", null);
r(m, "EDATE", EDate.Instance);
r(m, "EFFECT", null);
r(m, "EOMONTH", null);
r(m, "ERF", null);

2
main/SS/Formula/Eval/FunctionEval.cs

@ -306,7 +306,7 @@ namespace NPOI.SS.Formula.Eval
retval[216] = new Rank(); // RANK
retval[219] = new Address(); // AddRESS
retval[220] = new Days360(); // DAYS360
retval[221] = new NotImplementedFunction("TODAY"); // TODAY
retval[221] = new Today(); // TODAY
retval[222] = new NotImplementedFunction("VDB"); // VDB
retval[227] = AggregateFunction.MEDIAN; // MEDIAN
retval[228] = new Sumproduct(); // SUMPRODUCT

Loading…
Cancel
Save