|
1 | 1 | # TeeBI Release Notes |
2 | 2 | ------------------- |
3 | 3 |
|
| 4 | +## 10th-June-2016 Beta 13 |
| 5 | + |
| 6 | +- BIGrid (VCL only) |
| 7 | + |
| 8 | + * New "Detail" menu item displays a secondary grid with the rows that belong to the selected main grid row |
| 9 | + * The "ShowItems" property has been changed from a Boolean to an enumerated type with "Automatic", "Yes" and "No" values |
| 10 | + |
| 11 | +- BIWeb server |
| 12 | + |
| 13 | + * Unit BI.Web.Common.pas is now "agnostic" and can be used with any HTTP server components. The default BIWeb server projects for VCL and Firemonkey use Indy's HTTP components. A new project at "Server\IIS\VCL" folder compiles an ISAPI dll plugin for Microsoft Windows IIS ("Internet Information Server") |
| 14 | + |
| 15 | +- BI Arrays |
| 16 | + |
| 17 | + * Improved speed when calling the array DataMap types "Find" method |
| 18 | + * New generic TArrayReverse method inverts all elements of any array |
| 19 | + * All TXXXArray types have now a new "Reverse" method to invert themselves |
| 20 | + * New SortedFind function in all TXXXArray types, uses a binary search algorithm to quickly find elements when the array is sorted |
| 21 | + |
| 22 | +- BIFilter |
| 23 | + |
| 24 | + * New TBIFilter class enables design-time filtering of queries and pivot-tables. BIFilter includes an Items collection, each item with specific properties to filter data elements (with different settings depending the data kind, numeric, date-time, text or boolean) |
| 25 | + |
| 26 | +- BIQuery |
| 27 | + |
| 28 | + * Huge refactoring of the TBIQuery class. Working with queries and pivot-tables at design-time without programming has been greatly improved |
| 29 | + * The old "Items" property has been now split into "Dimensions" and "Measures" to avoid redundancy at Object Inspector properties |
| 30 | + * New Filter and Sort properties with a collection of Items, each one with specific properties to customize filtering and sorting, and with custom editor dialogs available both at design and run-time |
| 31 | + * Most select queries and pivot-table summary examples can now be created at design-time, without programming and without typing any SQL text script or text expression |
| 32 | + |
| 33 | +- Data Providers |
| 34 | + |
| 35 | + * Fixed and improved the BDE (Borland Database Engine) data provider. Using the BI.Data.DB.BDE unit allows importing BDE TDatabase, TTable and TQuery components |
| 36 | + * New HeaderCount in TBIExcel component and fixed bug when importing Excel spreadsheets not detecting a header row automatically |
| 37 | + |
| 38 | +- Map-Reduce |
| 39 | + |
| 40 | + * New BI.MapReduce unit includes a generic class with methods to perform the "Map-Reduce" algorithm from TDataItem data. A new demo in "demos\VCL\MapReduce" folder shows the different capabilities |
| 41 | + |
| 42 | +- Miscellaneous |
| 43 | + |
| 44 | + * A new unit "BI.Data.Expressions" now contains a big portion of code that was previously in BI.Data unit. This reduces BI.Data code size and separates concepts. |
| 45 | + * Removed mandatory dependency on FireDAC units (for XE6 and up) when using the Data Manager editor dialogs |
| 46 | + * New BI.Data.Info unit now contains classes that were before in BI.Data unit (TDataInfo and the new TDataItemsInfo) |
| 47 | + * New methods in TDataItems class: Reverse and SortByName |
| 48 | + * Fixed bug in *.hpp C++ autogenerated headers (TDataItem overload "Item" indexed properties) |
| 49 | + * Improved parsing and generation of SQL scripts from / to BI Queries |
| 50 | + * New TDataCursorItem "Name" property to replace the selected item names in queries (the "as ..." SQL clause) |
| 51 | + * New TStores "Count" function, returns the number of registered TStore items |
| 52 | + * New TBIRegistry class variables "UseRegistry" (boolean, default True) and "IniFile" (string), enable using an *.ini file instead of the machine Registry. This is necessary for BIWeb server in ISAPI DLL mode |
| 53 | + * TSummary "DateOptions.Part" property has been renamed to simply "DatePart" |
| 54 | + * Improved performance at TSummaryTotals class, and fixed working with date-time special kinds of data (Month, Quarter and Weekday names) |
| 55 | + * FTP import class now uses the connection Timeout setting specified in its TDataDefinition |
| 56 | + * New Firemonkey editor dialog for TBIGrid control |
| 57 | + * BIComposer TGroupChart inner class now using TBIChart control instead of a normal TChart |
| 58 | + * New Component Icon images for IDE design-time component palette |
| 59 | + |
| 60 | + |
4 | 61 | ## 25th-May-2016 Beta 12 |
5 | 62 |
|
6 | 63 | This release contains mostly bug fixes, solving issues in beta 11. |
|
0 commit comments