Release Notes.txt 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  1. 2.1.3.1 (Feb., 2015)
  2. Bug Fixes
  3. a. fix word serialization issues
  4. b. fix CloneStyleFrom issue
  5. c. Fix vertical alignment default value for XSSFCell
  6. d. fix setAutoFilter change range issue
  7. e. fix EDate function
  8. f. fix FormatException in FormulaParser
  9. g. fix Comment random Shape issue (comment serialization issue)
  10. h. fix not be able to unlock the cell issue
  11. POI BUG FIXES
  12. 55729 - DataFormatter should format Error cells, returning the Excel error string
  13. 49237 - HSSF Row Style XfIndex is 12 not 16 bits of data
  14. 54607 - NullPointerException in XSSFSheet.getTopRow() when the top row is 1
  15. 55745 - fix handling of tables in XSSF if there are comments as well
  16. 54673 - Simple wildcard support in HLOOKUP, VOOLKUP, MATCH, COUNTIF
  17. 55047 - REPT formula support
  18. 55042 - COMPLEX formula support
  19. 55041 - CODE formula support
  20. 54508 - EDATE formula support
  21. 53966 - IfError support (from Analysis Toolpak)
  22. 54402 - IfError handling of indirect references
  23. New feature
  24. a. Add ReplaceText to XWPFParagraph and XWPFRun
  25. b. adjust ExcelExtractor interface
  26. c. Improving comment missing handling in HSSFSheet
  27. d. copy hyperlink in CopySheet and fix some bugs
  28. e. Implement ChartSheet in OpenXmlFormats
  29. f. Implement shrinktofit for XSSF
  30. 2.1.3 (Dec., 2014)
  31. Bug Fixes
  32. a. fix 2 charts insert in the same sheet issue
  33. b. fix a lot of Excel 2007 serialization issues
  34. c. fix some Word 2007 serialiation issues
  35. d. fix RemoteSheetAt bug
  36. e. support changing background in XWPF
  37. f. fix Uri-related issues on Mono
  38. New examples
  39. SetIsRightToLeftInXlsx - show how to use IsRightToLeft property
  40. ExtractPicturesFromXlsx - show how to extract pictures from Excel 2007 file
  41. SetRowStyle - show how to set whole row style with simple code
  42. 2.1.1 (Jun., 2014)
  43. New Features
  44. a. XSSFSheet.CopySheet
  45. b. Excel2Html for XSSF and HSSF
  46. c. insert picture in word 2007
  47. d. Implement IfError function in formula engine
  48. Bug Fixes
  49. a. fix conditional formatting issue
  50. b. fix ctFont order issue
  51. c. fix vertical alignment issue in XSSF
  52. d. add IndexedColors to NPOI.SS.UserModel
  53. e. fix decimal point issue in non-English culture
  54. f. fix SetMargin issue in XSSF
  55. g.fix multiple images insert issue in XSSF
  56. h.fix rich text style missing issue in XSSF
  57. i. fix cell comment shape (big arrow) in XSSF
  58. j. WorkbookFactory for Excel 2007 doesn't occupy file.
  59. k. fix XSSFCell.IsMergedCell
  60. l. fix incorrect page margin value due to different culture
  61. m. fix HSSFSheet.CopyTo doesn't copy rich text in cells
  62. n. fix scroll bar and tabs missing in previous 2.1 release
  63. New examples
  64. a. XSSF.DownloadXlsx
  65. b. XSSF.ConditionFormats
  66. c. XSSF.LineChart
  67. d. XWPF.InsertPicturesInWord
  68. 2.0 [v2.0.6] (Jan., 2014)
  69. a. fix a lot of xml serialization issue for OOXML (2.0.5 will corrupt some xlsx and docx files)
  70. b. implement XSSFCell.IsMergedCell
  71. c. IWorkbook implements IList<ISheet>
  72. 2.0 Beta 2 [v2.0.5] (Dec, 2013)
  73. New features
  74. a. Support Scatter chart in XSSF (xlsx) (other chart types are not supported yet)
  75. b. Extract pictures from Excel (xlsx)
  76. c. XWPF becomes stabler than before
  77. d. Able to support xml:space="preserve" attribute
  78. e. Add mono assembly in the release package
  79. f. file generated by NPOI will contain NPOI tags in custom properties to identify the generator
  80. g. Adjust some XWPF interfaces
  81. Sample changes
  82. a. add new samples like BigGridTest, WritePerformanceTest to test performance
  83. b. add ScatterChart to show how to create Scatter chart
  84. c. add LinkedDropDownList for both XSSF and HSSF
  85. d. add MonthlySalaryReport to show how to use formula in XSSF
  86. e. add CreateCustomProperties to show how to use custom props in XSSF and XWPF
  87. Bug fixes
  88. a. fix shift row issue in XSSFSheet
  89. b. fix performance issue due to XmlSerializer. NPOI is getting rid of XmlSerializer.
  90. c. reading/writing CT_Drawing
  91. d. fix ddd pattern issue in CellDateFormatter
  92. e. Change some common interfaces in NPOI.SS
  93. f. fix OutOfMemory issue in MemoryPackagePart
  94. g. Able to read AbsoluteAnchor, OneCellAnchor, TwoCellAnchor in drawing.xml
  95. h. Formula will be calculated automatically after generation
  96. i. improve performance for XSSF while creating new rows
  97. For detail, please read https://npoi.codeplex.com/discussions/443655
  98. j. fix name encoding issue of custom properties in HSSF
  99. For detail, please read https://npoi.codeplex.com/workitem/12296
  100. k. fix exception in HSSFRows.RemoveAllCells
  101. l. fix CellStyle Hashtable comparison issue in class HSSFCellUtil. This can help prevent over 4000 styles issue from code.
  102. m. Fix globalization issue in ExpandedDouble
  103. =========================================================================
  104. 2.0 Beta 1 [v2.0.1] (Feb, 2013)
  105. New features
  106. a. Copy rows, columns inside a sheet
  107. b. Copy sheet between workbooks (contributed by Paul Kratt)
  108. c. insert rows and column inside a sheet
  109. d. OpenXml4Net is stable and ready for use
  110. e. Support new Excel functions such as RATE, RANK, ISERR
  111. f. Support converting from Excel to Html
  112. g. POIFS Browser supports Chart records
  113. Example changes
  114. a. Use MemoryStream.WriteTo instead in ExportXlsToDownload in order to avoid out of memory exception
  115. b. add new examples like CalendarDemo, BusinessPlan, CopySheet
  116. NPOI Bug Fixes
  117. Issue with 2.0 Beta: Get an non-Closing Element error
  118. http://npoi.codeplex.com/workitem/11085
  119. Npoi 2 error in NumericCellValue (XSSFCell)
  120. http://npoi.codeplex.com/workitem/11083
  121. [HSSF]Comment is not saved correctly while using a xls template with comment
  122. http://npoi.codeplex.com/workitem/11169
  123. Access issue creating worksheet
  124. http://npoi.codeplex.com/workitem/11383
  125. Error when running NPOI with Mono C# compiler version 2.0.1.0
  126. http://npoi.codeplex.com/workitem/4547
  127. POI Bug Fixes
  128. 53282 - Avoid exception when parsing OPC relationships with non-breaking spaces(poi-developers)
  129. 54016 - Avoid exception when parsing workbooks with DConRefRecord in row aggregate(poi-developers)
  130. 53404 - Fixed compatibility bug with modifying xls files created by POI-3.6 and earlier(poi-developers)
  131. 53763 - avoid style mess when using HSSFOptimiser (poi-developers)
  132. 53974 - Avoid NPE when constructing HSSFWorbook on Google App Engine(poi-developers)
  133. 53950 - fixed setForceFormulaRecalculation to reset workbook-level "manual" flag(poi-developers)
  134. 52211 - avoid unnessary re-coverting content types to US-ASCII, it can cause exceptions on ibm mainframes(poi-developers)
  135. HSSFOptimiser will now also tidy away un-used cell styles, in addition to duplicate styles(poi-developers)
  136. 53434 - Subtotal is not return correct value. (poi-developers)
  137. 53144 - First comment not cloned after cloneSheet() (poi-developers)
  138. 53028 - Broken auto fit row height in the cells with word wrap (poi-developers)
  139. 53010 - GSoC2012? Improve drawing support in HSSF (poi-developers)
  140. 52764 - Unmodified cell comments disappear after HSSFWorkbook.write (poi-developers)
  141. 51676 - Using drawingPatriarch.createCellComment(anchor) leads to File error: data may have been lost (poi-developers)
  142. 51455 - It would be really nice to be able to set the background picture of a comment (poi-developers)
  143. 48989 - If we have a comment but the row is not created we will not be able to get it. (poi-developers)
  144. 48873 - Comments not saving in XLS files with collapsible columns (poi-developers)
  145. 46143 - setLineStyleColor for comments donot work (poi-developers)
  146. 53699 - Patch to correct BorderStyle? enum positions (poi-developers)
  147. 53644 - XLS formula bugfix (CalFieldFunc?) + WeekDay? addon (poi-developers)
  148. 53446 - Fixed some problems extracting PNGs (poi-developers)
  149. 53204 - Improved performanceof PageSettingsBlock? in HSSF (poi-developers)
  150. 53500 - Getter for repeating rows and columns(poi-developers)
  151. 53476 - Support Complex Name in formulas (poi-developers)
  152. 53414 - properly update sheet dimensions when adding column (poi-developers)
  153. Add File based constructor to OPCPackage, alongside existing String one (which constructed a File from the string internally)(poi-developers)
  154. 53389 - Handle formatting General and @ formats even if a locale is prefixed to them(poi-developers)
  155. 53058 - Utility for representing drawings contained in a binary Excel file as a XML tree(poi-developers)
  156. 48528 - support negative arguments to the DATE() function(poi-developers)
  157. 53101 - fixed evaluation of SUM over cell range > 255(poi-developers)~
  158. 52928 - DateFormatConverter?: an utility to convert instances of java.text.DateFormat? to Excel format patterns(poi-developers)
  159. 52895 - show SSTIndex instead of XFIndex in LabelSSTRecord.toString()(poi-developers)
  160. 52818 - Added implementation for RANK()(poi-developers)
  161. 51564 - support for enforcing fields update in XWPF(poi-developers) 51673 - support grouping rows in SXSSF(poi-developers)
  162. 51780 - support replacement of content types in OPC packages (poi-developers)
  163. 52057 - updated formula test framework to be aware of recently added Functions (poi-developers)
  164. 52574 - support setting header / footer page margins in HSSF(poi-developers)
  165. 52583 - fixed WorkbookUtil#createSafeSheetName? to escape colon (poi-developers)
  166. 52708 - misc improvements in CellFormat? (poi-developers)
  167. 52690 - added a getter for length of encrypted data in Ecma and Agile decryptors(poi-developers)
  168. allow runtime registration of functions in FormulaEvaluator?(poi-developers)
  169. 52665 - When reading from a ZipFileZipEntrySource? that has already been closed, give IllegalArgumentException? rather than NPE(poi-developers)
  170. 52385 - avoid trancated array and vector data when reading OLE properties(poi-developers)
  171. 51498 - fixed evaluation of blank cells in COUNTIF(poi-developers)
  172. 52576 - support changing external file references in HSSFWorkbook(poi-developers)
  173. 49896 - support external references in FormulaRenderer?(poi-developers)
  174. 52527 - avoid exception when matching shared formula records in HSSF(poi-developers)
  175. 52568 - Added methods to set/get an XWPFRun's text color(poi-developers)
  176. 52566 - Added methods to set/get vertical alignment and color in XWPFTableCell(poi-developers)
  177. 52562 - Added methods to get/set a table row's Can't Split and Repeat Header attributes in XWPF(poi-developers)
  178. 52561 - Added methods to set table inside borders and cell margins in XWPF(poi-developers)
  179. 52569 - Support DConRefRecord in HSSF(poi-developers)
  180. 52575 - added an option to ignore missing workbook references in formula evaluator(poi-developers)
  181. 52540 - Relax the M4.1 constraint on reading OOXML files, as some Office produced ones do have 2 Core Properties, despite the specification explicitly forbidding this(poi-developers)
  182. 52462 - Added implementation for SUMIFS()(poi-developers)
  183. 52449 - Support writing XWPF documents with glossaries (Glossaries are not yet supported, but can now be written out again without changes)(poi-developers)
  184. 52438 - Update CellDateFormatter? to handle times without seconds(poi-developers)
  185. 52389 - Support ?/? as well as #/# fractions, and tighten DataFormatter? rules for fraction matching(poi-developers)
  186. 52378 - Support for WORKDAY and NETWORKDAYS functions(poi-developers)
  187. 52349 - Merge the logic between the TEXT function and DataFormatter?(poi-developers)
  188. 52349 - Correctly support excel style date format strings in the TEXT function(poi-developers)
  189. 52369 - XSSFExcelExtractor should format numeric cells based on the format strings applied to them(poi-developers)
  190. 52369 - Event based XSSF parsing should handle formatting of formula values in XSSFSheetXMLHandler(poi-developers)
  191. 52348 - Avoid exception when creating cell style in a workbook that has an empty xf table(poi-developers)
  192. 52314 - enhanced SheetUtil?.getColumnWidth(poi-developers)
  193. 51875 - More XSSF new-line in formula support(poi-developers)
  194. POIFS EntryUtils?.copyNodes(POFS,POIFS) now uses FilteringDirectoryNode?, so can exclude from copying nodes not just directly under the root(poi-developers)
  195. POIFS Helper FilteringDirectoryNode?, which wraps a DirectoryEntry? and allows certain parts to be ignored(poi-developers)
  196. 52190 - null check on XWPF setFontFamily(poi-developers)
  197. 52050 - Support for the Excel RATE function(poi-developers)
  198. 51949 - Avoid NPE on double close of ZipFileZipEntrySource?(poi-developers)
  199. 51950 - XWPF fix for footnotes not always being present in a document(poi-developers)
  200. 51963 - Correct AreaReference? handling of references containing a sheet name which includes a comma(poi-developers)
  201. 51834 - Opening and Writing .doc file results in corrupt document(poi-developers)
  202. Allow the passing of a File object to WorkbookFactory?.create, which permits lower memory processing than the InputStream? version(poi-developers)
  203. 51850 - support creating comments in XSSF on an earlier slide when later ones already have them(poi-developers)
  204. New PackagePart? method getRelatedPart(PackageRelationship?) to simplify navigation of relations between OPC Parts(poi-developers)
  205. 51832 - handle XLS files where the WRITEPROTECT record preceeds the FILEPASS one, rather than following as normal(poi-developers)
  206. 51809 - correct GTE handling in COUNTIF(poi-developers)
  207. 51670 - avoid LeftoverDataException? when reading .xls files with invalid LabelRecords?(poi-developers)
  208. 51196 - prevent NPE in XWPFPicture.getPictureData() (poi-developers)
  209. 51196 - more progress with Chart APi in XSSF(poi-developers)
  210. 51785 - Allow XSSF setForceFormulaRecalculation to work with the minimal ooxml-schemas jar(poi-developers)
  211. =========================================================================
  212. 2.0 Alpha [v2.0.0] (August, 2012)
  213. New features
  214. a. Implement OpenXml4Net (same as System.Packaging from Microsoft). It supports both .NET 2.0 and .NET 4.0
  215. b. Excel 2007 read/write library (NPOI.XSSF)
  216. c. Word 2007 read/write library(NPOI.XWPF)
  217. d. NPOI.SS namespace becomes the interface shared between XSSF and HSSF
  218. e. Load xlsx template and save as new xlsx file (partially supported)
  219. f. Diagonal line in cell both in xls and xlsx
  220. g. Support isRightToLeft and setRightToLeft on the common spreadsheet Sheet interface, as per existing HSSF support(poi-developers)
  221. h. New examples for NPOI.OpenXml4Net(2 examples), NPOI.XSSF (15 examples) and NPOI.XWPF (5 examples)
  222. =========================================================================
  223. 1.2.5 (April,2012)
  224. In this release, we fixed most of the bugs found in POI 3.8 beta 4.
  225. POI Bug Fixes
  226. 51535 - correct signed vs unsigned short reading in NDocumentInputStream(poi-developers)
  227. 50209 - Fixed evaluation of Subtotals to ignore nested subtotals(poi-developers)
  228. 50401 - fixed EscherProperty to return property name instead of 'unknown' for complex properties (poi-developers)
  229. 51481 - Fixed autofilters in HSSF to avoid warnings in Excel 2007(poi-developers)
  230. 51533 - Avoid exception when changing name of a sheet containing shared formulas(poi-developers)
  231. 46250 - Fixed cloning worksheets with images(poi-developers)
  232. 51514 - allow HSSFObjectData to work with both POIFS and NPOIFS(poi-developers)
  233. 51514 - avoid NPE when copying nodes from one HSSF workbook to a new one, when opened from NPOIFS(poi-developers)
  234. 51504 - avoid NPE when DefaultRowHeight or DefaultColumnWidth records are missing(poi-developers)
  235. 48294 - Fixed HSSFWorkbook.setSheetOrder() to respect inter-sheet references (poi-developers)
  236. 51448 - Avoid exception when evaluating workbooks with more than 256 sheets (poi-developers)
  237. 51458 - Correct BitField wrapping when setting large values(poi-developers)
  238. 51460 - Improve HSSF performance when loading very long rows, by switching the CellValue array to an iterator(poi-developers)
  239. 51415 - Fixed Workbook.createSheet(sheetName) to truncate names longer than 31 characters(poi-developers)
  240. 51332 - Fixed internal IDs of shapes generated by HSSFPatriarch when there are more than 1023 drawing objects (poi-developers)
  241. 48408 - Improved documentation for Sheet.setColumnWidth (poi-developers)
  242. 50681 - Avoid exceptions in HSSFDataFormat.getDataFormatString() (poi-developers)
  243. 50681 - Fixed autosizing columns beyond 255 character limit (poi-developers)
  244. 51339 - Fixed arithmetic rounding in formula evaluation (poi-developers)
  245. 51098 - Correctly calculate image width/height, if image fits into one cell(poi-developers)
  246. 51273 - Formula Value Cache fix for repeated evaluations(poi-developers)
  247. 51171 - Improved performance of SharedValueManager (poi-developers)
  248. 51171 - Improved performance of opening large .xls files(poi-developers)
  249. 51153 - Correct sizing of LbsDataSubRecord with unused padding fields(poi-developers)
  250. 51143 - NameCommentRecord correction for writing non ASCII strings(poi-developers)
  251. 51115 - Handle DataFormatter escaping of "." in the same way as "-" and "/"(poi-developers)
  252. 51100 - Fix IOUtils issue for NPOIFS reading from an InputStream where every block is full(poi-developers)
  253. 50841 - Improved SpreadSheet DataFormatter to handle scientific notation, invalid dates and format spacers(poi-developers)
  254. 50939 - ChartEndObjectRecord is supposed to have 6 bytes at the end, but handle it not(poi-developers)
  255. 50912 - fixed setting named styles to HSSFCells(poi-developers)
  256. 50779 - fixed RecordFormatException when reading unicode strings with photenic data(poi-developers)
  257. 50718 - More helpful error message when you try to create a CellReference with #REF!(poi-developers)
  258. 50786 - Speed up calls to HSSFColor.getIndexHash() by returning a cached, unmodifiable Map. HSSFColor.getModifiableIndexHash() provides access to the old (slow but modifiable) functionality(poi-developers)
  259. 32903 - Correct XBAT chaining explanation in /poifs/fileformat.html(poi-developers)
  260. 46664 - When creating HSSF Print Areas, ensure the named range is reference based not value based(poi-developers)
  261. 50756 - When formatting numbers based on their Cell Style, treat GENERAL the same as the more typical General(poi-developers)
  262. fixed HSSFWorkbook.createCellStyle to throw exception if the maximum number of cell styles was exceeded(poi-developers)
  263. 49928 - allow overridden built-in formats in HSSFCellStyle(poi-developers)
  264. 50587 - Improved documentation on user-defined functions(poi-developers)
  265. 50416 - Correct shifting of the first or last row in a sheet by multiple rows(POI-DEVELOPERS)
  266. 50246 - Properly position GutsRecord when reading HSSF workbooks(POI-DEVELOPERS)
  267. 50437 - Support passing ranges to NPV()(POI-DEVELOPERS)
  268. 47405 - Improved performance of RowRecordsAggregate.getStartRowNumberForBlock / getEndRowNumberForBlock(poi-developers)
  269. 50113 - Remove cell from Calculation Chain after setting cell type to blank (poi-developers)
  270. 50096 - Fixed evaluation of cell references with column index greater than 255 (poi-developers)
  271. 49761 - Tolerate Double.NaN when reading .xls files(poi-developers)
  272. 50211 - Use cached formula result when auto-sizing formula cells(poi-developers)
  273. 50118 - OLE2 does allow a directory with an empty name, so support this in POIFS(poi-developers)
  274. NPOI Bug fixes
  275. a. CloneSheet with images throws exception
  276. b. Comments are still visible even set Visible property to false
  277. c. AutoSizeColumn doesn't work as expected
  278. d. Reading sheet protected workbook throws exception
  279. New Features
  280. a. Added NPOIFS constructors to most POIDocument classes and their extractors, and more widely deprecated the Document(DirectoryNode, POIFSFileSystem) constructor in favour of the more general Document(DirectoryNode) one
  281. b. Added implementation for CLEAN(), CHAR(), ADDRESS(),MROUND(), VAR(), VARP(), IRR()
  282. c. Added Support for HOUR, MINUTE and SECOND date formulas
  283. d. Support for continued NameRecords, continued ExtSSTRecords
  284. e. Support using RecalcIdRecord to trigger a full formula recalculation on load (poi-developers)
  285. f. ExternalNameRecord support for DDE Link entries without an operation(poi-developers)
  286. g. POIFS Browser: add ability to parse EscherContainer and sub nodes
  287. =========================================================================
  288. 1.2.4 (Nov,2011)
  289. In this release, we fixed most of the bugs found in POI 3.6 and POI 3.7.
  290. NPOI Bug Fixes
  291. 5157 - HSSFSheet.FitToPage property is added. It doesn't work previously.
  292. 7271 - Cell formula that has been "dragged" down cannot be read. Patch is applied
  293. xxx - Bad padding calculation
  294. 3804 - NPOI doesn't work with a Excel template with macro
  295. POI Bug Fixes
  296. 46547 - ClassCastException in HSSFSheet.shiftRows(...)
  297. 47363 - Fixed HSSFSheet to allow addition of data validations after sheet protection
  298. 45066 - sheet encoding size mismatch problems
  299. 49026 - added implementation for text() (poi-developers)
  300. 46654 - HSSFRow/RowRecord to properly update cell boundary indexes(POI-DEVELOPERS)
  301. 46385 - (also patch 46362) fix serialization of StyleRecord with unicode name(POI-DEVELOPERS)
  302. 47069 - Fixed HSSFSheet#getFirstRowNum and HSSFSheet#getLastRowNum to return correct values after removal of all rows(POI-DEVELOPERS)
  303. 48325 - bad text 'Page &P of &N' and similar errors when reading in spreadsheets
  304. 48485 - add extra paper size constans to printsetup, such as a3, b4 and b5(poi-developers)
  305. 48425 - improved performance of dateutil.iscelldateformatted() (poi-developers)
  306. 49524 - add vertical text orientation method
  307. 47001 - Fixed WriteAccessRecord and LinkTable to handle unusual format written by Google Docs(POI-DEVELOPERS)
  308. 46368 - Fix HSSFRichTextRun and strings longer than 32768 characters(POI-DEVELOPERS)
  309. 48292 - Support of array formulas
  310. 49820 - ParagraphProperties.getLvl() returns 0 for both Level 1 and Body text
  311. - fixed HSSFWorkbook.createCellStyle to throw exception if the maximum number of cell styles was exceeded(poi-developers)
  312. 47405 - Improved performance of RowRecordsAggregate.getStartRowNumberForBlock / getEndRowNumberForBlock(poi-developers)
  313. 46250 - Workbook cloneSheet() - clone images
  314. 48026 - duplicate footer and header
  315. 46664 - Print Area does not save in HSSF worksheets
  316. 49761 - Double.NaN can be written but not read with POI
  317. 47309 - Number of Cell Comments in a sheet limited to 65536 with HSSF
  318. 46776 - POI does not work when run the method "cloneSheet()"
  319. 47250 - Fixed FontRecord to expect unicode flags even when name length is zero(POI-DEVELOPERS)
  320. 47198 - Fixed formula evaluator comparison of -0.0 and 0.0(POI-DEVELOPERS)
  321. 46287 - Control of header and footer extraction in ExcelExtractor / XSSFExcelExtractor(POI-DEVELOPERS)
  322. 47154 - Handle the cell format @ as the same as General(POI-DEVELOPERS)
  323. 40520 - Fixed HSSFFont.applyFont() to properly apply font to overlapping regions(POI-DEVELOPERS)
  324. 45720 - cloneSheet breaks autofilters
  325. 46643 - Formula parser should encode explicit range operator with tMemFunc
  326. 51481 - Office 2007 warning if using autofilter
  327. 50681 - autoSizeColumn sets column width beyond 255 character limit for XSSF sheets and HSSF Sheets
  328. 50912 - Applying an HSSFCellStyle on an HSSFCell has no effect
  329. 51143 - NameCommentRecord correction for writing non ASCII strings(poi-developers)
  330. New Features
  331. a. Add NameCommentRecord, HeaderFooterRecord
  332. b. AutoFilter Phrase II - it's able to create autofilter with any cell range
  333. c. Add the method to determine if the cell is merged or not
  334. d. Support compilation with MonoDeveloper
  335. e. Change all interface name starting with 'I'
  336. =========================================================================
  337. 1.2.3 (Nov. 2010)
  338. NPOI Bug fixes
  339. 5010 - Unable to read xls file with pivot table
  340. 5139 - SheetExtRecord DataSize is 40
  341. 6177 - LeftoverDataException: Intermitend Bug
  342. 6341 - System.NullReferenceException on Workbook.Dispose (+Bugfix)
  343. Change NPOI.HSSF.Model.Sheet to NPOI.HSSF.Model.InternalSheet
  344. Change NPOI.HSSF.Model.Workbook to NPOI.HSSF.Model.InternalWorkbook
  345. 6984 - Cannot manually edit/add dates in the xls created by NPOI
  346. Sync POI bug fixes
  347. 46776 - Added clone() method to MulBlankRecord to fix crash in Sheet.cloneSheet()(POI-DEVELOPERS)
  348. 46547 - Allow addition of conditional formatting after data validation(POI-DEVELOPERS)
  349. 45290 - Support odd files where the POIFS header block comes after the data blocks, and is on the data blocks list(POI-DEVELOPERS)
  350. 46904 - Fix POIFS issue with duplicate block 0 references on very old BIFF5/BIFF7 files(POI-DEVELOPERS)
  351. 45376
  352. 47970 - added a method to set arabic mode in HSSFSheet(POI-DEVELOPERS)
  353. 47048 - Fixed evaluation of defined names with the 'complex' flag set(POI-DEVELOPERS)
  354. 44916 - Allow access to the HSSFPatriarch from HSSFSheet once created(POI-DEVELOPERS)
  355. 45672 - improve handling by MissingRecordAwareHSSFListener of records that cover multiple cells (MulBlankRecord and MulRKRecord)(POI-DEVELOPERS)
  356. 45698 - Fix LinkTable to tolerate multiple EXTERNSHEET records(POI-DEVELOPERS)
  357. 45784 - More fixes to SeriesTextRecord(POI-DEVELOPERS)
  358. 46065 - added implementation for VALUE function(POI-DEVELOPERS)
  359. 45966 - added implementation for FIND function(POI-DEVELOPERS)
  360. 45784 - More fixes to SeriesTextRecord(POI-DEVELOPERS)
  361. 46065 - added implementation for VALUE function(POI-DEVELOPERS)
  362. 45966 - added implementation for FIND function(POI-DEVELOPERS)
  363. 47721 - Added implementation for INDIRECT()
  364. Added implementation for ISNA()(
  365. 48332 - fixed ColumnInfoRecord to tolerate missing reserved field
  366. 45778 - fixed ObjRecord to read ftLbsData properly(POI-DEVELOPERS)
  367. 46206 - Fixed Sheet to tolerate missing DIMENSION records(POI-DEVELOPERS)
  368. 47384 - Fixed ExternalNameRecord to handle unicode names(POI-DEVELOPERS)
  369. 47479 - Fix BoolErrRecord to tolerate incorrect format written by OOO
  370. 46199 - More tweaks to EmbeddedObjectRefSubRecord(POI-DEVELOPERS)
  371. 47751 - Do not allow HSSF's cell text longer than 32,767 characters
  372. 46213 - Fixed FormulaRecordAggregate to gracefully ignore extra StringRecords(POI-DEVELOPERS)
  373. 46301 - added pivot table records: SXDI, SXVDEX, SXPI, SXIDSTM, SXVIEW, SXVD, SXVS, et al(POI-DEVELOPERS)
  374. 48180 - be more forgiving of short chart records, which skip some unused fields(POI-DEVELOPERS)
  375. 46280 - Fixed RowRecordsAggregate etc to properly skip PivotTable records(POI-DEVELOPERS)
  376. 46174 - Fixed HSSFName to handle general formulas (not just area references)(POI-DEVELOPERS)
  377. 47768 - Implementation of Excel "Npv" functions
  378. 47771 - Added method setFunction(boolean) for defined names
  379. 47770 - built-in positive formats don't need starting '
  380. 47737 - adjust sheet indices of named ranges when deleting sheets
  381. 47448 - Allow HSSFEventFactory to handle non-zero padding at the end of the workbook stream
  382. 47143 - Fixed OOM in HSSFWorkbook#getAllPictures when reading .xls files containing metafiles
  383. 47415 - Fixed PageSettingsBlock to allow multiple PLS records
  384. 46269 - Improved error message when attempting to read BIFF2 file(POI-DEVELOPERS)
  385. 46189 - added chart records: CHARTFRTINFO, STARTBLOCK, ENDBLOCK, STARTOBJECT, ENDOBJECT, and CATLAB(POI-DEVELOPERS)
  386. 45290 - Support odd files where the POIFS header block comes after the data blocks, and is on the data blocks list(POI-DEVELOPERS)
  387. 46137 - Handle odd files with a ContinueRecord after EOFRecord(POI-DEVELOPERS)
  388. =========================================================================
  389. NPOI 1.2.2 (2009-12-5)
  390. a. ability to identify more Chart record
  391. b. ColumnAutoSize bug is fixed (bug 3754 )
  392. c. DefaultRowHeight bug is fixed (bug 3880)
  393. e. Sheet Tab Formatting (bug 3772)
  394. f. ShrinkToFit property is exposed to user (bug 4103)
  395. g. Active selection area (bug 4527)
  396. h. HSSFSheet.RemoveRow will remove CellRecord as well as RowRecord (bug 3493)
  397. i. Auto filter feature (alpha)
  398. j. read xls template with macro (bug 3804)
  399. =========================================================================
  400. NPOI 1.2.1 (2009-6-1)
  401. a. Conditional Formating doesn't work as expected
  402. b. HSSFDataFormat.GetFormat return different index for the same format string
  403. c. Incorrect namespace spelling of NPOI.SS.Formula
  404. d. HSSFCell.ToString() method supports DataFormat now
  405. e. add strong name for all the assembiles
  406. f. HSSFColor.index static variable isn't accessible in VB.NET due to the HSSFColor Index property
  407. =========================================================================
  408. NPOI 1.2 (2009-5)
  409. implement features in POI 3.2 final