Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-11Merge pull request #824 from xamarin/dev/sandy/prov-updateHEADmainSandy Armstrong
Update provisionator-bootstrap.sh
2022-11-10Update provisionator-bootstrap.shSandy Armstrong
2022-11-07Merge pull request #823 from xamarin/dev/msylvia/update-provisionator-bootstrapConnor Adsit
Update provisionator bootstrap
2022-11-03And here, toocadsit
2022-11-03Reference github-pat instead of GitHub.Tokencadsit
2022-11-03Update provisionator bootstrapMatt Sylvia
2022-08-15Use a variable width for the property search filter (#816)Bret Johnson
* Use a variable width for the property search filter Make VSMac have variable width for the property search area instead of the fixed width of 150. That makes it behave more like Windows, where the width is also variable, allowing more space for the user to type. Also, the left/right/top margins around the search control are tweaked, per design input from Hylke. It also fixes AB#1522517. * Update to use Leading/Trailing instead of Left/Right * Update margins * Remove some of the spacing on right of search control
2022-08-02[HistoryLayer] On viewmodel changes we ensure our viewmodel is not null and ↵Jose Medrano
set default color (#821) Fix [AB#1569130](https://devdiv.visualstudio.com/0bdbc590-a062-4c3f-b0f6-9383f67865ee/_workitems/edit/1569130) Due to the issue https://github.com/xamarin/xamarin-macios/issues/15600, when a CGColor is allocated and its native object about to be passed to PInvoke when setting CALayout.BackgroundColor, it's possible for it be GC'ed, which CFReleases the CGColor, before the PInvoke completes and BackgroundColor gets a chance to CFRetain it. In that case, the BackgroundColor can point to a deleted object. Until there's a real fix for that race condition with https://github.com/xamarin/xamarin-macios/issues/15600 fixed, we workaround it here by doing a GC.KeepAlive ensuring that the object lives until the PInvoke completes. Also, in some scenarios looks like ViewModel is not yet set in OnViewModelChanged event, which could cause a NRE. We now protect against that too. [<img width="628" alt="CleanShot 2022-07-21 at 17 38 24@2x" src="https://user-images.githubusercontent.com/1587480/180255034-431b16e9-f02e-4e70-93c6-46485e9f5cde.png">] (https://github.com/xamarin/Xamarin.PropertyEditing/blob/dev/netonjm/fix-1569130/Xamarin.PropertyEditing.Mac/Controls/Custom/SolidColorBrushEditorViewController.cs#L33-L47) Co-authored-by: Bret Johnson <bret.johnson@microsoft.com>
2022-06-14Merge pull request #818 from xamarin/bundle-fallbackd17-4d17-3Jose Medrano
Fallback PropertyEditingResource in app bundle resources directory
2022-06-14Fallback PropertyEditingResource in app bundle resources directoryJose Medrano
2022-06-13Merge pull request #815 from xamarin/dev/sandy/macos-rc3Sandy Armstrong
Build: Use a 6.0.300 SDK and macos workload RC3
2022-05-17Build: Don't use Mono msbuild on Macdev/sandy/macos-rc3Sandy Armstrong
2022-05-17Build on macos-12 for Xcode 13.3Sandy Armstrong
2022-05-12Build: Use a 6.0.300 SDK and macos workload RC3Sandy Armstrong
2022-05-10Merge pull request #811 from xamarin/dev/sandy/workloads-again-i-know-1Sandy Armstrong
Update macos workload provisioning
2022-04-19Merge pull request #813 from xamarin/backport-pr-812-to-mainBret Johnson
[main] Remove UpdateExpansions
2022-04-19Remove UpdateExpansionsBret Johnson
Remove the call to UpdateExpansions after ReloadData in response to OnPropertiesChanged (e.g. called when selection changes). This doesn't seem necessary, as when views are recreated their expansion status is set correctly originally and AppKit remembers expansion state after. Further, this fixes AB#1521131, where the Name and Type rows are sometimes blank - apparently expanding manually, and doing it synchronously like that, causes the NSOutlineView to get confused and not show the top row sometimes.
2022-04-16Update macos workload provisioningdev/sandy/workloads-again-i-know-1Sandy Armstrong
Fixes this error that some people are seeing: Workload installation failed: microsoft.net.runtime.monoaotcompiler.task::6.0.4 is not found in NuGet feeds https://aka.ms/dotnet6/nuget/index.json;https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/VSMac/nuget/v3/index.json". See xamarin/provisionator#455
2022-04-15Merge pull request #810 from xamarin/dev/chabiss/remove_system_net_httpBret Johnson
Remove system.net.http unused reference
2022-04-15Remove system.net.http unused referenceCharles Bissonnette
2022-04-14Set a11y name for editable combo TextEdit (#808)Bret Johnson
Set the Automation.Name property for the TextEdit control in an editable combo to be the same as that for the entire combo box. Fixes AB#1501925
2022-03-19Merge pull request #803 from xamarin/dev/peterspa/EscCloseBrushEditord17-2Peter Spada
Allow ESC key to close brush editor popup
2022-03-19Use PreviewKeyDown for Ctrl+Space to show menu (#800)Bret Johnson
* Use PreviewKeyDown for Ctrl+Space to show menu Ctrl+Space is the keyboard short that can be used to show the property editor menu for a property (with options like Reset, Convert to Local Value, etc.). Previously, that was detected via a KeyBinding in XAML, which worked for text boxes but not controls like checkbox and button, which handle the key down event themselves. Now we use PreviewKeyDown instead, handling that in C# code, to work for all control types. Fixes AB#1491229
2022-03-19Brush editor popup needs to handle ESC key before VS can handle itPeter Spada
2022-03-18Merge pull request #801 from xamarin/dev/thsparks/reduce_redundant_signingthsparks
Reduce Redundant MicroBuild Signing
2022-03-18Merge pull request #798 from xamarin/dev/bretjohn/fix-1491218Bret Johnson
Set the Arrange By AutomationProperty Name correctly
2022-03-18Merge pull request #799 from xamarin/dev/bretjohn/fix-1491221Bret Johnson
Make tab order cycle for proppy controls
2022-03-18Fix typothsparks
Co-authored-by: Michael Cummings (MSFT) <mcumming@microsoft.com>
2022-03-17Merge branch 'main' of https://github.com/xamarin/Xamarin.PropertyEditing ↵thsparks
into dev/thsparks/reduce_redundant_signing
2022-03-17Revert "Use PreviewKeyDown for Ctrl+Space to show menu"Bret Johnson
This reverts commit a2e92bf834987d6e428c53cf8db31a93c04a3151.
2022-03-17Use PreviewKeyDown for Ctrl+Space to show menuBret Johnson
Ctrl+Space is the keyboard short that can be used to show the property editor menu for a property (with options like Reset, Convert to Local Value, etc.). Previously, that was detected via a KeyBinding in XAML, which worked for text boxes but not controls like checkbox and button, which handle the key down event themselves. Now we use PreviewKeyDown instead, handling that in C# code, to work for all control types. Fixes AB#1491229
2022-03-17Make tab order cycle for proppy controlsBret Johnson
Now hitting the Tab key in the last control in the property editor changes focus to the search control at the top, cycling around. And Shift-Tab in search moves to the last control. Fixes AB#1491221
2022-03-16Diable MicroBuild signing by default, then only enable it after compilation.thsparks
This way, if compilation is skipped because it the project has already been built, signing will remain turned off and we will not redundantly submit already-signed files to sign.
2022-03-15Set the Arrange By AutomationProperty Name correctlyBret Johnson
The name here should generally match the button label - it's a name, not a description. Fixes AB#1491218
2022-03-09Merge pull request #797 from ↵thsparks
xamarin/dev/thsparks/update_signing_on_property_editing Enable MicroBuild Signing
2022-03-08Merge with mainthsparks
2022-03-05Leverage Directory.Build.props and remove unnecessary configuration checks ↵thsparks
(signing pipeline only builds one configuration).
2022-03-04Enable MicroBuild Signing for Xamarin.PropertyEditing and ↵thsparks
Xamarin.PropertyEditing.Windows.csproj
2022-03-01Merge pull request #796 from xamarin/backport-pr-792-to-mainBret Johnson
[main] Reimplementation UpdateKeyViews() based in ProxyRowResponder
2022-03-01Fix commentJose Medrano
2022-03-01Caches RowCount into variable to avoid unnecessary native calls on each ↵Jose Medrano
iteration
2022-03-01Renames RowProxyResponder to ProxyResponderJose Medrano
2022-03-01Breaks DoCommandBySelector when TextNextResponderDelegate handlesJose Medrano
2022-03-01Adds some missing ProxyRespondersJose Medrano
2022-03-01Refactoring in OnPreviousResponderRequested and OnNextResponderRequestedJose Medrano
2022-03-01Fixes typoJose Medrano
2022-03-01Moves ProxyResponder button to a new classJose Medrano
2022-03-01Fixes break only when proxy is handledJose Medrano
2022-03-01Fixes NRE when viewmodel is not setJose Medrano
2022-03-01Naming changesJose Medrano