summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-10-12[Android] Fix possible NRE when detaching NavigationPageRenderer (#415)Rui Marinho1-3/+3
2016-10-12Modified type cast to appropriate type (#447)ckrempp911-2/+2
I changed the type cast from BitmapImage to BitmapSource because if you want to do image manipulation, in UWP, you use the WriteableBitmap class.
2016-10-12Fix MasterDetailPage/NavigationPage leaks on iPad (#426)E.Z. Hart3-40/+57
* Remove Master page property changed handler to eliminate leak * Fix memory leaks with MasterDetailPage and NavigationPage on iOS
2016-10-12[XamlG] Fully qualify method names (#417)Stephane Delcroix4-10/+49
2016-10-11Update docsSamantha Houts4-1346/+1343
2016-10-11[iOS] Tapping on ListView with two fingers should not crash (#379)adrianknight891-1/+3
* Tapping on ListView with two fingers should not crash * Revert "Tapping on ListView with two fingers should not crash" This reverts commit 0b0752f3cfdbb1c29678d75bd18c5a00e564d77b. * code without refactoring * moving up selector check
2016-10-11Add reproduction for 41153 (#428)Samantha Houts2-0/+100
2016-10-11Clear cached CultureInfo and TimeZoneInfo on app resume (#423)adrianknight891-0/+3
2016-10-11OnIdiom support for Desktop (UWP) (#420)Philippe Leybaert1-1/+5
The current implementation for OnIdiom<T> is missing the Desktop property. When running in a Windows UWP "desktop" app, it always returns the Phone property.
2016-10-11[Windows] Fix crash when toggling IsPassword on multiple Entry controls (#405)Jimmy Garrido1-7/+7
* [Windows] Fix crash when toggling IsPassword on multiple Entry controls
2016-10-11Full feature compatibility with WPF's Colors class (#393)adrianknight893-6/+2225
Added color definitions to match X11 color table. Warning: the saturation of Pink was changed lightly
2016-10-11Merge branch 'adrianknight89-ios-scrolltoposition'Stephane Delcroix3-1/+55
2016-10-11[WinRT] Fix MDP and TabbedPage Appearing/Disappearing (#387)Paul DiPietro5-0/+100
2016-10-11Temporarily disabling 39489 UITest on iOS (#445)E.Z. Hart1-0/+2
2016-10-10[Nuspec] Include MacOS (#436)Rui Marinho1-27/+27
2016-10-10[Core] Set IVT to MacOSRui Marinho1-0/+1
2016-10-06[UITest] Update to UItest beta 5, fix class naming (#413)Rui Marinho9-15/+12
* [UITest] Update to UItest beta 5, fix class naming * [UITest] Fix reference to alpha package * [UITests] Update UITest
2016-10-06[A] Prevent blank page from appearing when MainPage is switched (#421)Samantha Houts4-3/+45
* repro * [A]Add horrible hack to prevent background flashing when swapping MainPage * cleanup repro * Revert "[A]Add horrible hack to prevent background flashing when swapping MainPage" This reverts commit d0fdc3856d0eaa5ec781f790d524ad7624a26560. * [A] E.Z.'s less magical but just as effective solution
2016-10-04Update ToolbarVisibility to TitleVisibility in PhoneResources (#416)E.Z. Hart1-1/+1
2016-10-04Unhook drawer listeners so MDP renderer and pages can be collected (#412)E.Z. Hart6-1/+255
Null out page in custom MDP renderer in Control Gallery so it can be collected Checkpoint Checkpoint Checkpoint Checkpoint Checkpoint Checkpoint
2016-10-04[A] PanGestureRecognizer will consistently send Started/Move event (#389)Samantha Houts3-10/+123
* Add reproduction for Bugzilla 39768 * [A] Handle onTouchEvent MOVE
2016-10-04Fixed bug 43993 by removing call to base ViewWillAppear (#333)adrianknight891-7/+4
* Fixed bug 43993 by removing call to base ViewWillAppear * Removed commented code and reduced nesting
2016-10-04Merge branch 'ios-scrolltoposition' of ↵Stephane Delcroix3-0/+54
https://github.com/adrianknight89/Xamarin.Forms into adrianknight89-ios-scrolltoposition
2016-10-04Fix tests on IOS10 [Do not merge] (#373)Rui Marinho20-163/+181
* [UITests] Update packages * [UITests] Fix formatting * [UITests] Fix tests * Add badges * Update Android csproj * fix
2016-10-03Tab children should be cast to Page (#398)adrianknight891-1/+1
2016-10-03Make CreateNativeControl virtual instead of abstract (#406)Jason Smith1-2/+5
Fixes backwards compatibility issue.
2016-10-03Set UserVisibleHint for new fragment to true (#411)E.Z. Hart1-2/+2
2016-09-30Set AndroidCodeGenTarget to XAJavaInterop1 (#404)E.Z. Hart1-0/+3
2016-09-30[A] Check for ViewStates.Gone in AppCompat TabbedPageRenderer (#365)Paul DiPietro1-5/+8
2016-09-30[WinRT] Fix regression on ListView selection with enter key (#402)Paul DiPietro1-8/+6
2016-09-30AppCompat should now be able to set title bar visibility programmatic… (#350)adrianknight893-8/+59
* AppCompat should now be able to set title bar visibility programmatically * coding style changes * making sure page layout runs only on fullscreen flag changes
2016-09-30[Android] InputTransparent and IsEnabled fixes on visual elements (#344)adrianknight891-25/+19
* intercepting touch event when inputtransparent and isenabled are set. also made some refactoring. * keeping tabs
2016-09-30Fix indentationJason Smith1-6/+6
2016-09-30[Android] Forward appearing / disappearing methods only for the last item on ↵adrianknight891-3/+8
the stack (#342) * [Android] Forward appearing / disappearing methods only for the last item on the stack * use tabs
2016-09-30[iOS] Keep our native property listener around the same time we keep our ↵Rui Marinho6-28/+91
proxy, check if we are KVO compliant before adding observer (#403)
2016-09-30[Windows] Fix Device Style inheritance (#324)Neil McAlister1-0/+45
* Make Device Styles get Style Setters from ancestor styles * Fix parentheses to match style
2016-09-27Add .bak extension to .gitignore (#388)Paul DiPietro1-1/+2
2016-09-27[Win] Will arrange native children of custom renderers (opt-in) (#322)Samantha Houts9-1/+245
* Add repro for 42602 * [Win] Add option to arrange native children * [Win] Don't allocate arrangedChildren unless required
2016-09-27[Xaml] more primitive types (#385)Stephane Delcroix8-280/+446
* [Xaml] more builtin conversion, and more type primitives * [XamlC] more builtin conversion, more type primitives
2016-09-27Reuse Handler when invoking on main thread (#383)E.Z. Hart1-1/+8
2016-09-27Don't unsubscribe/resubscribe the listener to the same INPC (#384)E.Z. Hart1-1/+8
2016-09-27Fix potential NRE accessing current application via Page.RealParent (#330)E.Z. Hart15-121/+127
* Fix potential NRE accessing current application via Page.RealParent * Update Native Bindings Gallery to use MessagingCenter
2016-09-27[UWP/WinRT] ListView UI virtualization works without explicit height on ↵Samantha Houts5-2/+129
Cell/Row (#367) * Add repro for 41271 * [UWP/WinRT] ListView virtualization works without explicit height on Cell/Row * Adjust repro to clear ItemsSource OnDisappearing. * Update docs
2016-09-27Clean up listeners and tag on ButtonRenderer during disposal (#360)E.Z. Hart8-34/+140
Clean up OnFocusChangeListener on ViewRenderer during disposal Prevent memory leak of PageContainer/FragmentContainer when animating fragment transitions Call Destroy() on Map during disposal Rebasing
2016-09-26[Xaml] allow compatible arguments for x:Factory (#382)Stephane Delcroix1-6/+21
2016-09-26[C] specify type and default value for native bindings (#376)Stephane Delcroix3-23/+38
2016-09-26[XamlC] Compiled converters (#358)Stephane Delcroix30-81/+534
2016-09-23do not compile winrt stuffs on macStephane Delcroix1-8/+8
2016-09-23fix docsStephane Delcroix1-0/+17
2016-09-23[Xaml] fix buildStephane Delcroix1-0/+1