Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Dev 1.5.1 (#19)
Browse files Browse the repository at this point in the history
* Hot fixes
* Allow to copy logs into the clipboard
* Update release script
* Fix small issues
  • Loading branch information
jibedoubleve authored Feb 13, 2019
1 parent 52a2451 commit 444ea82
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Probel.JsonReader.Presentation/Views/ShellView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
Text="{Binding ElementName=Grid, Path=SelectedItem.Message}">
<TextBlock.ContextMenu>
<ContextMenu>
<MenuItem Click="OnSaveExceptionInClipboard" Header="Copy message on clipboard" />
<MenuItem Click="OnSaveMessageInClipboard" Header="Copy message to clipboard" />
</ContextMenu>
</TextBlock.ContextMenu>
</TextBlock>
Expand All @@ -322,7 +322,7 @@
Text="{Binding ElementName=Grid, Path=SelectedItem.Exception}">
<TextBlock.ContextMenu>
<ContextMenu>
<MenuItem Click="OnSaveMessageInClipboard" Header="Copy exception in clipboard" />
<MenuItem Click="OnSaveExceptionInClipboard" Header="Copy exception to clipboard" />
</ContextMenu>
</TextBlock.ContextMenu>
</TextBlock>
Expand Down
4 changes: 2 additions & 2 deletions Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
// [assembly: AssemblyVersion("1.0.*")]
using System.Reflection;

[assembly: AssemblyVersion("1.5.0")]
[assembly: AssemblyFileVersion("1.5.0")]
[assembly: AssemblyVersion("1.5.1")]
[assembly: AssemblyFileVersion("1.5.1")]
2 changes: 1 addition & 1 deletion build/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Log Reader"
#define MyAppVersion "1.5.0"
#define MyAppVersion "1.5.1"
#define MyAppPublisher "Probel"
#define MyAppURL "http://www.probel.xyz"
#define MyAppExeName "Probel.JsonReader.Presentation.exe"
Expand Down

0 comments on commit 444ea82

Please sign in to comment.