Jason Simmons
eca97d6d29
Remove an unused variable from input_test
2015-10-26 12:46:28 -07:00
Adam Barth
abe6ee9b90
Rev pub packages
2015-10-26 10:42:14 -07:00
Adam Barth
27e5b1b0ba
Merge pull request #1786 from abarth/roll_skia
...
Roll Skia
2015-10-26 10:36:48 -07:00
Adam Barth
3327356aee
Roll Skia
2015-10-26 10:36:00 -07:00
Jason Simmons
d3ad502cb8
Merge pull request #1762 from jason-simmons/selection_delete_surround
...
Keep the selection within bounds in deleteSurroundingText
2015-10-26 09:58:06 -07:00
Adam Barth
ae83ec4188
Fix the build
2015-10-26 09:28:21 -07:00
Adam Barth
849c3a5c08
Merge pull request #1775 from abarth/dart_library_natives
...
Rework how we lookup native functions from Dart
2015-10-25 13:14:26 -07:00
Adam Barth
0c03d1c560
Rework how we lookup native functions from Dart
...
This patch changes how we lookup native functions from Dart to be more
extensible. This patch paves the way for removing the dart:ui_internals
library.
2015-10-25 00:41:45 -07:00
Adam Barth
b7a66619a4
Merge pull request #1773 from abarth/rm_dead_code
...
Remove a bunch of dead code
2015-10-24 19:08:38 -07:00
Ian Hickson
5306923ab8
Merge pull request #1769 from Hixie/moanalyze
...
Strong modeify the examples
2015-10-24 17:36:50 -07:00
Adam Barth
01c14ff74b
Remove a bunch of dead code
...
I left this code along in my uber patch to remove the DOM and CSS, but it's
just as dead. Also, move lone files out of dead directories into more sensible
places.
2015-10-24 16:09:21 -07:00
Adam Barth
70103c1eaa
Merge pull request #1772 from abarth/remove_dom
...
Remove the DOM and CSS
2015-10-24 00:40:20 -07:00
Adam Barth
a5768f2718
Remove the DOM and CSS
...
We don't use the DOM or CSS anymore. Instead, we work directly with the render
tree.
2015-10-24 00:26:24 -07:00
Hixie
a8bd598fc4
Strong modeify the examples
...
This makes skyanalyzer also check the examples, and fixes everything it
found there.
2015-10-23 18:13:25 -07:00
Viktor Lidholt
2d566b0cc5
Merge pull request #1768 from vlidholt/master
...
Fixes issue in sprite node
2015-10-23 16:45:16 -07:00
Viktor Lidholt
5df57057ed
Fixes issue in sprite node
2015-10-23 16:42:27 -07:00
Todd Volkert
a3605a77af
Merge pull request #1767 from tvolkert/CONTRIB
...
Minor documentation update
2015-10-23 15:52:47 -07:00
Todd Volkert
5400475e78
Update 'Getting the code and configuring your environment' to have
...
the user run download_android_tools.py before adding platform-tools
to their path so they don't fret over the platform-tools folder
not existing yet.
2015-10-23 15:08:53 -07:00
Chinmay Garde
947e469296
Merge pull request #1766 from chinmaygarde/master
...
Ensure the workbench uses the a version of sky_tools greater or equal to 0.0.26
2015-10-23 15:04:28 -07:00
Chinmay Garde
05987c725b
Ensure the workbench uses the a version of sky_tools greater or equal to 0.0.26
2015-10-23 15:01:01 -07:00
Jason Simmons
9e8386a9f8
Keep the selection within bounds in deleteSurroundingText
...
If the text is empty, the IME may call deleteSurroundingText(1, 0) if the user
hits the delete key. The selection should remain at position 0 if this
happens.
2015-10-23 14:55:14 -07:00
Chinmay Garde
e6dffa7aee
Merge pull request #1765 from chinmaygarde/master
...
Use the updated way of setting the status bar text color on iOS
2015-10-23 14:50:43 -07:00
Chinmay Garde
8e7193883b
Use the updated way of setting the status bar text color on iOS
2015-10-23 14:48:54 -07:00
Chinmay Garde
b6bb4d87c5
Merge pull request #1764 from chinmaygarde/master
...
Update Mojo SDK revision
2015-10-23 14:47:02 -07:00
Chinmay Garde
13a921eba3
Update Mojo SDK revision
2015-10-23 14:45:08 -07:00
Chinmay Garde
80c08c29be
Merge pull request #1763 from chinmaygarde/master
...
Tell the engine about the flx bundle path when loading from a precompiled snapshot
2015-10-23 14:39:05 -07:00
Chinmay Garde
4467e58221
Tell the engine about the flx bundle path when loading from a precompiled snapshot
2015-10-23 14:34:51 -07:00
Viktor Lidholt
665ee8012a
Merge pull request #1746 from vlidholt/master
...
Working node to physics world conversions
2015-10-23 13:48:45 -07:00
Viktor Lidholt
5d089f91b4
Removes debug printouts in sprite physics
2015-10-23 13:46:19 -07:00
Viktor Lidholt
5395b45172
Fixes sprite physics to work correctly with the node graph
...
Teleportation for physics bodies works again
2015-10-23 13:31:13 -07:00
Jason Simmons
aa147a443b
Merge pull request #1759 from jason-simmons/edit_text_keyboard_flicker
...
Hide the keyboard in a deferred task.
2015-10-23 12:46:58 -07:00
Adam Barth
895425cfff
Merge pull request #1761 from abarth/rm_old_text_painter
...
Delete OldTextPainter
2015-10-23 12:22:19 -07:00
krisgiesing
4bb562851e
Merge pull request #1760 from krisgiesing/fixup
...
Remove inadvertently committed file
2015-10-23 12:10:56 -07:00
Adam Barth
1a5465c570
Delete OldTextPainter
...
Also, delete all references to DOM APIs.
2015-10-23 12:07:55 -07:00
Kris Giesing
ebb377e315
Remove inadvertently committed file
2015-10-23 12:02:18 -07:00
Jason Simmons
fc8bbaaccc
Hide the keyboard in a deferred task.
...
This is intended to eliminate the flicker that occurs when one widget hides
the keyboard and then another shows it within the same update cycle.
2015-10-23 11:45:28 -07:00
krisgiesing
8b0f8503fe
Merge pull request #1743 from krisgiesing/doubletap
...
Fix #1471 Add double tap gesture
2015-10-23 11:31:06 -07:00
Kris Giesing
b8947fe269
Mark field final in double tap recognizer
2015-10-23 11:26:40 -07:00
Kris Giesing
de2af17658
Style tweak in double tap recognizer
2015-10-23 11:25:01 -07:00
Adam Barth
312dab960f
Merge pull request #1758 from abarth/enable_new_text_painter
...
Enable the new TextPainter
2015-10-23 10:22:21 -07:00
Adam Barth
6337e95170
Enable the new TextPainter
2015-10-23 10:18:49 -07:00
Adam Barth
ce769d3e31
Rev pub package
2015-10-23 10:15:14 -07:00
Adam Barth
ccd4a179b0
Rev pub packages and simplify big_red_button
2015-10-23 10:12:02 -07:00
Adam Barth
1ec03246d7
Rev pub packages
2015-10-23 10:09:17 -07:00
Adam Barth
f1f26c93e5
Change VelocityTracker to understand new pointer values
...
Now we use one velocity tracker per pointer.
Path by Kris Giesing.
Fixes #1704
2015-10-23 10:07:19 -07:00
Adam Barth
46a8d6a2b4
Merge pull request #1757 from abarth/paragraph_builder_fixes
...
Fix some fiddly bits in ParagraphBuilder
2015-10-23 09:49:36 -07:00
Adam Barth
08729e37d2
Fix some fiddly bits in ParagraphBuilder
2015-10-23 09:47:02 -07:00
Adam Barth
cfc5ac454b
Merge pull request #1756 from abarth/fix_android
...
Fix Android build
2015-10-23 09:37:16 -07:00
Adam Barth
a066323bd6
Fix Android build
...
RTLD_SELF doesn't appear to be defined on Android.
2015-10-23 08:54:05 -07:00
Adam Barth
aa339af62d
Merge pull request #1755 from abarth/new_text_painter
...
Make NewTextPainter actually work
2015-10-23 08:45:45 -07:00