Stylet/CHANGELOG.txt

96 lines
2.7 KiB
Plaintext
Raw Normal View History

2014-04-22 04:47:57 -07:00
Stylet Changelog
================
2014-12-02 09:38:39 -08:00
v1.0.2
------
- Move back to separate arguments for ShowMessageBox - this is more consistent with MessageBox.Show
- ViewManager now accepts an IViewManagerConfig (implemented by BootstrapperBase), which simplifies the IoC container setup
- Add an overridable CanClose() method to screen (called by the CanCloseAsync version by default). This means screens don't have to deal with tasks if they're fully synchronous
2014-12-01 04:44:26 -08:00
v1.0.1
------
- Remove the IoC static service locator. It's no longer needed internally, and I don't want to encourage such bad behaviour. You can write your own easily if you need - see the docs
- Remove the static AssemblySource class, instead using a collection stored on the Bootstrapper
- Add Bootstrappers projects, with sample bootstrappers for a range of IoC containers
- Remove extension methods on IContainer, instead putting them in the interface. This means people don't have to have 'using StyletIoC' in order to see the methods they want to use
2014-11-27 03:06:38 -08:00
v1.0.0
------
- Logging improvements
- ViewManager improvements
- Revamp how the bootloader is added to the Application - it's a lot cleaner now
- Conductors will dispose their children if they're IDisposable
- StyletIoC updates: automatic Func registrations, refactoring, bug fixes, instance binding
2014-07-26 10:19:08 -07:00
v0.9.11
-------
- Add Execute.PostToUIThreadAsync
- Rename ILogger and LogManager to not conflict in projects also using NLog
2014-07-25 05:14:59 -07:00
v0.9.10
-------
- Add the concept of Channels to the EventAggregator
- Remove the WeakEventManager (as it was too complex), and replace with an easier to use (but less powerful) implementation
- Simplify IViewManager
- Add logging to important parts of Stylet
- Fix bug where Actions could throw exceptions when they shouldn't
2014-05-27 05:29:22 -07:00
v0.9.9
------
- Fix bug where Stylet would launch before resources were loaded
2014-05-27 05:00:23 -07:00
v0.9.8
------
- Fix bug with symbols package
2014-05-27 04:55:14 -07:00
v0.9.7
------
- Add ValidatingModelBase
- Increase code coverage to > 99%
- Add MessageBox implementation
- Generate XML documentation
- Misc tweaks and fixes
2014-04-24 05:09:11 -07:00
v0.9.6
------
- Fix bug when starting the bootloader
2014-04-24 04:59:50 -07:00
v0.9.5
------
- Add StyletConductorItemsControl style, for using an ItemsControl with a Conductor<T>.Collection.AllActive
- Make Execute.OnUIThread synchronous, and add BeginOnUIThread (asynchronous)
- Rename conductors. It's now Conductor<T>.Collection.xxx not Conductor<T>.Collections.xxx
2014-04-23 12:29:04 -07:00
v0.9.4
------
- Fix BindableCollection issues
- ActionExtension has configurable behaviour if target/action are null/not found
- ActionExtension works with things like Hyperlinks
- Misc tweaks and fixes
2014-04-22 06:55:24 -07:00
v0.9.3
------
- Fix bootstrapper issues
2014-04-22 04:54:31 -07:00
v0.9.2
------
- Remove debugging from install.ps1 which shouldn't have been there.
2014-04-22 04:47:57 -07:00
v0.9.1
------
Initial release