Skip to content

Commit

Permalink
Fixed crash on sgminer 4.1.0 due to API field type incompatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
rickardandersson committed May 5, 2014
1 parent 5d538ee commit 480997e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion JsonModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class GpuSection
[JsonProperty(PropertyName = "Total MH")]
public double TotalMh { get; set; }
[JsonProperty(PropertyName = "Diff1 Work")]
public int Diff1Work { get; set; }
public double Diff1Work { get; set; }
[JsonProperty(PropertyName = "Difficulty Accepted")]
public double DifficultyAccepted { get; set; }
[JsonProperty(PropertyName = "Difficulty Rejected")]
Expand Down
8 changes: 7 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 1.0 - 22nd January 2014
# HashPeak Releases

## Version 1.0.1 - 5th May 2014

* Fixed crash on sgminer 4.1.0 due to API field "Diff1 Work" type incompatibility.

## Version 1.0 - 29th April 2014

* Initial release.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]

0 comments on commit 480997e

Please sign in to comment.