-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ important bugfix of 'port' of pools + minor improvements
- Loading branch information
daWallet
committed
Apr 30, 2016
1 parent
baf57a5
commit 11710db
Showing
10 changed files
with
137 additions
and
22 deletions.
There are no files selected for viewing
Binary file renamed
BIN
+70.3 MB
BURST_Wallet_GUI_Setup_0.2.4.exe → BURST_Wallet_GUI_Setup_0.2.5.exe
Binary file not shown.
Binary file renamed
BIN
+69.8 MB
Burst_Windows_Client_Portable_0.2.4.zip → BURST_Wallet_GUI_Setup_0.2.5.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,11 @@ _____ | |
|
||
Changelog: | ||
|
||
0.2.5 | ||
|
||
+ port bugfix for miners | ||
+ minor improvements | ||
|
||
0.2.4 | ||
|
||
+ 3 new pools available | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
object Form7: TForm7 | ||
Left = 0 | ||
Top = 0 | ||
Caption = 'Fast Wallet Syncing' | ||
ClientHeight = 151 | ||
ClientWidth = 555 | ||
Color = clBtnFace | ||
Font.Charset = DEFAULT_CHARSET | ||
Font.Color = clWindowText | ||
Font.Height = -11 | ||
Font.Name = 'Tahoma' | ||
Font.Style = [] | ||
OldCreateOrder = False | ||
PixelsPerInch = 96 | ||
TextHeight = 13 | ||
object Label1: TLabel | ||
Left = 24 | ||
Top = 32 | ||
Width = 122 | ||
Height = 13 | ||
Caption = '1. Download Zip file from ' | ||
end | ||
object Label2: TLabel | ||
Left = 24 | ||
Top = 51 | ||
Width = 61 | ||
Height = 13 | ||
Caption = '2. Unzip files' | ||
end | ||
object Label3: TLabel | ||
Left = 24 | ||
Top = 89 | ||
Width = 517 | ||
Height = 13 | ||
Caption = | ||
'4. Move files to: C:\Users\Username\AppData\Roaming\BurstWallet\' + | ||
'burst_db\ (folder \AppData\ is hidden!)' | ||
end | ||
object Label4: TLabel | ||
Left = 24 | ||
Top = 108 | ||
Width = 70 | ||
Height = 13 | ||
Caption = '5. Start Wallet' | ||
end | ||
object Label5: TLabel | ||
Left = 24 | ||
Top = 70 | ||
Width = 151 | ||
Height = 13 | ||
Caption = '3. Shut down Wallet completely' | ||
end | ||
object Label6: TLabel | ||
Left = 152 | ||
Top = 32 | ||
Width = 116 | ||
Height = 13 | ||
Caption = 'http://db.burst-team.us' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
unit Unit7; | ||
|
||
interface | ||
|
||
uses | ||
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, | ||
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls; | ||
|
||
type | ||
TForm7 = class(TForm) | ||
Label1: TLabel; | ||
Label2: TLabel; | ||
Label3: TLabel; | ||
Label4: TLabel; | ||
Label5: TLabel; | ||
Label6: TLabel; | ||
private | ||
{ Private-Deklarationen } | ||
public | ||
{ Public-Deklarationen } | ||
end; | ||
|
||
var | ||
Form7: TForm7; | ||
|
||
implementation | ||
|
||
{$R *.dfm} | ||
|
||
end. |