Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 ## 0.11.13 | |
| 2 * Make withLocale and defaultLocale use a zone, so async operations | |
| 3 inside withLocale also get the correct locale. | |
|
Siggi Cherem (dart-lang)
2015/01/02 20:36:48
should this be considered a breaking change? Or ma
Alan Knight
2015/01/02 20:50:12
I think it was kind of broken before, but made the
| |
| 4 | |
| 1 ## 0.11.12 | 5 ## 0.11.12 |
| 2 * Number formatting now accepts "int-like" inputs that don't have to | 6 * Number formatting now accepts "int-like" inputs that don't have to |
| 3 conform to the num interface. In particular, you can now pass an Int64 | 7 conform to the num interface. In particular, you can now pass an Int64 |
| 4 from the fixnum package and format it. In addition, this no longer | 8 from the fixnum package and format it. In addition, this no longer |
| 5 multiplies the result, so it won't lose precision on a few additional | 9 multiplies the result, so it won't lose precision on a few additional |
| 6 cases in JS. | 10 cases in JS. |
| 7 | 11 |
| 8 ## 0.11.11 | 12 ## 0.11.11 |
| 9 * Add a -no-embedded-plurals flag to reject plurals and genders that | 13 * Add a -no-embedded-plurals flag to reject plurals and genders that |
| 10 have either leading or trailing text around them. This follows the | 14 have either leading or trailing text around them. This follows the |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 99 canonicalizing. Previously anything of length > 6 was left completely alone. | 103 canonicalizing. Previously anything of length > 6 was left completely alone. |
| 100 | 104 |
| 101 ## 0.9.8 | 105 ## 0.9.8 |
| 102 | 106 |
| 103 * Add a "meaning" optional parameter for Intl.message to distinguish between | 107 * Add a "meaning" optional parameter for Intl.message to distinguish between |
| 104 two messages with identical text. | 108 two messages with identical text. |
| 105 | 109 |
| 106 * Handle two different messages with the same text. | 110 * Handle two different messages with the same text. |
| 107 | 111 |
| 108 * Allow complex string literals in arguments (e.g. multi-line) | 112 * Allow complex string literals in arguments (e.g. multi-line) |
| OLD | NEW |