Removing the BSPrinter module
[isso.git] / CHANGES
1 3.2.0
2 ===================
3 - New: Decorator.css.php and Decorator.js to be used to create HTML templates with standard formatting
4 - Removed: BSPrinter* and all its variants have been removed, use Decorator+Template instead
5
6 3.1.3
7 ===================
8 - Fixed: BSPrinterRootForm's marked as ::setUpload() would not have the right enctype set
9 - New: BSApi::reset() will reset the object back to an initial state with only the key field still set
10 - New: BSApi::fetchValue() will return the value of a given field from either ->record[] or ->values[]
11
12 3.1.2
13 ===================
14 - Fixed: BSDb::query() would not generate a Result object for explain, show, and describe queries
15 - Change: Change BSApi::remove() to be ::delete() again
16
17 3.1.1
18 ===================
19 - Fixed: BSMail::send() would fail if sending a HTML/multipart email because it would call BSFunctions::Rand()
20 - Fixed: BSMail::send() would not send HTML emails due to a caps typo in the $sendHtml param
21 - Change: BSMail::send() now labels iteslf in its BSApp::debug() messages
22
23 3.1.0
24 ===================
25 - Change: BSPrinterElementTable:__construct() can now take straight strings and convert them into BSPrinterElementLabel's
26 - Change: Removed the text indent on .input elements in BSPrinter
27 - New: BSPrinterRootPage::setHeaderCode() allows injecting in between the <head> tag of the root page element (creates BSPrinterRootPage::$headerCode)
28 - New: BSPrinterAbstract::setId() allows all elements to have an id attribute added in _prepareStyle()
29 - New: Added an ability to quick-set API information via an array with BSApi::setArray()
30 - New: Made many private members protected or public
31 - Change: Added BSPrinterAbstract::__toString() that merely calls paint()
32 - Change: BSTemplate is completely redone
33 - New: Implement Iterator in BSDBResult
34 - New: In the BSTemplate::$preParseHook method, the second parameter will be the BSTemplate object itself
35 - New: Add BSTemplate::$globalVars to be substituted into every template
36 - Change: BSTemplate will better detect parse errors in nested templates in BSTemplate::evaluate()
37 - Change: ApiException will now report all of its messages in ::getMessage()
38 - New: Added BSExceptionHandler to handle all exceptions in a pretty fasion