- 02 Nov, 2018 3 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
Alexander Aprelev authored
This is needed to run flutter app on multiple iOS devices at a time.
-
- 31 Oct, 2018 1 commit
-
-
Dan Field authored
* Use Xcode build configurations to drive Flutter build mode * Proper check wrt local_engine, print error if profile mode misisng * Remove unused code, update tests, fix template problem, update warning * fix up warning * add explanatory dev comment * fix whitespace * missing words, change lambda arrow to function body * error indentation * Test early exits for xcode_backend.sh * only on macOS, use right test * Update error messages * case insensitive compare for build config * Update gallery podfile * update projects to add profile configuration * make compatible with flavors * add missing plist files * add FLUTTER_FRAMEWORK_DIR back, set swift version for profile, tell Podfile about profile
-
- 30 Oct, 2018 7 commits
-
-
Greg Spencer authored
-
Greg Spencer authored
This adds flutter create --sample which allows users to execute a command which will create a working sample app from samples embedded in the API docs. The command looks something like this: flutter create --sample=chip.DeletableChipAttributes.onDeleted mysample
-
Greg Spencer authored
Stop wrapping adb, gradle and ios logger output, and update terminal wrapping column dynamically. (#23592) Subcommand output (gradle, adb, etc) is no longer wrapped, and wrapping notices when the terminal column width changes dynamically now. Fixes #23267. Fixes #23266.
-
Dan Field authored
* Use Xcode build configurations to drive Flutter build mode * Proper check wrt local_engine, print error if profile mode misisng * Remove unused code, update tests, fix template problem, update warning * fix up warning * add explanatory dev comment * fix whitespace * missing words, change lambda arrow to function body * error indentation * Test early exits for xcode_backend.sh * only on macOS, use right test * Update error messages * case insensitive compare for build config * Update gallery podfile * update projects to add profile configuration * make compatible with flavors * add missing plist files
-
Alexander Aprelev authored
* Revert "Revert "Run reload asynchronously so that multiple devices can reload in parallel. (#22693)" (#23598)" This reverts commit 0b68068d. * Fix refreshViews so it sends app-wide(rather than per-isolate) service request. Sending per-isolate request caused dead-lock in the engine in case of more-than-one ui isolate.
-
Ben Konyi authored
* Added '--check-for-remote-artifacts' option for Flutter Doctor. This option takes a Flutter engine revision and issues HEAD requests to determine whether or not artifacts for the provided engine revision are available from cloud storage. This functionality is needed for the Dart SDK autoroller to avoid creating a PR to roll the engine into the framework while artifacts haven't finished building, which would cause Cirrus tests to fail.
-
- 28 Oct, 2018 1 commit
-
-
Ian Hickson authored
* Revert "[H] Created a variant of InheritedWidget specifically for Listenables (#23393)" This reverts commit 93132859. * Revert "Fix a race condition in vmservice_test.dart (#23529)" This reverts commit 5e7b0a36.
-
- 27 Oct, 2018 2 commits
-
-
Ian Hickson authored
Fixes https://github.com/flutter/flutter/issues/19273
-
Alexander Aprelev authored
Revert "Run reload asynchronously so that multiple devices can reload in parallel. (#22693)" (#23598) This reverts commit 709f54f4 as it seems to have broken two tests: flutter_gallery__back_button_memory, named_isolates_test.
-
- 26 Oct, 2018 3 commits
-
-
Greg Spencer authored
Fixes #21825
-
Alexander Aprelev authored
* Run reload asynchronously so that multiple devices can reload in parallel.
-
Alexander Aprelev authored
* Register expression compiler in flutter test setting so that debugger expression evaluation is functional there. * Fix analyzer lints
-
- 25 Oct, 2018 2 commits
-
-
Dan Field authored
* Use Xcode build configurations to drive Flutter build mode
- 24 Oct, 2018 4 commits
-
-
Jason Simmons authored
-
Danny Tuppeny authored
* Fix --pid-file not working for --machine + add to attach Fixes #23201. * Add tests for --pid-file in run+attach
-
Jonah Williams authored
* Revert "Remove duplicate code comment in flutter_gallery (#23422)" This reverts commit 8039620b. * Revert "Add explicit completed status trace to hot reload and restart commands (#23338)" This reverts commit 245ef023.
-
Jonah Williams authored
-
- 23 Oct, 2018 3 commits
-
-
Jacob Richman authored
Ensure that cached dill files for builds with --track-widget-creation always have .track. in the file name to avoid mixing transformed and untransformed kernel files.
-
Michael Goderbauer authored
-
Jason Simmons authored
Also includes * Updates to affected tests * Change flutter_tools to pass package URIs to the Dart front end instead of filesystem paths
-
- 22 Oct, 2018 1 commit
-
-
Jonah Williams authored
-
- 20 Oct, 2018 1 commit
-
-
Stanislav Baranov authored
-
- 19 Oct, 2018 6 commits
-
-
Devon Carew authored
-
Greg Spencer authored
Devon asked me to revert commit c4d1b31b. Merging on red to fix the build.
-
Devon Carew authored
* don't disable TODO issues in IDEs * minor change to start cirrus
-
Siva authored
* Disable unsafePackageSerialization as it causes issues when coverage is used (see https://github.com/dart-lang/sdk/issues/34841) * Restore Coverage.
-
Michael Goderbauer authored
This reverts commit 8e2ca93f. Fixes https://github.com/flutter/flutter/issues/23172
-
Alexander Aprelev authored
This optimization resulted in app still running with old kernel file. Fixes another source of https://github.com/flutter/flutter/issues/16604
-
- 18 Oct, 2018 3 commits
-
-
Sebastian Roth authored
-
Greg Spencer authored
Updating the --wrap-column help message to reflect reality.
- 17 Oct, 2018 3 commits
-
-
Sebastian Roth authored
Simple convenience function if users create flutter projects in custom folder structures and but want to specify a custom project name.
-
Michael Klimushyn authored
`FlutterDevice.views` is limited by a filter. Pipe this filter up as an option for the commands that instantiate `FlutterDevice`s. This is the first change necessary for the CLI tooling to target specific isolates (#22009). More work needs to be done after this patch. * Isolate names are dynamically generated and change every restart. * This just filters views, not background isolates (`VMService.isolates`).