- 22 Feb, 2017 7 commits
-
-
Michael Goderbauer authored
appveyor.com runs our tests on Windows for each PR.
-
Jakob Andersen authored
Only implemented for Android devices for now. Compare the installed SHA1 to the latest build. If they match, there's no reason to reinstall the build. Fixes #8295
-
Jakob Andersen authored
* Fix bug parsing Gradle version. Version from pub_semver requires versions of the format X.Y.Z. Gradle doesn't follow semantic versioning, though, so version parsing would fail on versions like '3.2'. Fixed by writing a custom Version class. Also removed a check for apksigner when building Gradle-based projects. Fixes #8298
-
Michael Goderbauer authored
-
Adam Barth authored
Previously, a ListView would always accept user input, even if it wasn't actually scrollable. Now, by default, we don't accept user input if there's no scroll range. You can override this behavior using the ScrollPhysics. Fixes #8276 Fixes #8278 Fixes #8271
-
Michael Goderbauer authored
This reverts commit 70d7fe3a. The Java version missmatch on the bots has been resolved.
-
Adam Barth authored
Otherwise tapping the menu button causes the bottom sheet to disappear and reappear. Fixes #8275
-
- 21 Feb, 2017 14 commits
-
-
Todd Volkert authored
-
Michael Goderbauer authored
This enables us to run more tests on Windows.
-
Alexandre Ardhuin authored
-
Adam Barth authored
This functionality is independently useful. Fixes #8293
-
Adam Barth authored
Discuss how to change paint order.
-
Adam Barth authored
It doesn't need to be in the same file as RenderSliver.
-
Chris Bracken authored
Do not attempt to deploy/debug wifi connected iOS devices. ios-deploy is able to install over wifi, but we've had several bugs reporting failure to run/debug once installation has completed when the device is also connected via USB. Note that we don't currently support deploy/debug over wifi since libimobiledevice (which is also required) requires a USB connection.
-
Adam Barth authored
This functionality got lots somehow in the migration to maybePop. Fixes #8258
-
Adam Barth authored
Previously we called onPageChanged when the scroll ended, but that is too late. Now we call onPageChanged when we cross the halfway mark, which, for example, makes the tab indicator update earlier. Fixes #8265
-
Michael Goderbauer authored
Works around https://github.com/dart-lang/test/issues/545
-
Todd Volkert authored
-
Alexandre Ardhuin authored
Fixes #7734
-
Michael Thomsen authored
-
Jakob Andersen authored
* Remove SHA1 check from AndroidDevice.isAppInstalled() The docs for isAppInstalled say 'check if a version of the given app is already installed', however the current code returns true only if it's the latest build that's installed. This made sense in the past, when the use pattern was: if (!isAppInstalled(...)) installApp(...); but now the usage is: if (isAppInstalled(...)) uninstallApp(...); installApp(...); This has the probably unintended consequence that if you run `flutter install` or `flutter run` two times in a row with no source changes, the second invocation will uninstall the app, but the first invocation might not. Removing the SHA1 check makes us always uninstall the app if it's installed. Fixes #8172
-
- 20 Feb, 2017 4 commits
-
-
Alexandre Ardhuin authored
-
Jakob Andersen authored
Finally found the command to run tests in checked mode on my system. This one should've been caught by the IDE, but wasn't.
-
Jakob Andersen authored
-
Jakob Andersen authored
* Teach flutter tools to find gradle Flutter tools will now use Gradle from Android Studio, which is now found automatically. flutter doctor will verify that Android Studio has been installed, and that the included Gradle is at least version 2.14.1. It is still possible to manually configure the path to Android Studio (flutter config --android-studio-dir=XXX) or Gradle (flutter config --gradle-dir=XXX), but this should only be necessary if they're installed somewhere non-standard. Only tested on Linux and macOS for now. Fixes #8131
-
- 19 Feb, 2017 2 commits
-
-
Adam Barth authored
When resizing a PageView from 0x0, we weren't sure what the old page number was because all the pages are collapsed at zero. Now we avoid the divide by zero and default to the initialPage. Fixes #8285
-
Adam Barth authored
-
- 18 Feb, 2017 7 commits
-
-
Adam Barth authored
Previously, we were dividing by zero. Fixes #8281
-
Adam Barth authored
-
Ian Hickson authored
Also, make all painters have a toString by default.
-
Adam Barth authored
Now that all the breaking scrolling changes are in, this seems like a reasonble time to rev package:flutter's version number.
-
Ian Hickson authored
-
Todd Volkert authored
-
Michael Goderbauer authored
-
- 17 Feb, 2017 6 commits
-
-
Adam Barth authored
Rename all the "2" classes related to scrolling to remove the "2". Now that the old scrolling code is gone, we don't need to use the suffix.
-
Michael Goderbauer authored
-
Chris Bracken authored
* Do not attempt to merge non-fat frameworks in Xcode build During the Xcode build, we strip code irrelevant to the target architecture in frameworks used by the application. In the case of non-fat executables, no stripping occurs, so the frameworks can be used as-is. No merge & replace step is necessary. * fixup! Do not attempt to merge non-fat frameworks in Xcode build
-
Ian Hickson authored
* More better toStrings and more vigorous smoke testing of gallery * Update scroll_controller.dart * Update sliver.dart
-
xster authored
* Add --start-paused doc * correcting > Observatory * Updating --start-paused option w/feedback
-
Michael Goderbauer authored
Artifacts are now located in a central place. This will enable us to downlaod artifacts when we need them (instead of downloading them all upfront). This also makes replacing sky_snapshot with gen_snapshot easier.
-