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