Skip to content

Commit

Permalink
Corrected binding error in samples correlation dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
thehoglet committed Jan 6, 2020
1 parent 96ca859 commit f067ee8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Company>HSE</Company>
<Product>RVis</Product>
<Copyright>Copyright © HSE 2020</Copyright>
<AssemblyVersion>0.9.11068.0</AssemblyVersion>
<FileVersion>0.9.11068.0</FileVersion>
<AssemblyVersion>0.9.11068.1</AssemblyVersion>
<FileVersion>0.9.11068.1</FileVersion>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions UI/Module/Sampling/Controls/Dialog/ViewCorrelationDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
KeyboardNavigation.IsTabStop="False"
FocusManager.IsFocusScope="False"
TextAlignment="Center"
Text="{Binding Correlation}"
Text="{Binding CorrelationN}"
/>
</Border>
</DataTemplate>
Expand All @@ -65,7 +65,7 @@
KeyboardNavigation.IsTabStop="False"
FocusManager.IsFocusScope="False"
TextAlignment="Center"
Text="{Binding Correlation}"
Text="{Binding CorrelationN}"
/>
</Border>
</DataTemplate>
Expand Down
4 changes: 2 additions & 2 deletions Version/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[assembly: AssemblyProduct("RVis")]
[assembly: AssemblyCopyright("Copyright © HSE 2020")]

[assembly: AssemblyVersion("0.9.11068.0")]
[assembly: AssemblyFileVersion("0.9.11068.0")]
[assembly: AssemblyVersion("0.9.11068.1")]
[assembly: AssemblyFileVersion("0.9.11068.1")]

[assembly: NeutralResourcesLanguage("en")]
7 changes: 5 additions & 2 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
# Beta Release

Fixes to v0.9:

* Corrected binding error in samples correlation dialog

Changes in v0.9:

* Added rank correlation to sampling
* Added data export to estimation and sensitivity
* Various bug fixes and minor enhancements

Issues fixed in v0.9: [#4](https://github.com/GMPtk/RVis/issues/4) [#5](https://github.com/GMPtk/RVis/issues/5) [#7](https://github.com/GMPtk/RVis/issues/7) [#8](https://github.com/GMPtk/RVis/issues/8)
Issues fixed in v0.9: [#4](https://github.com/GMPtk/RVis/issues/4), [#5](https://github.com/GMPtk/RVis/issues/5), [#7](https://github.com/GMPtk/RVis/issues/7), [#8](https://github.com/GMPtk/RVis/issues/8),

Please submit bug reports, feature requests and other technical matters to the [issue tracker](https://github.com/GMPtk/RVis/issues) in this repository.

0 comments on commit f067ee8

Please sign in to comment.