Skip to content

Commit

Permalink
Changelog and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarDev committed Oct 18, 2018
1 parent 3a7f3fa commit 548a7f6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<projectUrl>https://github.com/Enterwell/Wpf.Notifications</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Fixed message header foreground not set by `SetForeground` method call.</releaseNotes>
<releaseNotes>Fixed messages would not dismiss</releaseNotes>
<copyright>Copyright (c) Enterwell d.o.o. 2017-2018</copyright>
<tags>wpf notifications</tags>
</metadata>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 4 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

0 comments on commit 548a7f6

Please sign in to comment.