Skip to content

Commit

Permalink
Minor fixed for release
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarDev committed Apr 30, 2018
1 parent 476ff59 commit c5f07ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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.2.0] - 2018-04-30
### Added
- Implemented support for setting custom text color with `Foreground` method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,6 @@ public string Message
get => (string)GetValue(MessageProperty);
set => SetValue(MessageProperty, value);
}
/// <summary>
/// Gets or sets the brush of text.
/// <value>
/// The text brush.
/// </value>
/// </summary>
public Brush Foreground
{
get => (Brush)GetValue(ForegroundProperty);
set => SetValue(ForegroundProperty, value);
}

/// <summary>
/// Gets or sets the buttons.
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.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]

0 comments on commit c5f07ca

Please sign in to comment.