mirror of https://github.com/AMT-Cheif/Stylet.git
Merge branch 'release/1.0.7' into develop
This commit is contained in:
commit
3efcb250cf
|
@ -1,6 +1,15 @@
|
||||||
Stylet Changelog
|
Stylet Changelog
|
||||||
================
|
================
|
||||||
|
|
||||||
|
v1.0.7
|
||||||
|
------
|
||||||
|
|
||||||
|
- Expand IViewManager to add other useful stuff, which ViewManager did anyway
|
||||||
|
- Conductors now optionally dispose their children, and the WindowManager never does. This is to handle ViewModels which are displayed multiple times e.g. as dialogs
|
||||||
|
- Conductors now ensure new children are either activated or deactivated. This is to handle child ViewModels which may have been closed previously
|
||||||
|
- Make BootstrapperBase non-generic, instead having an abstract RootViewModel property. This makes it more flexible.
|
||||||
|
- Handle null/empty property name in ValidatingModelBase.ValidatePropertyAsync
|
||||||
|
|
||||||
v1.0.6
|
v1.0.6
|
||||||
------
|
------
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>Stylet</id>
|
<id>Stylet</id>
|
||||||
<version>1.0.6</version>
|
<version>1.0.7</version>
|
||||||
<title>Stylet</title>
|
<title>Stylet</title>
|
||||||
<authors>Antony Male</authors>
|
<authors>Antony Male</authors>
|
||||||
<owners>Antony Male</owners>
|
<owners>Antony Male</owners>
|
||||||
|
|
|
@ -35,5 +35,5 @@ using System.Windows.Markup;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.6.0")]
|
[assembly: AssemblyVersion("1.0.7.0")]
|
||||||
[assembly: AssemblyFileVersion("1.0.6.0")]
|
[assembly: AssemblyFileVersion("1.0.7.0")]
|
||||||
|
|
Loading…
Reference in New Issue