1468 Commits

Author SHA1 Message Date
John McCutchan
522e45bd25 Merge pull request #2028 from johnmccutchan/upgrade_dart
Switch to using callback to get observatory data (working)
2015-11-11 08:36:06 -08:00
John McCutchan
888d9e5108 Switch to using callback to get observatory data (working) 2015-11-11 07:25:44 -08:00
Jason Simmons
47ff7f060f Merge pull request #2024 from jason-simmons/engine_release
Rev sky_engine and sky_services
2015-11-10 15:06:51 -08:00
Jason Simmons
ee208f5933 Rev sky_engine and sky_services 2015-11-10 15:03:49 -08:00
Adam Barth
ace51bc14d Merge pull request #2018 from krisgiesing/cleanup
Remove examples directory
2015-11-10 08:11:35 -08:00
Chinmay Garde
aa3532aeba Merge pull request #2020 from chinmaygarde/master
Extract jinja template rule from Android specific rules
2015-11-09 16:49:59 -08:00
Chinmay Garde
a8e96aa6bd Extract jinja template rule from Android specific rules 2015-11-09 16:49:37 -08:00
Kris Giesing
51659c333f Remove examples directory 2015-11-09 12:56:44 -08:00
Collin Jackson
bc59b17ec0 Merge pull request #2016 from collinjackson/sky_snapshot
Move sky_snapshot to the correct place
2015-11-09 12:55:16 -08:00
Collin Jackson
719f613410 Move sky_snapshot to the correct place 2015-11-09 12:27:05 -08:00
Collin Jackson
7fbe78f922 Merge pull request #2015 from abarth/error_handling
Improve error handling in sky_snapshoter
2015-11-09 12:23:55 -08:00
Adam Barth
26f3c71132 Improve error handling in sky_snapshoter
Now we print a more sensible error message and exit with an error instead of
appearing to crash.

Fixes https://github.com/flutter/flutter/issues/53
2015-11-09 12:12:57 -08:00
Ian Hickson
ed546fdd04 Update CONTRIBUTING.md 2015-11-09 09:35:08 -08:00
Adam Barth
f98c51ef1f Merge pull request #2013 from abarth/update_contributing
Update CONTRIBUTING.md to account for flutter.git
2015-11-08 22:12:48 -08:00
Adam Barth
b896b14329 Update CONTRIBUTING.md to account for flutter.git 2015-11-08 21:56:42 -08:00
Adam Barth
7b5f4da648 Merge pull request #2009 from abarth/rm_packages
Remove Dart packages which have moved to flutter.dart
2015-11-07 00:47:54 -08:00
Adam Barth
f1560a03f3 Remove Dart packages which have moved to flutter.dart 2015-11-07 00:34:12 -08:00
Adam Barth
44dd3f456b Merge pull request #1972 from krisgiesing/examples
Add flutter.yaml for address_book example
2015-11-06 20:33:34 -08:00
Adam Barth
5981407ff5 Clean up updater dependencies 2015-11-06 15:47:44 -08:00
Adam Barth
473ccd68c2 Rev pub spec 2015-11-06 15:39:56 -08:00
Adam Barth
3f414868c6 Rev pub packages 2015-11-06 15:38:35 -08:00
Adam Barth
cbefe07aec Rev sky_services pub spec 2015-11-06 15:32:27 -08:00
Adam Barth
e3c0e0da10 Rev sky_engine, sky_services, and mojo_sdk 2015-11-06 14:59:23 -08:00
Collin Jackson
60244fc131 Merge pull request #2001 from collinjackson/roll_mojo
Roll mojo
2015-11-06 14:21:51 -08:00
Collin Jackson
dd85a2ee5f Remove reference to directory that doesn't exist 2015-11-06 13:57:21 -08:00
Chinmay Garde
6430021a15 Merge pull request #1994 from chinmaygarde/master
Publish service isolate dart files to sky_engine/sdk_ext
2015-11-06 11:43:54 -08:00
Seth Ladd
5d9ed995ce fix typo 2015-11-06 11:42:23 -08:00
Chinmay Garde
5d94a7a32e Publish service isolate dart files to sky_engine/sdk_ext 2015-11-06 11:33:09 -08:00
Seth Ladd
f9c7c220ed clarify flutter is early-stage 2015-11-06 10:26:03 -08:00
Ian Hickson
df739704ac Merge pull request #1974 from Hixie/analyzer-skip-bogus-files
Exclude .# files from skyanalyzer
2015-11-05 21:35:24 -08:00
Chinmay Garde
47b7ddf561 Merge pull request #1985 from chinmaygarde/master
Dart isolate symbols are no longer in the blink namespace. Fix the snapshotter to account for the same.
2015-11-05 20:24:45 -08:00
Chinmay Garde
5b679b84a8 Dart isolate symbols are no longer in the blink namespace. Fix the snapshotter to account for the same. 2015-11-05 20:01:22 -08:00
Florian Loitsch
cf90d0c297 Fix typo. 2015-11-05 16:19:18 -08:00
Hixie
1f69f9c585 Exclude .# files from skyanalyzer
Emacs uses these as lock files and skyanalyzer was often getting
confused trying to analyze them.
2015-11-05 15:36:09 -08:00
Kris Giesing
323a0c15f0 Remove unneeded flutter.yaml property 2015-11-05 15:25:17 -08:00
Kris Giesing
749dfc97fd Add flutter.yaml for address_book example 2015-11-05 15:20:05 -08:00
Ian Hickson
1fe60d4d1e Merge pull request #1967 from Hixie/draggable-gestures
Make Draggable use gestures
2015-11-05 15:19:31 -08:00
Hixie
0fcf6028bf Make Draggable use gestures
Draggable is now itself a gesture arena member. This means it won't
conflict with other gesture recognisers in the same path.

