- 28 Aug, 2017 2 commits
-
-
Ian Hickson authored
-
Chris Bracken authored
This change re-introduces skipping AOT snapshot builds if input sources and outputs have not changed since the last snapshot build, assuming a build for the same platform in the same build mode. This reverts commit 3d5afb5a. It includes the following changes relative to the original: 1. Include the entrypoint source in the checksums 2. include the build mode in the checksums 3. include the target platform in the checksums
-
- 26 Aug, 2017 1 commit
-
-
Michael Goderbauer authored
* refactor to ensureAction + some related doc fixes * Update docs for markNeedsSemanticsUpdate * rewording * rewording * ensureAction test * ensureAction test * ensureAction test * more tests * refactor to allways reset node * tiny fixes * more test * doc fixes * one more test * review comments
-
- 25 Aug, 2017 6 commits
-
-
Chris Bracken authored
Adds excludes for new test added in 13dda7cf (#11557)
-
Carlo Bernaschina authored
-
Chris Bracken authored
This change ensures that snapshot build checksums used to avoid duplicate builds are invalidated by a change to framework revision (in case gen_snapshot is updated), as well as by build mode. Currently, only FLX snapshotting uses checksums to avoid duplicate builds. FLX snapshotting is always done with BuildMode.debug, so didn't include build mode in the checksum file.
-
Jason Simmons authored
-
Michael Goderbauer authored
* Fix paintBounds/semanticsBounds of RenderSliver * another test
-
Zachary Anderson authored
-
- 24 Aug, 2017 6 commits
-
-
xster authored
-
xster authored
-
Michael Goderbauer authored
* Properly update semantics when Material/Cupertino Slider are disabled * whitespace fix * fix style
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Hans Muller authored
-
- 23 Aug, 2017 16 commits
-
-
xster authored
-
Michael Thomsen authored
-
Ian Hickson authored
-
Brenton Simpson authored
`stiffness` is the name of a spring's `k` input on [iOS](https://developer.apple.com/documentation/quartzcore/caspringanimation), [Android](https://developer.android.com/topic/libraries/support-library/preview/spring-animation.html), and the [Web](https://github.com/skevy/wobble/blob/bbc0f831e234f2d24fb905f2ec278c134d69ed68/src/index.js#L11-L22). To ensure the API is familiar to and easily understood by developers coming from other platforms, Flutter should follow this convention as well. This is a minimally-breaking change. Across [all of GitHub](https://github.com/search?l=Dart&q=springConstant&type=Code&utf8=%E2%9C%93), there are only 2 uses of the `springConstant` API (in Mondrian). Those can be easily changed to use this name. Closes #11684
-
Michael Goderbauer authored
* refactor to assembleSemanticNode * ++ * cleanup * fix test * add note * review comments * review feedback * import fix * another import fix * refactor to ensure tag * tests, tests, tests * analyzer fixes * review comments
-
Chris Bracken authored
During FLX snapshotting, changes to (or absence of) any of the following should trigger re-snapshot: 1. main() entrypoint source 2. transitive closure of sources reachable from the entrypoint source 3. the output snapshot
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/11722
-
Chris Bracken authored
This patch supports basic filtering of log lines from physical iOS devices, similar to existing functionality for iOS simulator logging. This patch also suppresses the following two log messages which are emitted at app startup on iOS 10.3 devices: libMobileGestalt MobileGestaltSupport.m:153: pid 123 (Runner) does not have sandbox access for frZQaeyWLUvLjeuEK43hmg and IS NOT appropriately entitled libMobileGestalt MobileGestalt.c:550: no access to InverseDeviceID (see <rdar://problem/11744455>)
-
Ian Hickson authored
-
Ian Hickson authored
-
Ian Hickson authored
These properties had a high cost in the documentation because they're all top-level properties, and there's really very little reason for these values to be configurable in the first place.
-
Chris Bracken authored
-
Jakob Andersen authored
Allows the user to specify the kind of project to create. The default is 'app'. Other choices are 'plugin' (the old '--plugin' behavior), and 'package'. A Flutter 'package' is a Dart package that depends on Flutter, but does not contain native code. Fixes #10377.
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
-
Jason Simmons authored
-
- 22 Aug, 2017 7 commits
-
-
Jacob Richman authored
* Add comments to 3 methods that were missing comments. Fix out of order (getter, private field, setter) tuple * Code review fix.
-
Carlo Bernaschina authored
The flakiness of commands_test is generally visible via: ``` drive:stdout: Expected: 'log: paint' drive:stdout: Actual: '' drive:stdout: Which: is different. Both strings start the same, but the actual value is missing the following trailing characters: log: paint ... ``` By returning the name of the test we will be able to understand if another test is running by reading the `Actual` value
-
Mikkel Nygaard Ravn authored
This reverts commit 8d07d3f6.
-
Mikkel Nygaard Ravn authored
-
Devon Carew authored
This reverts commit 5f9acc41.
-
Devon Carew authored
* fix some call sites of printError * review comments
-
Devon Carew authored
-
- 21 Aug, 2017 2 commits
-
-
Jacob Richman authored
Bare bones widget inspector support. Toggle the widget inspector from the flutter tool by pressing 'i'. When the widget inspector is select mode: Pointer down to to inspect a widget. Pointer click to finalize selection of a widget. You can now interact with the application as you normally would but with the inspected widget highlighted. Click the inspect icon in bottom left corner of screen to reactivate select mode.
-
Chris Bracken authored
-