Skip to content

Commit 2ded540

Browse files
Initial commit
0 parents  commit 2ded540

File tree

3 files changed

+103
-0
lines changed

3 files changed

+103
-0
lines changed

.gitignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Uncomment these types if you want even more clean repository. But be careful.
2+
# It can make harm to an existing project source. Read explanations below.
3+
#
4+
# Resource files are binaries containing manifest, project icon and version info.
5+
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6+
#*.res
7+
#
8+
# Type library file (binary). In old Delphi versions it should be stored.
9+
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10+
#*.tlb
11+
#
12+
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13+
# Uncomment this if you are not using diagrams or use newer Delphi version.
14+
#*.ddp
15+
#
16+
# Visual LiveBindings file. Added in Delphi XE2.
17+
# Uncomment this if you are not using LiveBindings Designer.
18+
#*.vlb
19+
#
20+
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21+
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22+
#*.deployproj
23+
#
24+
# C++ object files produced when C/C++ Output file generation is configured.
25+
# Uncomment this if you are not using external objects (zlib library for example).
26+
#*.obj
27+
#
28+
29+
# Default Delphi compiler directories
30+
# Content of this directories are generated with each Compile/Construct of a project.
31+
# Most of the time, files here have not there place in a code repository.
32+
#Win32/
33+
#Win64/
34+
#OSX64/
35+
#OSXARM64/
36+
#Android/
37+
#Android64/
38+
#iOSDevice64/
39+
#Linux64/
40+
41+
# Delphi compiler-generated binaries (safe to delete)
42+
*.exe
43+
*.dll
44+
*.bpl
45+
*.bpi
46+
*.dcp
47+
*.so
48+
*.apk
49+
*.drc
50+
*.map
51+
*.dres
52+
*.rsm
53+
*.tds
54+
*.dcu
55+
*.lib
56+
*.a
57+
*.o
58+
*.ocx
59+
60+
# Delphi autogenerated files (duplicated info)
61+
*.cfg
62+
*.hpp
63+
*Resource.rc
64+
65+
# Delphi local files (user-specific info)
66+
*.local
67+
*.identcache
68+
*.projdata
69+
*.tvsconfig
70+
*.dsk
71+
72+
# Delphi history and backups
73+
__history/
74+
__recovery/
75+
*.~*
76+
77+
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
78+
*.stat
79+
80+
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
81+
modules/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 XFrames
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# xframes-delphi

0 commit comments

Comments
 (0)