Skip to content

Commit 5cba062

Browse files
author
nicehashdev
committed
Fixes
- fixed daggerhashimoto order placing bug - API version compatibility bump
1 parent 3014740 commit 5cba062

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.gitignore

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ Temporary Items
4444
*.cache
4545
src/NHB.v12.suo
4646
*.exe
47-
src/NiceHashBot/bin/Debug/NiceHashBot.exe.config
4847
*.config
49-
src/NiceHashBot/bin/Debug/NiceHashBot.vshost.exe.manifest
50-
src/NiceHashBot/bin/Release/NiceHashBot.vshost.exe.manifest
51-
src/NiceHashBot/obj/x86/Debug/NiceHashBot.csproj.FileListAbsolute.txt
48+
*.dll
49+
*.pdb
50+
src/NiceHashBot/bin/*
51+
src/NiceHashBot/obj/*

src/NiceHashBot/FormMain.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public partial class FormMain : Form
2020
public FormMain()
2121
{
2222
InitializeComponent();
23-
this.Text = Application.ProductName + " [" + Application.ProductVersion + "]";
23+
this.Text = Application.ProductName + " [v" + Application.ProductVersion + "]";
2424

2525
FormPoolInstance = null;
2626
FormNewOrderInstance = null;

src/NiceHashBot/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.3.2")]
36-
[assembly: AssemblyFileVersion("1.0.3.2")]
35+
[assembly: AssemblyVersion("1.0.3.3")]
36+
[assembly: AssemblyFileVersion("1.0.3.3")]

src/NiceHashBotLib/APIWrapper.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class APIWrapper
1313
/// <summary>
1414
/// API Version compatible with.
1515
/// </summary>
16-
public readonly static string API_VERSION_COMPATIBLE = "1.2.2";
16+
public readonly static string API_VERSION_COMPATIBLE = "1.2.6";
1717

1818
/// <summary>
1919
/// URLs for NiceHash services.
@@ -464,6 +464,8 @@ private static T Request<T>(int ServiceLocation, string Method, bool AppendCrede
464464
foreach (KeyValuePair<string, string> Entry in Parameters)
465465
URL += "&" + Entry.Key + "=" + Entry.Value;
466466
}
467+
468+
URL = URL.Replace("#", "%23");
467469
}
468470

469471
string ResponseData;

0 commit comments

Comments
 (0)