This also allows variants of Draggable that are triggered by other
gestures.

Also, some cleanup of DoubleTapGestureRecognizer, GestureDetector, and
PrimaryPointerGestureRecognizer.

Also, make MultiTapGestureRecognizer support a timeout for longpress.

Also, make Draggable data be typed.

Also, hide warnings about constructor warnings for now. Analyzer doesn't
support them yet. (Have to do this on a per-line basis)

Directions for future research:
 - animating the avatar (enter/exit transitions)
 - interaction with the navigator (canceling a drag on page navigation, etc)
 - double-tap draggable
2015-11-05 15:16:59 -08:00
Ian Hickson
1fb369b4a5 Merge pull request #1968 from Hixie/analyzer
skyanalyzer cleanup
2015-11-05 15:15:44 -08:00
Matt Perry
d9d4b2cad2 Fix updater. It was looking for the wrong files. 2015-11-05 17:56:50 -05:00
Hixie
9949143fbe skyanalyzer cleanup
Remove skyanalyzer filters for strong-mode hints that are gone now anyway.
2015-11-05 14:44:09 -08:00
krisgiesing
6fce298ea2 Merge pull request #1951 from flutter/krisgiesing-docs-edit
Update CONTRIBUTING.md
2015-11-04 18:23:45 -08:00
Adam Barth
93800eaa72 Fix crash in script 2015-11-04 14:51:08 -08:00
Adam Barth
09e842bca6 Rev pub specs 2015-11-04 14:49:29 -08:00
Adam Barth
3c1799d710 Add FLX to the release train 2015-11-04 14:47:40 -08:00
Adam Barth
9dcfa25572 Rev pub packages 2015-11-04 14:19:44 -08:00
krisgiesing
b5483c25aa Update CONTRIBUTING.md 2015-11-04 13:36:44 -08:00
Matt Perry
a6f9bc183c Merge pull request #1946 from mpcomplete/throw
Check platform before opening /dev/urandom
2015-11-04 15:43:56 -05:00
Matt Perry
08c86917f5 Merge pull request #1947 from mpcomplete/base64
Use crypto package for BASE64 encoding.
2015-11-04 15:15:06 -05:00
Matt Perry
698f7074dc Ensure seedRandom doesn't throw if /dev/urandom doesn't exist. 2015-11-04 14:50:04 -05:00