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