- 31 Jan, 2018 2 commits
-
-
jensjoha authored
* [kernel/flutter] Improve speed of first hot reload * [kernel/flutter] Improve speed of first hot reload * Revert "[kernel/flutter] Improve speed of first hot reload" This reverts commit f3dc133878ec7405a8efb5715f1cfe720f4ea05f. * Revert "[kernel/flutter] Improve speed of first hot reload" This reverts commit f7bcb082b01cf9cf48f02c6aad9e5c79705def8f. * Revert "Revert "[kernel/flutter] Improve speed of first hot reload"" This reverts commit 73c7a1a8e85a4c0397984d8b65a98b2f71bf84f3. * [kernel/flutter] Improve speed of first hot reload Do so by not evicting unnecessary paths (while still evicting paths that was changed between the generation of the package file and the initial upload). * Fix grammar in method name * Fix bad merge * Add method to super class
-
Vyacheslav Egorov authored
-
- 30 Jan, 2018 2 commits
-
-
Ian Hickson authored
* Try to make transitioning channels actually work. * Update upgrade.dart
-
Alexander Markov authored
-
- 29 Jan, 2018 1 commit
-
-
Todd Volkert authored
* Make the current command injected into the AppContext, allowing other classes to inject the current command. * Introduce `AssetBundleFactory`, an injected factory class for spawning instances of `AssetBundle`. This allows other run contexts to use custom asset bundling logic. * Clean up RunCommand by removing a 'packages' argument that duplicated a global argument by the same name (and for the same purpose). Duplicate arguments are confusing and error-prone.
-
- 27 Jan, 2018 2 commits
-
-
Chris Bracken authored
When running with --preview-dart-2, host variant of the engine is required. Simulator builds, like device builds, should resolve host_RUNTIMEVARIANT_OPTVARIANT, not host_RUNTIMEVARIANT_sim_OPTVARIANT.
-
Ian Hickson authored
Fixes https://github.com/flutter/flutter/issues/14232 (I haven't tested this with older versions of git, I'm just going on what @jason-simmons wrote in the bug.)
-
- 26 Jan, 2018 5 commits
-
-
Yegor authored
-
Todd Volkert authored
-
Ian Hickson authored
Also some trivial improvements to style.
-
Vyacheslav Egorov authored
* Unpin package:test and upgrade packages * Update packages/flutter/test/foundation/stack_trace_test.dart * Also add packages/flutter_tools/test/data/asset_test/font/.dartignore to ensure that update-packages --force-upgrade does not crash.
-
Vyacheslav Egorov authored
The code was attempting to delete temporaryDirectory while it should have been deleting tempBundleDirectory
-
- 25 Jan, 2018 3 commits
-
-
Alexandre Ardhuin authored
-
Ian Hickson authored
-
Chris Bracken authored
flutter doctor --android-licenses requires Android sdkmanager version 26 or later. When sdkmanager is not available (SDKs earlier than v25), direct users to SDK upgrade instructions. When it's installed but not v26 or later, emit instructions to run sdkmanager --update.
-
- 24 Jan, 2018 2 commits
-
-
Michael Goderbauer authored
-
Chris Bracken authored
Convenience getters for the the path to the Android SDK manager and the currently installed version of the tool. Pre-factoring to support better checks around the --android-licenses command, which uses a feature of the SDK manager that is unsupported in older versions of the tool.
-
- 22 Jan, 2018 2 commits
-
-
Alexander Aprelev authored
* Default to strong for 'flutter test --preview-dart-2' mode * Remove empty line * Dont init to null * Break up line to make it more readable * Add missing type annotation
-
Michael Goderbauer authored
Fixes https://github.com/flutter/flutter/issues/13870.
-
- 20 Jan, 2018 3 commits
-
-
Devon Carew authored
* pass through preview-dart-2, strong, ipv6 in daemon mode * ws change to kick the windows bot
-
Alexander Aprelev authored
-
Ian Hickson authored
* Revert "Bump async, http, and vm_service_client packages (#14136)" This reverts commit 7ffcce84. * Revert "Exclude flutter doctor IDE validators in CI environments (#13816)" This reverts commit 3258c546.
-
- 19 Jan, 2018 3 commits
-
-
Ali Bitek authored
-
Alexander Aprelev authored
This is in attempt to resolve build failure on Windows.
-
Alexander Aprelev authored
-
- 18 Jan, 2018 3 commits
-
-
Ian Hickson authored
Generate the "version" file from git tags. Remove the old VERSION file and mentions of versions in pubspec.yaml files. Replace the old update_versions.dart script with a new roll_dev.dart script. Update "flutter channel". Update "flutter upgrade", including making it transition from alpha to dev. Update "flutter --version" and "flutter doctor".
-
Mikkel Nygaard Ravn authored
-
Michael Goderbauer authored
-
- 17 Jan, 2018 1 commit
-
-
Ian Hickson authored
-
- 16 Jan, 2018 2 commits
-
-
jcollins-g authored
* Revert "Revert "Make artifact downloading more robust for flaky networks" (#13995)" This reverts commit 33d8a035. * Use subdirectories to organize cached files * Fix unauthorized import
-
Vyacheslav Egorov authored
-
- 13 Jan, 2018 1 commit
-
-
Jason Simmons authored
If the downloaded file is an actual SKP and not an error report, then the default UTF-8 codec will fail to decode the SKP content
-
- 12 Jan, 2018 2 commits
-
-
Chris Bracken authored
Apple encodes syslog entries using a 7-bit encoding where input UTF-8 bytes are encoded as follows: 1. 0x00 to 0x19: non-printing range. Some ignored, some encoded as <...>. 2. 0x20 to 0x7f: as-is, with the exception of 0x5c (backslash). 3. 0x5c (backslash): octal representation \134. 4. 0x80 to 0x9f: \M^x (using control-character notation for range 0x00 to 0x40). 5. 0xa0: octal representation \240. 6. 0xa1 to 0xf7: \M-x (where x is the input byte stripped of its high-order bit). 7. 0xf8 to 0xff: unused in 4-byte UTF-8. As there doesn't appear to be a system tool to decode these strings, we implement here in Dart. If we're unable to decode a string (e.g. decoding results in an invalid UTF-8 string), we fall back to emitting the log line as-is.
-
Alexander Aprelev authored
Fixes https://github.com/flutter/flutter/issues/14058.
-
- 11 Jan, 2018 6 commits
-
-
Alexander Aprelev authored
* Reland 9534082f with fix for incremental compilation. When in incremental mode, awaiting exitCode won't work because compiler is not expected to exit after compilation. Instead listen for stdout stream closing and report error if outputFilename has not been received. * Fix lints
-
Alexander Aprelev authored
-
Alexander Aprelev authored
* Fix handling --preview-dart-2 for ios * final var
-
Devon Carew authored
* send 'reloadRecommended' info to IDEs * rename hint ==> hintMessage
-
Alexander Aprelev authored
This reverts commit 9534082f. Causes hot_mode_dev_cycle__preview_dart_2_benchmark test timeout.
-
Alexander Aprelev authored
* Check frontend_server exit code. When frontend_server completes abnormally, flutter tools has to stop and let user know. * Add tests
-