-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP - Working on resolving memory leaks
- Loading branch information
1 parent
e8faba2
commit 9c02ff0
Showing
69 changed files
with
6,529 additions
and
4,793 deletions.
There are no files selected for viewing
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 modified
BIN
-208 Bytes
(94%)
Conan Exiles - ItemStatModification Editor/ConanExilesItemStatModificationEditor.identcache
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
object formWindowSelectIncludeExclude: TformWindowSelectIncludeExclude | ||
Left = 0 | ||
Top = 0 | ||
Caption = 'Include/Exclude In Export' | ||
ClientHeight = 968 | ||
ClientWidth = 664 | ||
Color = clBtnFace | ||
Font.Charset = DEFAULT_CHARSET | ||
Font.Color = clWindowText | ||
Font.Height = -11 | ||
Font.Name = 'Tahoma' | ||
Font.Style = [] | ||
OldCreateOrder = False | ||
Position = poDesktopCenter | ||
PixelsPerInch = 96 | ||
TextHeight = 13 | ||
object formGroupFilter: TGroupBox | ||
Left = 8 | ||
Top = 8 | ||
Width = 225 | ||
Height = 129 | ||
TabOrder = 0 | ||
object formDoFilter: TCheckBox | ||
Left = 16 | ||
Top = 16 | ||
Width = 193 | ||
Height = 17 | ||
Caption = 'Not Currently Filtering Output' | ||
TabOrder = 0 | ||
end | ||
object Memo1: TMemo | ||
Left = 16 | ||
Top = 39 | ||
Width = 193 | ||
Height = 74 | ||
Enabled = False | ||
Lines.Strings = ( | ||
'When ticked, the JSON output will be ' | ||
'filtered accordingly.' | ||
'' | ||
'When unticked, the JSON will output ' | ||
'everything as it normally would.') | ||
ParentColor = True | ||
TabOrder = 1 | ||
end | ||
end | ||
object GroupBox1: TGroupBox | ||
Left = 8 | ||
Top = 167 | ||
Width = 225 | ||
Height = 146 | ||
TabOrder = 1 | ||
object formDoIncludeExclude: TCheckBox | ||
Left = 16 | ||
Top = 16 | ||
Width = 193 | ||
Height = 17 | ||
Caption = 'Only Including Ticked ItemStatMods' | ||
TabOrder = 0 | ||
end | ||
object Memo2: TMemo | ||
Left = 16 | ||
Top = 39 | ||
Width = 193 | ||
Height = 90 | ||
Enabled = False | ||
Lines.Strings = ( | ||
'When ticked, ticked items in the list ' | ||
'will be excluded from the JSON ' | ||
'output.' | ||
'' | ||
'When unticked, only ticked items will ' | ||
'be in the JSON output.') | ||
ParentColor = True | ||
TabOrder = 1 | ||
end | ||
end | ||
object formListFilter: TCheckListBox | ||
Left = 248 | ||
Top = 8 | ||
Width = 408 | ||
Height = 952 | ||
ItemHeight = 13 | ||
TabOrder = 2 | ||
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,31 @@ | ||
unit Unit2; | ||
|
||
interface | ||
|
||
uses | ||
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, | ||
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ComCtrls, Vcl.StdCtrls, Vcl.CheckLst; | ||
|
||
type | ||
TformWindowSelectIncludeExclude = class(TForm) | ||
formDoFilter: TCheckBox; | ||
formGroupFilter: TGroupBox; | ||
Memo1: TMemo; | ||
GroupBox1: TGroupBox; | ||
formDoIncludeExclude: TCheckBox; | ||
Memo2: TMemo; | ||
formListFilter: TCheckListBox; | ||
private | ||
{ Private declarations } | ||
public | ||
{ Public declarations } | ||
end; | ||
|
||
var | ||
formWindowSelectIncludeExclude: TformWindowSelectIncludeExclude; | ||
|
||
implementation | ||
|
||
{$R *.dfm} | ||
|
||
end. |
Binary file modified
BIN
+106 KB
(100%)
...xiles - ItemStatModification Editor/Win64/Debug/ConanExilesItemStatModificationEditor.exe
Binary file not shown.
Binary file modified
BIN
+66.9 KB
(100%)
...xiles - ItemStatModification Editor/Win64/Debug/ConanExilesItemStatModificationEditor.rsm
Binary file not shown.
Binary file modified
BIN
+1.14 KB
(100%)
Conan Exiles - ItemStatModification Editor/Win64/Debug/Unit1.dcu
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...les - ItemStatModification Editor/Win64/Release/ConanExilesItemStatModificationEditor.exe
Binary file not shown.
18 changes: 18 additions & 0 deletions
18
...les - ItemStatModification Editor/__history/ConanExilesItemStatModificationEditor.dpr.~9~
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,18 @@ | ||
program ConanExilesItemStatModificationEditor; | ||
|
||
uses | ||
Vcl.Forms, | ||
Unit1 in 'Unit1.pas' {formWindow}, | ||
Form_ConanExiles_ItemStatModification_Entry in '..\Conan Exiles - Delphi Forms\Form_ConanExiles_ItemStatModification_Entry.pas' {Form_ConanExiles_ItemStatModification_Entry: TFrame}, | ||
fytyConanExilesTypes in '..\Conan Exiles - API\fytyConanExilesTypes.pas', | ||
fytyConanExilesTypesFunctions in '..\Conan Exiles - API\fytyConanExilesTypesFunctions.pas', | ||
djson in '..\_Library - delphi-json-master\djson.pas'; | ||
|
||
{$R *.res} | ||
|
||
begin | ||
Application.Initialize; | ||
Application.MainFormOnTaskbar := True; | ||
Application.CreateForm(TformWindow, formWindow); | ||
Application.Run; | ||
end. |
Oops, something went wrong.