- Require at least Dart 2.0.0-dev.61.
- Require at least Dart 2.0.0.
- Fix bug in
readAsBytes
which returned twice as much data as expected.
- Fix bug in
readAsString
when charset is LATIN-1 and content-length is set.
- Reduce max concurrent connections to the same host to 6 when using
dart:io
. That's the same limit that many browsers use. - Trying to load a resource from a non-existing package now gives a better error message.
- Make failing HTTP requests throw an
HttpException
.
- Update README.md.
- Fix type warnings.
- Use configuration dependent imports to avoid having separate implementations
for
dart:io
anddart:html
. - Remove
browser_resource.dart
.
- Added browser-compatible version as
browser_resource.dart
library. Only needed because configurable imports are not available yet.
- Initial version