Skip to content

Commit

Permalink
update 0.3.11
Browse files Browse the repository at this point in the history
+ update blago's miner (25% faster)
+ replaced broken online wallet links
+ minor improvements and bugfixes
  • Loading branch information
daWallet committed Sep 1, 2017
1 parent 8f208e4 commit b60b1eb
Show file tree
Hide file tree
Showing 22 changed files with 71 additions and 76 deletions.
Binary file modified burstcoin-1.2.9/Burst_Wallet.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
39 changes: 0 additions & 39 deletions burstcoin-1.2.9/miner-burst-1.170603/miner.conf

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
32 changes: 32 additions & 0 deletions burstcoin-1.2.9/miner-burst-1.170820/miner.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"Mode" : "pool",
"Server" : "100pb.online",
"Port": 8124,

"UpdaterAddr" : "100pb.online",
"UpdaterPort": "8124",

"InfoAddr" : "100pb.online",
"InfoPort": "8124",

"EnableProxy": false,
"ProxyPort": 8126,

"Paths":["C:\\plots","D:\\plots", "G:\\plots","H:\\plots","I:\\plots","J:\\plots","K:\\plots","L:\\plots","N:\\plots","P:\\plots","R:\\plots","S:\\plots","T:\\plots","U:\\plots"],
"CacheSize" : 10000,

"Debug": true,
"UseHDDWakeUp": true,

"TargetDeadline": 80000000,

"SendInterval": 100,
"UpdateInterval": 950,

"UseLog" : true,
"ShowWinner" : false,
"UseBoost" : false,

"WinSizeX": 76,
"WinSizeY": 60
}
2 changes: 1 addition & 1 deletion burstcoin-1.2.9/var/owallet1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://wallet.burst-team.us
https://wallet1.burst-team.us:2083
2 changes: 1 addition & 1 deletion burstcoin-1.2.9/var/owallet2
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://wallet.burst-team.us:8126
https://wallet.burst.cryptoguru.org:8125
2 changes: 1 addition & 1 deletion burstcoin-1.2.9/var/owallet3
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://wallet.burst-team.us:8127
https://wallet3.burst-team.us:2083
2 changes: 1 addition & 1 deletion burstcoin-1.2.9/var/owallet4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
https://wallet.burst-team.us:8128
https://wallet4.burst-team.us:2083
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.11

+ added blago's latest miner (v1.170820) 25% faster! github.com/Blagodarenko/miner-burst/releases
+ replaced online wallet links
+ minor improvements and bugfixes

0.3.10

+ updated to Core version 1.2.9
Expand Down
12 changes: 6 additions & 6 deletions 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.10'
Caption = 'Burst Client for Win v0.3.11'
ClientHeight = 467
ClientWidth = 816
Color = clBtnFace
Expand Down Expand Up @@ -260,14 +260,10 @@ object Form1: TForm1
Caption = 'Block Explorer'
OnClick = BlockExplorer1Click
end
object AssetExplorer1: TMenuItem
Caption = 'Asset Explorer'
Visible = False
OnClick = AssetExplorer1Click
end
end
object Faucets1: TMenuItem
Caption = 'Faucets'
Visible = False
object N10Burstbyburstcoininfo1: TMenuItem
Caption = '[burstcoin.info]'
OnClick = N10Burstbyburstcoininfo1Click
Expand All @@ -287,6 +283,10 @@ object Form1: TForm1
Caption = 'Forums'
OnClick = Forums2Click
end
object Forums21: TMenuItem
Caption = 'Forums #2'
OnClick = Forums21Click
end
object DDLBlockchain1: TMenuItem
Caption = 'DDL Blockchain'
Visible = False
Expand Down
14 changes: 7 additions & 7 deletions src/BurstWallet2.pas
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ TForm1 = class(TForm)
WebBrowser1: TWebBrowser;
Network2: TMenuItem;
BlockExplorer1: TMenuItem;
AssetExplorer1: TMenuItem;
Forums21: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure About1Click(Sender: TObject);
procedure AddWallet1Click(Sender: TObject);
Expand Down Expand Up @@ -104,10 +104,10 @@ TForm1 = class(TForm)
procedure FormShow(Sender: TObject);
procedure Network2Click(Sender: TObject);
procedure BlockExplorer1Click(Sender: TObject);
procedure AssetExplorer1Click(Sender: TObject);
procedure ToolButton3Click(Sender: TObject);
procedure ToolButton4Click(Sender: TObject);
procedure ToolButton15Click(Sender: TObject);
procedure Forums21Click(Sender: TObject);


private
Expand Down Expand Up @@ -349,11 +349,6 @@ procedure TForm1.ApplicationEvents1Minimize(Sender: TObject);
TrayIcon1.ShowBalloonHint;
end;

