Skip to content

Commit 60d1a5d

Browse files
authored
Merge pull request #5 from flutter/master
Updating my flutter fork to master.
2 parents e3aec6a + 13edb32 commit 60d1a5d

File tree

145 files changed

+3099
-665
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+3099
-665
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ env:
2222
before_script:
2323
- ./dev/bots/travis_setup.sh
2424
script:
25-
- (./bin/cache/dart-sdk/bin/dart ./dev/bots/test.dart && ./dev/bots/travis_upload.sh)
25+
# TODO(tvolkert): Re-enable `&& ./dev/bots/travis_upload.sh`
26+
- (./bin/cache/dart-sdk/bin/dart ./dev/bots/test.dart)
2627
cache:
2728
directories:
2829
- $HOME/.pub-cache

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ _See also: [Flutter's code of conduct](https://flutter.io/design-principles/#cod
88
Things you will need
99
--------------------
1010

11-
* Linux or Mac OS X. (Windows is not yet supported.)
11+
* Linux, Mac OS X, or Windows
1212
* git (used for source version control).
1313
* An IDE. We recommend [IntelliJ with the Flutter plugin](https://flutter.io/intellij-ide/).
1414
* An ssh client (used to authenticate with GitHub).
@@ -92,6 +92,8 @@ assume you want to check a single package and the flutter repository has several
9292
Running the tests
9393
-----------------
9494

95+
_The `flutter test` command is not available on Windows (See [#8516](https://github.com/flutter/flutter/issues/8516))._
96+
9597
To automatically find all files named `_test.dart` inside a package's `test/` subdirectory, and run them inside the flutter shell as a test, use the `flutter test` command, e.g:
9698

9799
* `cd examples/stocks`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# incompatible way, this version number might not change. Instead, the version
77
# number for package:flutter will update to reflect that change.
88

9-
0.0.11-dev
9+
0.0.12-dev

bin/internal/dart-sdk.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.0-dev.6.7
1+
1.24.0

bin/internal/engine.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fffe502d437ac7931f08c6cef3e3f71fbd36adaa
1+
8a2d337446ca076048608c6b6a932110e7c0f9c9
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0b5c1398d1d04ac245a310de98825cb7b3278e2a

dev/benchmarks/microbenchmarks/lib/stocks/animation_bench.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class BenchmarkingBinding extends LiveTestWidgetsFlutterBinding {
3535

3636
Future<Null> main() async {
3737
assert(false); // don't run this in checked mode! Use --release.
38-
stock_data.StockDataFetcher.actuallyFetchData = false;
38+
stock_data.StockData.actuallyFetchData = false;
3939

4040
final Stopwatch wallClockWatch = new Stopwatch();
4141
final Stopwatch cpuWatch = new Stopwatch();

dev/benchmarks/microbenchmarks/lib/stocks/build_bench.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Duration kBenchmarkTime = const Duration(seconds: 15);
1717

1818
Future<Null> main() async {
1919
assert(false); // don't run this in checked mode! Use --release.
20-
stock_data.StockDataFetcher.actuallyFetchData = false;
20+
stock_data.StockData.actuallyFetchData = false;
2121

2222
// This allows us to call onBeginFrame even when the engine didn't request it,
2323
// and have it actually do something:

dev/benchmarks/microbenchmarks/lib/stocks/layout_bench.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import '../common.dart';
1616
const Duration kBenchmarkTime = const Duration(seconds: 15);
1717

1818
Future<Null> main() async {
19-
stock_data.StockDataFetcher.actuallyFetchData = false;
19+
stock_data.StockData.actuallyFetchData = false;
2020

2121
// This allows us to call onBeginFrame even when the engine didn't request it,
2222
// and have it actually do something:

dev/bots/docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bin/cache/dart-sdk/bin/pub global activate dartdoc 0.13.0+1
1414
# a custom index.html, placing everything into dev/docs/doc.
1515
(cd dev/tools; ../../bin/cache/dart-sdk/bin/pub get)
1616
FLUTTER_ROOT=$PWD bin/cache/dart-sdk/bin/dart dev/tools/dartdoc.dart
17-
FLUTTER_ROOT=$PWD bin/cache/dart-sdk/bin/dart dev/tools/javadoc.dart
17+
FLUTTER_ROOT=$PWD bin/cache/dart-sdk/bin/dart dev/tools/java_and_objc_doc.dart
1818

1919
# Ensure google webmaster tools can verify our site.
2020
cp dev/docs/google2ed1af765c529f57.html dev/docs/doc

0 commit comments

Comments
 (0)