Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
04b6de0
Updated .gitignore to ignore *.rsm
SkybuckFlying Nov 30, 2021
b23bcb4
TFRMAbout.GetBuildString added.
SkybuckFlying Nov 30, 2021
6600597
TFRMAbout.GetProtocolVersionString added.
SkybuckFlying Nov 30, 2021
d5acfcf
Frames used to split main graphical user interface
SkybuckFlying Nov 30, 2021
efff10a
Some code moved into frames, needs further work.
SkybuckFlying Nov 30, 2021
29922d5
Frames inserted into graphical user interface.
SkybuckFlying Nov 30, 2021
25a30eb
Fixing graphical user interface, making progress.
SkybuckFlying Nov 30, 2021
f3e48fb
Fixing graphical user interface further progress.
SkybuckFlying Nov 30, 2021
2217077
Some further graphical user interfaces fixes.
SkybuckFlying Nov 30, 2021
14e584b
PascalCoin builds, check for missing OnEvents
SkybuckFlying Dec 1, 2021
d4dcdfa
All FRMWallet frames onEvent handlers fixed.
SkybuckFlying Dec 1, 2021
5a5440a
Test code moved to TFRMTestWallet
SkybuckFlying Dec 5, 2021
59b31f2
FRMNodesIP re-designed to auto-resize
SkybuckFlying Dec 5, 2021
9745c1d
WalletConfig re-design with PageControl/Tabsheets
SkybuckFlying Dec 5, 2021
15e8635
FRMSelectLanguage re-designed to allow auto-resize
SkybuckFlying Dec 5, 2021
85efa1d
BugFix for FrameAccountExplorer access violation
SkybuckFlying Dec 5, 2021
cf95318
FrameNodeStats re-designed for auto-resize
SkybuckFlying Dec 6, 2021
5914eeb
FRMNodesIP is now re-sizeable
SkybuckFlying Dec 6, 2021
8c211ea
UFramesMessages re-designed
SkybuckFlying Dec 6, 2021
3d215e0
FrameLogs copy to clipboard button added.
SkybuckFlying Dec 6, 2021
ac6de82
UFrameInfo added. Info section re-designed.
SkybuckFlying Dec 6, 2021
2f6053c
Some GUI re-size bugs fixed
SkybuckFlying Dec 6, 2021
3f91592
FrameInfo bevel fixed, FrameNodeStats bevel fixed
SkybuckFlying Dec 6, 2021
d71550b
Copy log to clipboard fixed by selecting all text
SkybuckFlying Dec 6, 2021
7a57773
TFrameBlockChainExplorer.ChangeHashRateUnits added
SkybuckFlying Dec 6, 2021
60cda7e
Fields/Methods TFRMWallet to TFrameAccountExplorer
SkybuckFlying Dec 6, 2021
f58094c
UpdatePrivateKeys moved to TFrameAccountExplorer
SkybuckFlying Dec 6, 2021
7228586
UpdateNodeStatus moved to TFrameInfo
SkybuckFlying Dec 6, 2021
4db863b
OnNetBlackListUpdated moved to TFrameNodeStats
SkybuckFlying Dec 6, 2021
b066bca
TFRMWallet.OnNodeMessageEvent mov-> TFrameMessages
SkybuckFlying Dec 6, 2021
8914eac
UpdateAvailableConnections moved to TFrameMessages
SkybuckFlying Dec 6, 2021
6548271
CM_NetConnectionUpdated moved to TFrameNodeStats
SkybuckFlying Dec 6, 2021
d26a3a5
OnNetNodeServersUpdated moved to TFrameNodeStats
SkybuckFlying Dec 6, 2021
65fa57f
UpdateBlockChainState moved to TFrameInfo
SkybuckFlying Dec 6, 2021
6c92d3b
OnNewLog moved to TFrameLogs
SkybuckFlying Dec 6, 2021
ef037fd
FillAccountInformation mov-> TFRMWalletInformation
SkybuckFlying Dec 7, 2021
afc2304
FSelectedAccountsGrid mov-> TFrameAccountExplorer
SkybuckFlying Dec 7, 2021
7003f37
DoUpdateAccountsFilter moved to private section
SkybuckFlying Dec 7, 2021
86e0e7c
PageControlChange space + begin/end for robustness
SkybuckFlying Dec 7, 2021
b55ef65
Some white space/empty lines removed
SkybuckFlying Dec 7, 2021
d61475e
FillOperationInformation -> TFRMWalletInformation
SkybuckFlying Dec 7, 2021
c1750c8
TNetData removed from TFrameNodeStats.Create
SkybuckFlying Dec 7, 2021
98b6cf9
Potential bug fix for TFrameAccountExplorer
SkybuckFlying Dec 8, 2021
998edb9
Filter accounts by balance max events fixed.
SkybuckFlying Dec 9, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ __history/
__recovery/
dunit.ini
*.res
*.rsm
/*.DS_Store
/PIP/*.DS_Store
/PIP/resources/*.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion src/core/UConst.pas
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface
type
PtrInt = NativeInt;
PtrUInt = NativeUInt;
TThreadID = NativeUInt;
TThreadID = NativeUInt; // Skybuck: already defined in system under Delphi, could lead to (proto)type mismatches, consider disabling this in Delphi for more safety ?!? ULog.pas is activated by this as well as UFrameLogs.pas
{$ENDIF}

Const
Expand Down
Loading