procedure TForm1.AssetExplorer1Click(Sender: TObject);
begin
ShellExecute(0, 'open', 'http://asset.burstnation.com', nil, nil, SW_SHOWNORMAL);
end;

procedure TForm1.BlockExplorer1Click(Sender: TObject);
begin
ShellExecute(0, 'open', 'http://www.burstcoin.biz', nil, nil, SW_SHOWNORMAL);
Expand Down Expand Up @@ -621,6 +616,11 @@ procedure TForm1.FormShow(Sender: TObject);
end;
end;

procedure TForm1.Forums21Click(Sender: TObject);
begin
ShellExecute(0, 'open', 'https://forums.getburst.net/', nil, nil, SW_SHOWNORMAL);
end;

procedure TForm1.Forums2Click(Sender: TObject);
begin
ShellExecute(0, 'open', 'https://forums.burst-team.us/category/5/help-support', nil, nil, SW_SHOWNORMAL);
Expand Down
22 changes: 11 additions & 11 deletions src/Unit11.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ object Form11: TForm11
Top = 0
BorderStyle = bsDialog
Caption = 'Clean up DB'
ClientHeight = 118
ClientWidth = 355
ClientHeight = 129
ClientWidth = 352
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Expand All @@ -19,8 +19,8 @@ object Form11: TForm11
object Label1: TLabel
Left = 16
Top = 16
Width = 331
Height = 39
Width = 316
Height = 52
Caption =
'Sometimes the local Wallet does not start because of a corrupted' +
' DB. Click the Button below to delete some or all Blocks of the ' +
Expand All @@ -29,23 +29,23 @@ object Form11: TForm11
WordWrap = True
end
object Label2: TLabel
Left = 213
Top = 104
Left = 204
Top = 107
Width = 25
Height = 13
Caption = 'Done'
Visible = False
end
object Label4: TLabel
Left = 117
Top = 79
Width = 23
Top = 87
Width = 10
Height = 13
Caption = 'or'
end
object Button2: TButton
Left = 246
Top = 73
Top = 81
Width = 75
Height = 25
Caption = 'Cancel'
Expand All @@ -54,7 +54,7 @@ object Form11: TForm11
end
object Button3: TButton
Left = 140
Top = 73
Top = 81
Width = 75
Height = 25
Caption = 'Clean DB'
Expand All @@ -63,7 +63,7 @@ object Form11: TForm11
end
object Button1: TButton
Left = 30
Top = 73
Top = 81
Width = 75
Height = 25
Caption = 'PopOff'
Expand Down
4 changes: 2 additions & 2 deletions src/Unit4.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ object Form4: TForm4
WordWrap = True
end
object Button1: TButton
Left = 355
Top = 91
Left = 356
Top = 88
Width = 166
Height = 25
Hint = 'CPU assisted mining. Works always.'
Expand Down
10 changes: 3 additions & 7 deletions src/Unit4.pas
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ TForm4 = class(TForm)
pool : String;
port : String;
pw : TextFile;
const BLAGO_VERSION = String('1.170603');
const BLAGO_VERSION = String('1.170820');
const JMINER_VERSION = String('0.4.10-SNAPSHOT');

public
Expand Down Expand Up @@ -236,21 +236,17 @@ procedure TForm4.Button1Click(Sender: TObject);
Writeln(T,' "'+directories+'"');
Writeln(T,'],');
Writeln(T,'"CacheSize" : 40000,');
Writeln(T,'"ShowMsg" : false,');
Writeln(T,'"ShowUpdates" : false,');
Writeln(T,'');
Writeln(T,'"Debug" : true,');
Writeln(T,'"UseHDDWakeUp" : false,');
Writeln(T,'');
Writeln(T,'"SendBestOnly" : true,');
Writeln(T,'"TargetDeadline": 80000000,');
Writeln(T,'');
Writeln(T,'"UseFastRcv" : false,');
Writeln(T,'"SendInterval" : 100,');
Writeln(T,'"UpdateInterval" : 950,');
Writeln(T,'');
Writeln(T,'"UseLog" : false,');
Writeln(T,'"ShowWinner" : true,');
Writeln(T,'"ShowWinner" : false,');
Writeln(T,'"UseBoost" : false,');
Writeln(T,'');
Writeln(T,'"WinSizeX" : 76,');
Expand Down Expand Up @@ -633,6 +629,6 @@ procedure TForm4.FormHide(Sender: TObject);

procedure TForm4.Label11Click(Sender: TObject);
begin
ShellExecute(0, 'open', 'http://burstcoin.biz/faucet', nil, nil, SW_SHOWNORMAL);
ShellExecute(0, 'open', 'https://forums.burst-team.us/category/51/i-need-a-burst-a-burst-is-all-i-need', nil, nil, SW_SHOWNORMAL);
end;
end.

0 comments on commit b60b1eb

Please sign in to comment.