Skip to content

Commit

Permalink
version 0.3.9.6
Browse files Browse the repository at this point in the history
+ added solo mining feature in gui
+ added newest blago's miner (AVX2 support)
https://github.com/Blagodarenko/miner-burst/releases/tag/v1.170603
+ removed 32 bit plotting/mining support (half filesize)
  • Loading branch information
daWallet committed Jun 8, 2017
1 parent 1401153 commit 99fac64
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 27 deletions.
Binary file modified burstcoin-1.2.8/Burst_Wallet.exe
Binary file not shown.
6 changes: 6 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ _____

Changelog:

0.3.9.6

+ added solo mining feature in gui
+ added newest blago's miner (AVX2 support) https://github.com/Blagodarenko/miner-burst/releases/tag/v1.170603
+ removed 32 bit plotting/mining support (half filesize)

0.3.9.5

+ added new pools
Expand Down
2 changes: 1 addition & 1 deletion src/BurstWallet2.dfm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Burst Client for Win v0.3.9.6 RC3'
Caption = 'Burst Client for Win v0.3.9.6'
ClientHeight = 467
ClientWidth = 816
Color = clBtnFace
Expand Down
6 changes: 0 additions & 6 deletions src/Burst_Wallet.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,6 @@
<DCCReference Include="Unit4.pas">
<Form>Form4</Form>
</DCCReference>
<DCCReference Include="Unit9.pas">
<Form>Form9</Form>
</DCCReference>
<DCCReference Include="Unit10.pas">
<Form>Form10</Form>
</DCCReference>
Expand All @@ -133,9 +130,6 @@
<DCCReference Include="Unit12.pas">
<Form>Form12</Form>
</DCCReference>
<DCCReference Include="Unit8.pas">
<Form>Form8</Form>
</DCCReference>
<DCCReference Include="Unit13.pas">
<Form>Form13</Form>
</DCCReference>
Expand Down
8 changes: 4 additions & 4 deletions src/Unit13.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ object Form13: TForm13
WordWrap = True
end
object Label4: TLabel
Left = 17
Top = 146
Width = 294
Left = 37
Top = 148
Width = 271
Height = 16
Caption = 'Do you still want to speed up the local wallet sync? '
Caption = 'Do you want to speed up the local wallet sync? '
end
object Button1: TButton
Left = 161
Expand Down
31 changes: 16 additions & 15 deletions src/Unit4.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ object Form4: TForm4
PixelsPerInch = 96
TextHeight = 13
object Label2: TLabel
Left = 268
Left = 257
Top = 9
Width = 60
Height = 13
Caption = 'Found Plots:'
end
object Label3: TLabel
Left = 365
Top = 9
Left = 352
Top = 8
Width = 63
Height = 13
Caption = 'Choose pool:'
Expand All @@ -50,15 +50,15 @@ object Form4: TForm4
WordWrap = True
end
object Label5: TLabel
Left = 367
Top = 58
Left = 359
Top = 57
Width = 27
Height = 13
Caption = 'Pool: '
end
object Label6: TLabel
Left = 400
Top = 58
Left = 392
Top = 57
Width = 72
Height = 13
Caption = 'none - choose!'
Expand Down Expand Up @@ -115,17 +115,17 @@ object Form4: TForm4
WordWrap = True
end
object Button1: TButton
Left = 367
Left = 355
Top = 91
Width = 154
Width = 166
Height = 25
Hint = 'CPU assisted mining. Works always.'
Caption = 'Start Mining (CPU / AVX)'
TabOrder = 0
OnClick = Button1Click
end
object ListBox1: TListBox
Left = 268
Left = 257
Top = 28
Width = 85
Height = 133
Expand All @@ -136,15 +136,16 @@ object Form4: TForm4
TabOrder = 1
end
object ComboBox1: TComboBox
Left = 365
Left = 352
Top = 28
Width = 116
Width = 129
Height = 21
AutoComplete = False
TabOrder = 2
OnChange = ComboBox1Change
Items.Strings = (
'poolofd32th.club'
'pool.burstcoin.space'
'pool.burstcoin.party'
'burst.lexitoshi.uk'
'burstneon.ddns.net'
Expand All @@ -171,17 +172,17 @@ object Form4: TForm4
OnClick = Button2Click
end
object Button3: TButton
Left = 248
Left = 241
Top = -8
Width = 4
Height = 177
Default = True
TabOrder = 4
end
object Button5: TButton
Left = 367
Left = 356
Top = 137
Width = 154
Width = 165
Height = 25
Hint = 'GPU assisted mining with OpenCL'
Caption = 'Start Mining (OpenCL)'
Expand Down
4 changes: 3 additions & 1 deletion src/Unit4.pas
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ procedure TForm4.Button1Click(Sender: TObject);
Writeln(T,'"ShowUpdates" : false,');
Writeln(T,'');
Writeln(T,'"Debug" : true,');
Writeln(T,'"UseHDDWakeUp" : true,');
Writeln(T,'"UseHDDWakeUp" : false,');
Writeln(T,'');
Writeln(T,'"SendBestOnly" : true,');
Writeln(T,'"TargetDeadline": 80000000,');
Expand Down Expand Up @@ -339,6 +339,8 @@ procedure TForm4.Button2Click(Sender: TObject);
clipboard2.AsText:='BURST-XF5T-EGZV-VE3C-6TFKS';
if Label6.Caption = 'poolofd32th.club' then
clipboard2.AsText:='BURST-E925-FACX-C2X8-49772';
if Label6.Caption = 'pool.burstcoin.space' then
clipboard2.AsText:='BURST-SPAC-EWWF-CRX2-78Z6Z';

if Label6.Caption = 'pool.news-asset.com' then
begin
Expand Down

0 comments on commit 99fac64

Please sign in to comment.