OLD | NEW |
| 1 #### 0.11.1 |
| 2 * Added `initWebComponents` function which performs html import aware |
| 3 initialization of an application. This is done by crawling all imported |
| 4 documents for dart script tags and initializing them. Any applications using |
| 5 this package should switch to this method instead of calling `run` from the |
| 6 `initialize` package directly. |
| 7 * You may also now just export `package:web_components/init.dart` to |
| 8 initialize your app, and then stick your startup code inside a method marked |
| 9 with `@initMethod`, for instance: |
| 10 |
| 11 library my_app; |
| 12 export 'package:web_components/init.dart'; |
| 13 |
| 14 @initMethod |
| 15 void startup() { |
| 16 // custom app code here. |
| 17 } |
| 18 |
1 #### 0.11.0 | 19 #### 0.11.0 |
2 * Add `bindingStartDelimiters` option to the `ImportInlinerTransformer`. Any | 20 * Add `bindingStartDelimiters` option to the `ImportInlinerTransformer`. Any |
3 urls which contain any of the supplied delimiters before the first `/` will | 21 urls which contain any of the supplied delimiters before the first `/` will |
4 be left alone since they can't be reasoned about. If you want these urls to | 22 be left alone since they can't be reasoned about. If you want these urls to |
5 be treated as relative to the current path you should add a `./` in front. | 23 be treated as relative to the current path you should add a `./` in front. |
6 * The `ScriptCompactorTransformer` now names its bootstrap file based on the | 24 * The `ScriptCompactorTransformer` now names its bootstrap file based on the |
7 entry point html file, instead of the original dart file. This is ensure it | 25 entry point html file, instead of the original dart file. This is ensure it |
8 is the original package. | 26 is the original package. |
9 | 27 |
10 #### 0.10.5+3 | 28 #### 0.10.5+3 |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had | 188 * Reverts back to what we had in 0.3.4. (The platform.js updates in 0.3.5 had |
171 breaking changes so we are republishing it in 0.4.0) | 189 breaking changes so we are republishing it in 0.4.0) |
172 | 190 |
173 #### 0.3.5 | 191 #### 0.3.5 |
174 * Added `registerDartType` to register a Dart API for a custom-element written | 192 * Added `registerDartType` to register a Dart API for a custom-element written |
175 in Javascript. | 193 in Javascript. |
176 * Updated to platform 0.3.3-29065bc | 194 * Updated to platform 0.3.3-29065bc |
177 | 195 |
178 #### 0.3.4 | 196 #### 0.3.4 |
179 * Updated to platform 0.2.4 (see lib/build.log for details) | 197 * Updated to platform 0.2.4 (see lib/build.log for details) |
OLD | NEW |