- 16 Mar, 2017 2 commits
-
-
Sarah Zakarias authored
* Update iOS part of flutter_view to use the new platform message channel * remove newline * comments
-
Adam Barth authored
-
- 15 Mar, 2017 18 commits
-
-
Michael Goderbauer authored
* devicelab benchmarks run on Windows * fix analyzer issue * fix test * fix pubspec
-
John McCutchan authored
- [x] Don't use package:stack_trace. - [x] Don't use Chain.capture. - [x] Fix an instance of aggressive catching of exceptions Related #8742
-
John McCutchan authored
Fixes #6207
-
Alexandre Ardhuin authored
-
Todd Volkert authored
-
Chris Bracken authored
-
Todd Volkert authored
-
Hans Muller authored
-
Michael Goderbauer authored
* Make ProcessSignals portable This removes the need to wrap unsupported signals with in `if (!platform.isWindows) ..`. It also allows us to implement a work around for breaking the Windows console when flutter is exited with Ctrl+C. * review comments * adding tests * add license header
-
Michael Goderbauer authored
Some Windows Versions close the entire shell if EXIT is called without /B. This also adds retry logic for downloading the Dart SDK.
-
Alexandre Ardhuin authored
-
Yegor authored
-
Jason Simmons authored
-
John McCutchan authored
-
Jakob Andersen authored
Changed the default build output directory in the new project template to build/, instead of android/build/ and android/app/build/. Updated tools to ask the Gradle scripts what the build directory is, since this is configurable in the build scripts, and we need to know where the build output actually is. Silenced output from 'flutter build aot' when invoked from Gradle, since the output was confusing in this case. Fixes #8723 Fixes #8656 Fixes #8138
-
Adam Barth authored
That's the only shard that computes new coverage data.
-
Adam Barth authored
Also, add a few other random dartdocs that I encountered along the way.
-
Adam Barth authored
There aren't any subclasses of Element that don't also subclass BuildableElement and I suspect they wouldn't work properly anyway. Fixes #3656
-
- 14 Mar, 2017 14 commits
-
-
Adam Barth authored
This change make it easier to track the position of the scroll view without having to worry about the position object changing out from under the controller.
-
Adam Barth authored
The new name follows the pattern of the name suggesting which layout protocol the parent expects the child to speak. Fixes #8664
-
Chris Bracken authored
macOS counterpart to c670cd9e.
-
Hans Muller authored
-
Michael Goderbauer authored
-
Adam Barth authored
The new name matches the style guide. (The old name was just old and predated the style guide.) Fixes #8000
-
Zachary Anderson authored
-
Todd Volkert authored
1. Add `PortScanner` abstraction so that we don't do actual port scanning in tests. 2. Don't change the real `cwd` of the isolate during tests, as it affects all tests, not just the current running test. Fixes #8761
-
Jason Simmons authored
gen_snapshot is now used for both JIT and AOT snapshots. The JIT version used in debug mode will be a 64-bit binary.
-
John McCutchan authored
- [x] Add custom logic on MacOS to determine if Java is installed before invoking `java`. - [x] Check JAVA_HOME, platform specific logic, and finally PATH to locate the `java` executable. - [x] Improved doctor messages. Fixes #8508 Fixes #8521
-
Chris Bracken authored
Making the directories read-only causes problems with deletion, which breaks the Mac chrome buildbot and DeviceLab. Followup patch to cb2b89c3.
-
Jakob Andersen authored
* Use snapshot's .d file as source inputs in Gradle build. If we don't yet have a .d file (first build), fall back to using the .dart files in the current directory. This enables us to detect changes in dependent source files (Flutter framework, packages outside the source directory, etc.), and re-generate the snapshots as needed. Unfortunately, Gradle requires knowing the source files before executing the task, and can't update them after building, so Gradle considers the second build to be out-of-date (because it has more input files than the first build). Sub-sequent builds have the correct dependency information, and will be skipped if the source files haven't changed. Also added a dependency on gen_snapshot. The snapshot ABI isn't stable, so we need to re-generate the snapshots when we roll the Dart SDK dependency. Fixes #8315 Fixes #8687 Fixes #8607
-
Sarah Zakarias authored
* update Android part of flutter_view to use the new platform message channel. * addressed comments * addressed comments
-
Mikkel Nygaard Ravn authored
-
- 13 Mar, 2017 6 commits
-
-
Ian Hickson authored
-
Mikkel Nygaard Ravn authored
Changed standard encoding to use host endianness. Engine roll.
-
Adam Barth authored
This patch covers multi-box adaptor and the viewports.
-
Chris Bracken authored
Provides a strong hint to developers that editing Flutter framework headers isn't supported.
-
Ian Hickson authored
It was resulting in weird situations where the tool would dump an error message and stack but not quit, or would fail hard but then just hang. Instead, specifically catch errors you expect. As an example of this, there's one error we expect from the DartDependencySetBuilder, so we catch that one, turn it into a dedicated exception class, then in the caller catch that specific exception.
-
Hans Muller authored
-