25905 Commits

Author SHA1 Message Date
John McCutchan
9ac5c5438f Do not invoke mojom/generate.dart from sky_tool anymore 2015-07-31 10:13:48 -07:00
John McCutchan
a5e5cbc8bd Bump sky package version requirements 2015-07-31 10:07:28 -07:00
Adam Barth
a98ac70b45 Stacked does not repaint when its position changes
We were marking the parent *Widget's* render object as needing layout, but
we actually need to walk up the component tree until we find the parent
*RenderObjectWrapper* so we can mark actually mark the parent render object as
needing layout.

Fixes #408
2015-07-31 10:06:44 -07:00
Matt Perry
a54c2905ee Simplify Navigator's Transition code a bit. 2015-07-30 19:14:43 -04:00
Viktor Lidholt
c9284dff77 Merge pull request #402 from vlidholt/master
Fixes anchor points for particles in particle systems
2015-07-30 16:10:50 -07:00
Viktor Lidholt
f39dcbb4cd Fixes anchor points for particles in particle systems 2015-07-30 16:04:57 -07:00
Chinmay Garde
1868222770 Allow loading SkyX files on Mac desktop 2015-07-30 15:07:35 -07:00
James Robinson
5ba11ed66e Merge pull request #376 from jamesr/render_switch
Make Switch a standalone class with a custom RenderObject
2015-07-30 15:00:13 -07:00
John McCutchan
6c59acbfca Lower sky package requirements 2015-07-30 14:57:52 -07:00
James Robinson
445f4ee8cd Make Switch a standalone class with a custom RenderObject
This changes Switch from being a subclass of the Toggleable widget to
being a standalone Component with a custom RenderObject. This is to
enable adding Switch-specific radial reaction animations in a
subsequent patch. The CustomPaint logic that Toggleable was using does
not provide a nice way for a class and its subclass to both participate
in deciding to repaint.
2015-07-30 14:53:28 -07:00
Adam Barth
1387bd7533 Merge pull request #394 from abarth/merge_scrollable
Combine all the scrollable classes into scrollable.dart
2015-07-30 14:51:25 -07:00
Adam Barth
a740dbd734 Combine all the scrollable classes into scrollable.dart
We ended up with a bunch of different scrollable widgets and it was confusing.
This CL moves them all into one library to make them easier to find.
2015-07-30 14:44:14 -07:00
John McCutchan
7045c78259 Merge pull request #391 from johnmccutchan/bump_versions
Bump versions
2015-07-30 14:29:48 -07:00
John McCutchan
44ebd7f28e Bump versions 2015-07-30 14:29:03 -07:00
Eric Seidel
6beeede1ca Merge pull request #390 from abarth/fix_analyzer
Fix Dart analyzer warnings
2015-07-30 14:28:57 -07:00
Adam Barth
ed4afafaa3 Fix Dart analyzer warnings 2015-07-30 14:26:53 -07:00
John McCutchan
ba11e97ee6 Merge branch 'sky_services' of github.com:johnmccutchan/sky_engine into sky_services 2015-07-30 14:19:49 -07:00
John McCutchan
064744e8ca Bump sky_services to v0.0.3 2015-07-30 14:19:10 -07:00
John McCutchan
3e7eeb4760 Fix imports 2015-07-30 14:19:10 -07:00
John McCutchan
4c2df9f77c Neuter sky:init 2015-07-30 14:19:09 -07:00
John McCutchan
93b47d7523 Update mojo and mojo_services dependencies 2015-07-30 14:19:09 -07:00
John McCutchan
febece5620 Bump sky_services to v0.0.3 2015-07-30 14:18:30 -07:00
John McCutchan
f10a5f4cd0 Fix imports 2015-07-30 13:58:27 -07:00
John McCutchan
5ba2a1aa73 Neuter sky:init 2015-07-30 13:57:20 -07:00
John McCutchan
48ac4a8407 Update mojo and mojo_services dependencies 2015-07-30 13:23:34 -07:00
Eric Seidel
7a231905f1 Bump APK version in prep for release
@abarth
2015-07-30 12:41:27 -07:00
Adam Barth
05d6d55171 Merge pull request #373 from abarth/fix_stack
RenderStack should handle top, right, bottom, left all being zero
2015-07-30 11:11:07 -07:00
Adam Barth
fc48378896 Merge pull request #372 from abarth/fix_sporadic_crash
Sporadic crash from invalid touch event
2015-07-30 11:11:02 -07:00
Matt Perry
456e17d033 Use SnackBar's SlideInIntention for Drawer animation.
This required some changes to AnimationPerformance to better understand
animating with forces.
2015-07-30 13:11:32 -04:00
Adam Barth
b86ad9b053 RenderStack should handle top, right, bottom, left all being zero
Previously, we didn't set the width of the child correctly when top and bottom
(or left and right) were both specified.

