- 23 Nov, 2015 3 commits
-
-
Kris Giesing authored
-
Adam Barth authored
This patch still requires a locally built engine. I'll remove the need for a locally built engine in a future patch. Fixes #278
-
Seth Ladd authored
-
- 21 Nov, 2015 2 commits
-
-
Adam Barth authored
Should make Travis green again. Also, add better logging to dev/update_packages.dart.
-
Jason Simmons authored
-
- 20 Nov, 2015 5 commits
-
-
Seth Ladd authored
undo auto format
-
Adam Barth authored
This patch improves the error message. Fixes #468
-
Adam Barth authored
This class was renamed to MojoEventSubscription.
-
Jason Simmons authored
This updates the Flutter tools to match the proposed new packaging of artifacts in the engine release script. * The GCS URL for artifacts is now gs://mojo/flutter/$revision/$platform * Categories have been removed from the Artifact class * All artifacts for a given platform now live in a zip file. If an artifact is not present in the local cache, then the zip will be downloaded and extracted. Note that darwin-x64 artifacts go through a different process that (for now) continues to use the old format.
-
Adam Barth authored
Fixes #512
-
- 19 Nov, 2015 1 commit
-
-
Eric Seidel authored
Fixes #489. @sethladd
-
- 18 Nov, 2015 4 commits
-
-
Adam Barth authored
We now print a sensible message if we can't find `dart` or `adb`. Also, we print a sensible message if the device isn't authorized. Fixes #380 Fixes #358
-
Adam Barth authored
Now we print the name of the asset and the base directory where we looked for the error instead of throwing a null pointer exception. Fixes #296
-
Adam Barth authored
Fixes #311
-
Adam Barth authored
This makes run_mojo more similar to flutter start.
-
- 17 Nov, 2015 8 commits
-
-
Adam Barth authored
Sample output: ``` Flutter Repository: git@github.com:flutter/flutter.git Branch: master Revision: 7be58b1a (62 minutes ago) ``` Fixes #433
-
Jason Simmons authored
Example: cd flutter/examples/stocks flutter --engine-src-path /path/to/engine/src apk -o Stocks.apk -m apk/AndroidManifest.xml
-
Adam Barth authored
The new flutter.mojo is ready for use.
-
Hixie authored
-
Adam Barth authored
Adding all the sizes of all the icons adds about 50 KB to the stocks FLX. That's probably the right trade-off until we get better at pruning the set of assets. Fixes #235
-
Adam Barth authored
This option just prints the current git revision. Fixes #40
-
Kris Giesing authored
-
Kris Giesing authored
-
- 16 Nov, 2015 2 commits
-
-
Collin Jackson authored
-
Collin Jackson authored
-
- 14 Nov, 2015 1 commit
-
-
Nathan Kerr authored
Since we don't care about the port, just allow any characters between the spaces after the device ID and the product. Running Windows 10, running "adb devices -l" with my device attached to the computer gives: FA34MW904146 device product:cm_m7 model:One device:m7 Which wasn't being matched correctly (no info on USB port).
-
- 12 Nov, 2015 6 commits
-
-
Hixie authored
Turns out that ignoring all error lines that match the empty string is a poor way to go. Also, we have to update all the example packages now too, since we analyze them. So just have travis use our update script. Also, remove flutter_tools' old travis stuff. It's now part of a bigger repo. Also, make travis use the dev Dart SDK, since we need the new analyzer. Stable is way too out of date, e.g. it still complains about libraries not having names and mixins using 'super', and the strong mode hints are even more aggressive than on dev.
-
Hixie authored
-
Hixie authored
Some of our workflows have no way to silence analyzer warnings, and the analyzer doesn't yet support constructor tear-offs, so pretend that we can't use them for now.
-
Hixie authored
Other changes in this patch: - Make the 'flutter' tool say "Updating flutter tool..." when it calls pub get, to avoid confusion about what the pub get output is about. - Make the bash flutter tool call pub get when the revision has changed. (This was already happening on Windows.) - Fix a raft of bugs found by the analyzer. - Fix some style nits in various bits of code that happened to be near things the analyzer noticed. - Remove the logic in "flutter test" that would run "pub get", since upon further reflexion it was determined it didn't work anyway. We'll probably have to add better diagnostics here and say to run the updater script. - Remove the native velocity tracker script, since it was testing code that has since been removed. Notes on ignored warnings: - We ignore warnings in any packages that are not in the Flutter repo or in the author's current directory. - We ignore various irrelevant Strong Mode warnings. We still enable strong mode because even though it's not really relevant to our needs, it does (more or less accidentally) catch a few things that are helpful to us. - We allow CONSTANTS_LIKE_THIS, since we get some of those from other platforms that we are copying for sanity and consistency. - We allow one-member abstract classes since we have a number of them where it's perfectly reasonable. - We unfortunately still ignore warnings in mojom.dart autogenerated files. We should really fix those but that's a separate patch. - We verify the actual source file when we see the 'Name non-constant identifiers using lowerCamelCase.' lint, to allow one-letter variables that use capital letters (e.g. for physics expressions) and to allow multiple-underscore variable names. - We ignore all errors on lines that contain the following magic incantation and a "#" character: // analyzer doesn't like constructor tear-offs - For all remaining errors, if the line contains a comment of the form // analyzer says "..." ...then we ignore any errors that have that "..." string in them.
-
Adam Barth authored
This command upgrades the version of flutter that you're using and runs `pub upgrade` to update the transitive dependencies.
-
Devon Carew authored
-
- 11 Nov, 2015 1 commit
-
-
Devon Carew authored
-
- 10 Nov, 2015 2 commits
-
-
Adam Barth authored
-
Devon Carew authored
-
- 09 Nov, 2015 5 commits
-
-
Hixie authored
-
Adam Barth authored
Previously, we assumed the first build configuration would have one. Now we keep looking until we find one. Also, re-ordered the configurations so that you'll get the Android one if you have both, which is probably what you would expect. Fixes #100
-
Alhaad Gokhale authored
That way we can control if we want to use devtools to run on Linux and also cleanly separate out the two uses. R=@jamesr
-
Adam Barth authored
Now we suggest using -t to specify the main Dart file. Fixes #53
-
Ian Hickson authored
-