* release/1.2.0:
Update changelog
Update NuGet packages to fix Fody breakage in newer VS versions
Add XmlnsPrefix attribute
Update the FluentModelValidator in Samples
Fix disposal in NoIoCContainerBootstrapper
Add BindAndInvoke
Deprecate BindWeak
Allow the owner of a dialog/window to be explicitly set
Make Master/Detail sample not rely on WPF magic
Fix typo
Stylet.Start should create files as UTF-8 with BOM
Add support for CommandBinding in Actions
CommandBinding isn't a DependencyObject, so we can't get its DataContext
or View.ActionTarget -- we can only use the
IRootObjectProvider.RootObject. This should be good enough for most cases,
as these tend to get installed at the root of a window.
Fixes#50
VS2015 now throws an error (it thinks Stylet.Start doesn't exist), and VS2017
deadlocks. Neither is a great outcome.
The best we can do is to ask the user to uninstall Stylet.Start
Fixes#32
We checked to see whether Top or Left were set, but not if they had a
DataBinding. This meant you couldn't explicitly set the location through
a binding.
Fixes#31
This is the encoding which VS uses, so let's be consistent. We were
previously saving as UTF-8 without a BOM, which VS seemed to be interpreting
as ASCII, and was throwing a wobbly if non-ASCII characters were later
added.
Fixes#30
* release/1.1.20:
Update changelog
If a ConductorOneActive item is closed, don't dispose it twice
When removing ConductorOneActive's ActiveItem, don't Close then Deactivate
Rename FuncNoKeyRegistration, since there is no FuncWithKeyRegistration any more
As a result of being activated/deactivated/closed, a child of a conductor
might do something which results in the conductor changing its items
collection. Therefore make sure that this collection is copied before
calling into the children while iterating.
Fixes#13
* release/1.1.17:
Update changelog
Add default FlowDirection and TextAlignment to MessageBoxViweModel
StyletIoC: Detect basic copy constructors, and don't attempt to call them
Dispose Instance bindings by default, but allow this to be configured
This removes the MessageBoxOptions input to MessageBoxViewModel, and
replaces it with explicit FlowDirection and TextAlignment inputs.
I think this is fair enough - we weren't using most of the members
of MessageBoxOptions, so allowing them to be provided was misleading.
Fixes#12