|
1 Console Change History |
|
2 ====================== |
|
3 |
|
4 3.10.3 |
|
5 ------ |
|
6 |
|
7 * No changes. |
|
8 |
|
9 3.10.2 |
|
10 ------ |
|
11 |
|
12 * No changes. |
|
13 |
|
14 3.10.1 |
|
15 ------ |
|
16 |
|
17 * No changes. |
|
18 |
|
19 3.10.0 |
|
20 ------ |
|
21 |
|
22 * Add italian language files to the components. [albertosantini] |
|
23 |
|
24 3.9.1 |
|
25 ----- |
|
26 |
|
27 * No changes. |
|
28 |
|
29 3.9.0 |
|
30 ----- |
|
31 |
|
32 * No changes. |
|
33 |
|
34 3.8.1 |
|
35 ----- |
|
36 |
|
37 * No changes. |
|
38 |
|
39 3.8.0 |
|
40 ----- |
|
41 |
|
42 * No changes. |
|
43 |
|
44 3.7.3 |
|
45 ----- |
|
46 |
|
47 * Remove `for` attribute from Console's HTML templates. There is a bug in the |
|
48 WinJS runtime for Windows 8 apps that causes an error to be thrown incorrectly |
|
49 when certain element attributes used. [Ticket #2532792] |
|
50 |
|
51 3.7.2 |
|
52 ----- |
|
53 |
|
54 * No changes. |
|
55 |
|
56 3.7.1 |
|
57 ----- |
|
58 |
|
59 * No changes. |
|
60 |
|
61 3.7.0 |
|
62 ----- |
|
63 |
|
64 * No changes. |
|
65 |
|
66 3.6.0 |
|
67 ----- |
|
68 |
|
69 * No changes. |
|
70 |
|
71 3.5.1 |
|
72 ----- |
|
73 |
|
74 * No changes. |
|
75 |
|
76 3.5.0 |
|
77 ----- |
|
78 |
|
79 * No changes. |
|
80 |
|
81 3.4.1 |
|
82 ----- |
|
83 |
|
84 * No changes. |
|
85 |
|
86 3.4.0 |
|
87 ----- |
|
88 |
|
89 * CSS classes generated from the `style` attribute changed from, e.g., |
|
90 `yui3-inline-console` to `yui3-console-inline`. |
|
91 |
|
92 3.3.0 |
|
93 ----- |
|
94 |
|
95 * No changes. |
|
96 |
|
97 3.2.0 |
|
98 ----- |
|
99 |
|
100 * No changes. |
|
101 |
|
102 3.1.1 |
|
103 ----- |
|
104 |
|
105 * No changes. |
|
106 |
|
107 3.1.0 |
|
108 ----- |
|
109 |
|
110 * CSS class references updated from `yui-*` to `yui3-*`. |
|
111 |
|
112 * Internal reorganization (API and functionality unaffected) |
|
113 |
|
114 * Fixed double escapement of `&` when used with ConsoleFilters and hiding and |
|
115 showing content with HTML entities. |
|
116 |
|
117 * Strings broken out into Intl. language resource bundles. |
|
118 English (en, default) and Spanish (es) supported. |
|
119 |
|
120 3.0.0 |
|
121 ----- |
|
122 |
|
123 * Added attribute `style` to allow `inline-block`, `block`, or `absolute` |
|
124 positioning. |
|
125 |
|
126 * Moved the hidden state CSS to the sam skin and increased rule specificity. |
|
127 |
|
128 * `printBuffer` no longer throws an error when called against an empty buffer. |
|
129 |
|
130 * Removed `label` property from normalized message object since it was just a |
|
131 copy of category. |
|
132 |
|
133 * Moved `collapsed` CSS class to the `boundingBox` and now `collapse()` |
|
134 resizes the `boundingBox` accordingly. |
|
135 |
|
136 * Added `useBrowserConsole` attribute as a pass through to the YUI config. |
|
137 Default to `false` so when a `Console` is instantiated, messages are |
|
138 redirected to `Console` rather than duplicated there. |
|
139 |
|
140 * `collapse()`, `expand()`, and `log()` are now chain-able. |
|
141 |
|
142 3.0.0beta1 |
|
143 ---------- |
|
144 |
|
145 * `logSource` attribute added to configure listening for events from a |
|
146 specific target. Also useful for subscribing to all log events across |
|
147 multiple YUI instances. |
|
148 |
|
149 * Lowered `consoleLimit` default to 300. |
|
150 |
|
151 * `printLimit` attribute added to limit the number of entries from the buffer |
|
152 to output in a given `printBuffer()` call. |
|
153 |
|
154 * `printBuffer(max)` argument added to limit the number of entries to print in |
|
155 this cycle. |
|
156 |
|
157 * Changed from `setTimeout` to `setInterval` to chunk DOM output. |
|
158 |
|
159 * `logLevel` constants changed to strings and categories outside info, warn, |
|
160 and error are not treated as info. |
|
161 |
|
162 * CSS updates. |
|
163 |
|
164 * Support for `height` and `width` attribute configuration. |
|
165 |
|
166 * Changed `<input type="button">` to `<button type="button">`. |
|
167 |
|
168 * Added `collapse()`/`expand()`. |
|
169 |
|
170 * Entry addition and removal now occurs off DOM. |
|
171 |
|
172 * Entry removal checks that the target Node is present before removing it. |
|
173 |
|
174 * `Y.config.debug` explicitly set to false during print cycle to avoid |
|
175 infinite loops. |
|
176 |
|
177 3.0.0pr2 |
|
178 -------- |
|
179 |
|
180 * Initial release. |