Skip to content

Commit e181059

Browse files
authored
Merge pull request #1 from DarkCoderSc/dev-v2
Dev v2
2 parents 102201d + 6b5f85a commit e181059

18 files changed

Lines changed: 16136 additions & 368 deletions

Assets/banner.png

751 KB
Loading

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,23 @@ En utilisant ce code, l'utilisateur accepte de garantir et de dégager Jean-Pier
159159

160160
Cette clause de non-responsabilité est sujette à modification sans préavis et l'utilisateur est responsable de vérifier les mises à jour. Si l'utilisateur n'accepte pas les termes de cette clause de non-responsabilité, il ne doit pas utiliser ce code.
161161

162+
# Changelog
163+
164+
## Dec 2022
165+
166+
- First Release
167+
168+
## Jun 2023
169+
170+
- Enumerate COM Object (Method & Properties) - File only (not in-memory yet)
171+
- Possibility to select which items user want to enumerate (exported function, com properties or methods)
172+
- Few application icons updated for more confort.
173+
- Virtual TreeView component updated to version 7.6.4.
174+
- Compiled with Delphi 11.3.
175+
162176
# Special Thanks
163177

164178
- Thomas Roccia ([@fr0gger_](https://twitter.com/fr0gger_))
179+
- mudpak ([Mudsor MASOOD](https://www.linkedin.com/in/mudsormasood)) for his valuable support and testing.
165180
- [Jam Software](https://www.jam-software.com/virtual-treeview) : TVirtualStringTree Component
166181
- [onryldz](https://github.com/onryldz/x-superobject) : XSuperObject Lib

Units/Forms/uFormAbout.dfm

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ object FormAbout: TFormAbout
33
Top = 0
44
BorderIcons = [biSystemMenu]
55
BorderStyle = bsSingle
6-
Caption = 'About PsyloDbg'
7-
ClientHeight = 295
8-
ClientWidth = 383
6+
Caption = 'About DLest'
7+
ClientHeight = 308
8+
ClientWidth = 388
99
Color = clWhite
1010
DoubleBuffered = True
1111
Font.Charset = DEFAULT_CHARSET
@@ -22,7 +22,7 @@ object FormAbout: TFormAbout
2222
AlignWithMargins = True
2323
Left = 16
2424
Top = 16
25-
Width = 351
25+
Width = 356
2626
Height = 100
2727
Margins.Left = 16
2828
Margins.Top = 16
@@ -43,7 +43,7 @@ object FormAbout: TFormAbout
4343
AlignWithMargins = True
4444
Left = 3
4545
Top = 135
46-
Width = 377
46+
Width = 382
4747
Height = 25
4848
Align = alTop
4949
Alignment = taCenter
@@ -60,7 +60,7 @@ object FormAbout: TFormAbout
6060
AlignWithMargins = True
6161
Left = 3
6262
Top = 166
63-
Width = 377
63+
Width = 382
6464
Height = 15
6565
Margins.Bottom = 0
6666
Align = alTop
@@ -72,7 +72,7 @@ object FormAbout: TFormAbout
7272
AlignWithMargins = True
7373
Left = 3
7474
Top = 181
75-
Width = 377
75+
Width = 382
7676
Height = 15
7777
Cursor = crHandPoint
7878
Margins.Top = 0
@@ -92,7 +92,7 @@ object FormAbout: TFormAbout
9292
AlignWithMargins = True
9393
Left = 3
9494
Top = 202
95-
Width = 377
95+
Width = 382
9696
Height = 15
9797
Cursor = crHandPoint
9898
Margins.Bottom = 0
@@ -111,8 +111,8 @@ object FormAbout: TFormAbout
111111
object Label5: TLabel
112112
AlignWithMargins = True
113113
Left = 3
114-
Top = 217
115-
Width = 377
114+
Top = 235
115+
Width = 382
116116
Height = 15
117117
Cursor = crHandPoint
118118
Margins.Top = 0
@@ -126,13 +126,35 @@ object FormAbout: TFormAbout
126126
Font.Style = [fsUnderline]
127127
ParentFont = False
128128
OnClick = Label5Click
129+
ExplicitTop = 217
129130
ExplicitWidth = 161
130131
end
132+
object Label1: TLabel
133+
AlignWithMargins = True
134+
Left = 3
135+
Top = 220
136+
Width = 382
137+
Height = 15
138+
Cursor = crHandPoint
139+
Margins.Bottom = 0
140+
Align = alTop
141+
Alignment = taCenter
142+
Caption = 'www.unprotect.it'
143+
Font.Charset = DEFAULT_CHARSET
144+
Font.Color = clWindowText
145+
Font.Height = -12
146+
Font.Name = 'Segoe UI'
147+
Font.Style = [fsUnderline]
148+
ParentFont = False
149+
OnClick = Label1Click
150+
ExplicitLeft = 8
151+
ExplicitWidth = 377
152+
end
131153
object ButtonClose: TButton
132154
AlignWithMargins = True
133155
Left = 128
134-
Top = 262
135-
Width = 127
156+
Top = 275
157+
Width = 132
136158
Height = 25
137159
Margins.Left = 128
138160
Margins.Top = 8

Units/Forms/uFormAbout.pas

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@ TFormAbout = class(TForm)
3434
Label4: TLabel;
3535
Label5: TLabel;
3636
ButtonClose: TButton;
37+
Label1: TLabel;
3738
procedure FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
3839
procedure ButtonCloseClick(Sender: TObject);
3940
procedure Label3Click(Sender: TObject);
4041
procedure Label4Click(Sender: TObject);
4142
procedure Label5Click(Sender: TObject);
4243
procedure FormCreate(Sender: TObject);
44+
procedure Label1Click(Sender: TObject);
4345
private
4446
{ Private declarations }
4547
public
@@ -76,6 +78,11 @@ procedure TFormAbout.FormKeyUp(Sender: TObject; var Key: Word;
7678
end;
7779
end;
7880

81+
procedure TFormAbout.Label1Click(Sender: TObject);
82+
begin
83+
Open('https://unprotect.it');
84+
end;
85+
7986
procedure TFormAbout.Label3Click(Sender: TObject);
8087
begin
8188
Open('https://www.twitter.com/darkcodersc');

0 commit comments

Comments
 (0)