Fixes #275
2015-07-30 10:08:07 -07:00
Adam Barth
3c14e41b07 Sporadic crash from invalid touch event
When embedded by the view_manager, sometimes we receive pointerup or
pointercancel events without having received a cooresponding pointerdown event.
The underlying issue is that the view_manager doesn't capture on pointerdown
and instead performs a new hit test for every pointer event. We should fix that
in view_manager, but, in the meantime, this patch makes us not crash in this
scenario.

Fixes #339
2015-07-30 09:41:40 -07:00
Jim Beveridge
67f6cab2ea Update README.md 2015-07-30 09:26:50 -07:00
Adam Barth
4b886965c8 Import mojom.dart files from package:mojom
I incorrectly thought we were now supposed to import these mojoms from the
packages that publish them. However, we're still supposed to import them from
the virtual mojom package.
2015-07-29 23:40:49 -07:00
Adam Barth
9d76f44487 Rev Dart packages
Also, update imports to account for new mojom.dart locations.
2015-07-29 23:12:07 -07:00
Adam Barth
0d57d60650 Rev version 2015-07-29 16:28:05 -07:00
Adam Barth
a982f0213b Add the option to log to sky_server 2015-07-29 16:27:41 -07:00
Chinmay Garde
6b1c12d190 Specify a default launch screen for iOS Asteroids 2015-07-29 15:05:00 -07:00
Viktor Lidholt
a17662e6f6 Adds delay between game over and return to main screen in demo game 2015-07-29 13:54:30 -07:00
Eric Seidel
7be4e42112 Add more logging for the NetworkService unavailable case
TBR=abarth@google.com
2015-07-29 13:41:34 -07:00
Viktor Lidholt
6aa8e4bb3f Refactors setting of last score in demo game to use callback 2015-07-29 13:33:17 -07:00
Viktor Lidholt
430c08f3e6 Adds display of last score to demo game 2015-07-29 13:33:17 -07:00
Chinmay Garde
f99fd192df Add launcher icons and update display name for Asteroids on iOS 2015-07-29 13:11:48 -07:00
Viktor Lidholt
4b3b5eb4f4 Fixes analyzer warnings in SpriteBox 2015-07-29 12:31:02 -07:00
Viktor Lidholt
122add4344 Merge pull request #346 from vlidholt/master
Adds star field to game start screen
2015-07-29 07:34:53 -07:00
Viktor Lidholt
de105aa013 Adds star field to game start screen 2015-07-28 17:34:39 -07:00
Viktor Lidholt
6dc4bc32ff Merge pull request #345 from vlidholt/master
Fixes analyzer warnings in sprites
2015-07-28 17:34:02 -07:00
Viktor Lidholt
fbb645bb92 Fixes compilation error in demo game and adds auto scrolling star field 2015-07-28 17:21:06 -07:00
Viktor Lidholt
8b4d02018e Fixes compilation errors in sprites 2015-07-28 17:19:56 -07:00
Adam Barth
947d505cba Merge pull request #343 from abarth/fix_analyzer
Fix analyzer warnings
2015-07-28 17:06:11 -07:00
Adam Barth
b9a820f2b7 Fix analyzer warnings 2015-07-28 17:05:30 -07:00