Skip to content

Commit

Permalink
Changelog v1.2.0
Browse files Browse the repository at this point in the history
Fixed problems with the threads option
  • Loading branch information
Germardies committed Mar 9, 2024
1 parent 668f57a commit 23aa37d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
20 changes: 20 additions & 0 deletions Documentation/changelog/1-3-0-2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[Back to Home](../index.md)

RAPTROWINGS - Changelog v1.3.0.2 (09.03.2024)
-------------------------------------------

All listed changes and new features are always to be considered "Beta"/"Experimental" until the next release.<br />
We generally use the time between 2 releases as a functional test, which is performed by our community.<br />

Changes:
--------
BUGFIX

Bug Fixed:
----------
1. Fixed problems with the threads option
<br />

NOTE:
----------
This is the first BETA version for support with XMRig. It is a test phase!!!
1 change: 1 addition & 0 deletions Documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Changelogs
------------
Version splitting: 1 (Major version) - 1 (Major update) - 1 (Harary update) <br />
<br />
[v1.3-0-2 - 09.03.2024](changelog/1-3-0-2.md)<br />
[v1.3-0-1 - 03.03.2024](changelog/1-3-0-1.md)<br />
[v1.3-0-0 - 03.03.2024](changelog/1-3-0-0.md)<br />
[v1.2.1 - 15.10.2023](changelog/1-2-0.md)<br />
Expand Down
2 changes: 1 addition & 1 deletion Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ Public Class Form1
If threads = "Default" Then
threads = ""
Else
threads = "--threads=" & Me.ComboBox5.Text
threads = "--threads=" & Me.ComboBox5.Text & " "
End If

Dim wingsheet_main As String = Nothing
Expand Down
2 changes: 1 addition & 1 deletion Module/globale.vb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Imports System.Security.Cryptography.X509Certificates

Module globale

Public rtwVersion As String = "1-3-0-1"
Public rtwVersion As String = "1-3-0-2"
Public winDesktop = System.Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)
Public selfpath As String = Application.StartupPath
Public localfolder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData).Replace("Roaming", "Local") + "\RaptorWings\"
Expand Down

0 comments on commit 23aa37d

Please sign in to comment.