Skip to content

Commit

Permalink
Merge pull request #1 from DarkCoderSc/dev-v2
Browse files Browse the repository at this point in the history
Dev v2
  • Loading branch information
DarkCoderSc authored Jun 22, 2023
2 parents 102201d + 6b5f85a commit e181059
Show file tree
Hide file tree
Showing 18 changed files with 16,136 additions and 368 deletions.
Binary file modified Assets/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,23 @@ En utilisant ce code, l'utilisateur accepte de garantir et de dégager Jean-Pier

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.

# Changelog

## Dec 2022

- First Release

## Jun 2023

- Enumerate COM Object (Method & Properties) - File only (not in-memory yet)
- Possibility to select which items user want to enumerate (exported function, com properties or methods)
- Few application icons updated for more confort.
- Virtual TreeView component updated to version 7.6.4.
- Compiled with Delphi 11.3.

# Special Thanks

- Thomas Roccia ([@fr0gger_](https://twitter.com/fr0gger_))
- mudpak ([Mudsor MASOOD](https://www.linkedin.com/in/mudsormasood)) for his valuable support and testing.
- [Jam Software](https://www.jam-software.com/virtual-treeview) : TVirtualStringTree Component
- [onryldz](https://github.com/onryldz/x-superobject) : XSuperObject Lib
46 changes: 34 additions & 12 deletions Units/Forms/uFormAbout.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ object FormAbout: TFormAbout
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'About PsyloDbg'
ClientHeight = 295
ClientWidth = 383
Caption = 'About DLest'
ClientHeight = 308
ClientWidth = 388
Color = clWhite
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Expand All @@ -22,7 +22,7 @@ object FormAbout: TFormAbout
AlignWithMargins = True
Left = 16
Top = 16
Width = 351
Width = 356
Height = 100
Margins.Left = 16
Margins.Top = 16
Expand All @@ -43,7 +43,7 @@ object FormAbout: TFormAbout
AlignWithMargins = True
Left = 3
Top = 135
Width = 377
Width = 382
Height = 25
Align = alTop
Alignment = taCenter
Expand All @@ -60,7 +60,7 @@ object FormAbout: TFormAbout
AlignWithMargins = True
Left = 3
Top = 166
Width = 377
Width = 382
Height = 15
Margins.Bottom = 0
Align = alTop
Expand All @@ -72,7 +72,7 @@ object FormAbout: TFormAbout
AlignWithMargins = True
Left = 3
Top = 181
Width = 377
Width = 382
Height = 15
Cursor = crHandPoint
Margins.Top = 0
Expand All @@ -92,7 +92,7 @@ object FormAbout: TFormAbout
AlignWithMargins = True
Left = 3
Top = 202
Width = 377
Width = 382
Height = 15
Cursor = crHandPoint
Margins.Bottom = 0
Expand All @@ -111,8 +111,8 @@ object FormAbout: TFormAbout
object Label5: TLabel
AlignWithMargins = True
Left = 3
Top = 217
Width = 377
Top = 235
Width = 382
Height = 15
Cursor = crHandPoint
Margins.Top = 0
Expand All @@ -126,13 +126,35 @@ object FormAbout: TFormAbout
Font.Style = [fsUnderline]
ParentFont = False
OnClick = Label5Click
ExplicitTop = 217
ExplicitWidth = 161
end
object Label1: TLabel
AlignWithMargins = True
Left = 3
Top = 220
Width = 382
Height = 15
Cursor = crHandPoint
Margins.Bottom = 0
Align = alTop
Alignment = taCenter
Caption = 'www.unprotect.it'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = [fsUnderline]
ParentFont = False
OnClick = Label1Click
ExplicitLeft = 8
ExplicitWidth = 377
end
object ButtonClose: TButton
AlignWithMargins = True
Left = 128
Top = 262
Width = 127
Top = 275
Width = 132
Height = 25
Margins.Left = 128
Margins.Top = 8
Expand Down
7 changes: 7 additions & 0 deletions Units/Forms/uFormAbout.pas
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,14 @@ TFormAbout = class(TForm)
Label4: TLabel;
Label5: TLabel;
ButtonClose: TButton;
Label1: TLabel;
procedure FormKeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
procedure ButtonCloseClick(Sender: TObject);
procedure Label3Click(Sender: TObject);
procedure Label4Click(Sender: TObject);
procedure Label5Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Label1Click(Sender: TObject);
private
{ Private declarations }
public
Expand Down Expand Up @@ -76,6 +78,11 @@ procedure TFormAbout.FormKeyUp(Sender: TObject; var Key: Word;
end;
end;

procedure TFormAbout.Label1Click(Sender: TObject);
begin
Open('https://unprotect.it');
end;

procedure TFormAbout.Label3Click(Sender: TObject);
begin
Open('https://www.twitter.com/darkcodersc');
Expand Down
Loading

0 comments on commit e181059

Please sign in to comment.