-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathfrmaboutunit.lfm
executable file
·55 lines (55 loc) · 2.36 KB
/
frmaboutunit.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
object frmAbout: TfrmAbout
Left = 598
Height = 577
Top = 181
Width = 840
Caption = 'About QuickHash-GUI'
ClientHeight = 577
ClientWidth = 840
Position = poMainFormCenter
LCLVersion = '2.2.4.0'
object memAbout: TMemo
Left = 16
Height = 516
Top = 16
Width = 810
Anchors = [akTop, akLeft, akRight, akBottom]
Lines.Strings = (
'v3.3.4, Developed by Ted Smith (c) 2011-2023'
''
'Home Page : http://www.quickhash-gui.org (First registered in 2011 on Sourceforge at http://sourceforge.net/projects/quickhash)'
''
'Github Page and Bug Tracker is : https://github.com/tedsmith/quickhash'
''
'Donations using PayPal at https://paypal.me/quickhashgui'
''
'Contributions made by DaReal Shinji (http://www.github.com/darealshinji), especially regarding repository maintenance and Debian packaging are both welcomed and acknowledged, in addition to the Lazarus forum members, who are always so helpful. '
''
'For a private communication or technical help which the website does not answer, you can e-mail me at [email protected], however, this should not be used as the means to ask about bugs or problems. Please use the bug tracker for that so that other users can benefit. '
''
'Created using the Lazarus IDE and the Freepascal Compiler (www.lazarus-ide.org). '
''
'The HashLib4Pascal library is licensed under MIT and developed by the talented Ugochukwu Mmaduekwe Stanley (aka Xor-el - see https://github.com/Xor-el/HashLib4Pascal).'
''
'xxHash64 : https://github.com/Cyan4973/xxHash and http://cyan4973.github.io/xxHash/, Github user Cyan4973. Use of the library is also welcomed and acknowledged and very much appreciated'
''
'Blake2B & Blake3 : https://blake2.net/ & https://github.com/BLAKE3-team/BLAKE3 : Use of the fast and secure Blake2B (256 bit) and Blake3 algorithms are acknowledged and welcomed. '
' '
'QuickHash is open-source and released under the GPL2 license. '
)
ReadOnly = True
ScrollBars = ssAutoBoth
TabOrder = 0
end
object Button1: TButton
AnchorSideTop.Control = memAbout
AnchorSideTop.Side = asrBottom
Left = 32
Height = 25
Top = 532
Width = 147
Caption = 'Close'
OnClick = Button1Click
TabOrder = 1
end
end