File tree Expand file tree Collapse file tree 5 files changed +12
-9
lines changed
Enterwell.Clients.Wpf.Notifications.Sample
Enterwell.Clients.Wpf.Notifications Expand file tree Collapse file tree 5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 1.4.2] - 2018-10-18
8
+ ### Fixed
9
+ - Fixed messages would not dismiss
10
+
7
11
## [ 1.4.1] - 2018-10-11
8
12
### Fixed
9
13
- Fixed problem where message with animation would trigger dismiss event before disapearing
Original file line number Diff line number Diff line change @@ -17,13 +17,8 @@ public MainWindow()
17
17
{
18
18
this . InitializeComponent ( ) ;
19
19
this . DataContext = this ;
20
- Manager . OnMessageDismissed += Manager_OnMessageDismissed ;
21
20
}
22
-
23
- private void Manager_OnMessageDismissed ( object sender , NotificationMessageManagerEventArgs args )
24
- {
25
- }
26
-
21
+
27
22
private void ButtonBaseErrorOnClick ( object sender , RoutedEventArgs e )
28
23
{
29
24
this . Manager
Original file line number Diff line number Diff line change 10
10
<projectUrl >https://github.com/Enterwell/Wpf.Notifications</projectUrl >
11
11
<requireLicenseAcceptance >false</requireLicenseAcceptance >
12
12
<description >$description$</description >
13
- <releaseNotes >Fixed message header foreground not set by `SetForeground` method call. </releaseNotes >
13
+ <releaseNotes >Fixed messages would not dismiss </releaseNotes >
14
14
<copyright >Copyright (c) Enterwell d.o.o. 2017-2018</copyright >
15
15
<tags >wpf notifications</tags >
16
16
</metadata >
Original file line number Diff line number Diff line change 49
49
// You can specify all the values or you can default the Build and Revision Numbers
50
50
// by using the '*' as shown below:
51
51
// [assembly: AssemblyVersion("1.0.*")]
52
- [ assembly: AssemblyVersion ( "1.4.1 .0" ) ]
53
- [ assembly: AssemblyFileVersion ( "1.4.1 .0" ) ]
52
+ [ assembly: AssemblyVersion ( "1.4.2 .0" ) ]
53
+ [ assembly: AssemblyFileVersion ( "1.4.2 .0" ) ]
Original file line number Diff line number Diff line change @@ -202,3 +202,7 @@ this.Manager.Queue(new NotificationMessage
202
202
```
203
203
204
204
### XAML only? Supported too. You get the idea.
205
+
206
+ ## Development
207
+
208
+ Pack NuGet: ` nuget pack -Prop Configuration=Release `
You can’t perform that action at this time.
0 commit comments