From 548a7f672eab7ace263c6a77defb1101799f3bc3 Mon Sep 17 00:00:00 2001 From: Aleksandar Toplek Date: Thu, 18 Oct 2018 20:15:31 +0200 Subject: [PATCH] Changelog and version bump --- Changelog.md | 4 ++++ .../MainWindow.xaml.cs | 7 +------ .../Enterwell.Clients.Wpf.Notifications.nuspec | 2 +- .../Properties/AssemblyInfo.cs | 4 ++-- Readme.md | 4 ++++ 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/Changelog.md b/Changelog.md index 8d22869..5b7df31 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.4.2] - 2018-10-18 +### Fixed +- Fixed messages would not dismiss + ## [1.4.1] - 2018-10-11 ### Fixed - Fixed problem where message with animation would trigger dismiss event before disapearing diff --git a/Enterwell.Clients.Wpf.Notifications.Sample/MainWindow.xaml.cs b/Enterwell.Clients.Wpf.Notifications.Sample/MainWindow.xaml.cs index 25201ec..463dcdc 100644 --- a/Enterwell.Clients.Wpf.Notifications.Sample/MainWindow.xaml.cs +++ b/Enterwell.Clients.Wpf.Notifications.Sample/MainWindow.xaml.cs @@ -17,13 +17,8 @@ public MainWindow() { this.InitializeComponent(); this.DataContext = this; - Manager.OnMessageDismissed += Manager_OnMessageDismissed; } - - private void Manager_OnMessageDismissed(object sender, NotificationMessageManagerEventArgs args) - { - } - + private void ButtonBaseErrorOnClick(object sender, RoutedEventArgs e) { this.Manager diff --git a/Enterwell.Clients.Wpf.Notifications/Enterwell.Clients.Wpf.Notifications.nuspec b/Enterwell.Clients.Wpf.Notifications/Enterwell.Clients.Wpf.Notifications.nuspec index f24dc5d..49989ef 100644 --- a/Enterwell.Clients.Wpf.Notifications/Enterwell.Clients.Wpf.Notifications.nuspec +++ b/Enterwell.Clients.Wpf.Notifications/Enterwell.Clients.Wpf.Notifications.nuspec @@ -10,7 +10,7 @@ https://github.com/Enterwell/Wpf.Notifications false $description$ - Fixed message header foreground not set by `SetForeground` method call. + Fixed messages would not dismiss Copyright (c) Enterwell d.o.o. 2017-2018 wpf notifications diff --git a/Enterwell.Clients.Wpf.Notifications/Properties/AssemblyInfo.cs b/Enterwell.Clients.Wpf.Notifications/Properties/AssemblyInfo.cs index 264a437..971b935 100644 --- a/Enterwell.Clients.Wpf.Notifications/Properties/AssemblyInfo.cs +++ b/Enterwell.Clients.Wpf.Notifications/Properties/AssemblyInfo.cs @@ -49,5 +49,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.1.0")] -[assembly: AssemblyFileVersion("1.4.1.0")] +[assembly: AssemblyVersion("1.4.2.0")] +[assembly: AssemblyFileVersion("1.4.2.0")] diff --git a/Readme.md b/Readme.md index 9ee681f..9963514 100644 --- a/Readme.md +++ b/Readme.md @@ -202,3 +202,7 @@ this.Manager.Queue(new NotificationMessage ``` ### XAML only? Supported too. You get the idea. + +## Development + +Pack NuGet: `nuget pack -Prop Configuration=Release` \ No newline at end of file