Skip to content

Commit 7ce7425

Browse files
authored
Initial commit
0 parents  commit 7ce7425

File tree

10 files changed

+1027
-0
lines changed

10 files changed

+1027
-0
lines changed

.gitattributes

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
#
2+
# The file was created by KitsuneLab - Entity (@Sples1)
3+
#
4+
# Auto detect text files and perform LF normalization
5+
* text=auto
6+
7+
#
8+
# The above will handle all files NOT found below
9+
#
10+
# These files are text and should be normalized (Convert crlf => lf)
11+
*.gitattributes text
12+
.gitignore text
13+
*.md text diff=markdown
14+
.gitkeep export-ignore
15+
16+
#
17+
# Exclude files from exporting
18+
#
19+
20+
.gitignore export-ignore
21+
.gitattributes export-ignore
22+
.gitkeep export-ignore
23+
24+
#
25+
# Enable syntax highlighting for files with `.gitattributes` extensions.
26+
#
27+
*.gitattributes linguist-language=gitattributes
28+
29+
#
30+
# SourcePawn
31+
#
32+
*.sp linguist-language=SourcePawn
33+
*.inc linguist-language=SourcePawn
34+
35+
# Documents
36+
*.bibtex text diff=bibtex
37+
*.doc diff=astextplain
38+
*.DOC diff=astextplain
39+
*.docx diff=astextplain
40+
*.DOCX diff=astextplain
41+
*.dot diff=astextplain
42+
*.DOT diff=astextplain
43+
*.pdf diff=astextplain
44+
*.PDF diff=astextplain
45+
*.rtf diff=astextplain
46+
*.RTF diff=astextplain
47+
*.md text diff=markdown
48+
*.tex text diff=tex
49+
*.adoc text
50+
*.textile text
51+
*.mustache text
52+
*.csv text
53+
*.tab text
54+
*.tsv text
55+
*.txt text
56+
*.sql text
57+
58+
# Graphics
59+
*.png binary
60+
*.jpg binary
61+
*.jpeg binary
62+
*.gif binary
63+
*.tif binary
64+
*.tiff binary
65+
*.ico binary
66+
# SVG treated as text by default.
67+
*.svg text
68+
# If you want to treat it as binary,
69+
# use the following line instead.
70+
# *.svg binary
71+
*.eps binary
72+
73+
# Scripts
74+
*.bash text eol=lf
75+
*.fish text eol=lf
76+
*.sh text eol=lf
77+
*.zsh text eol=lf
78+
# These are explicitly windows files and should use crlf
79+
*.bat text eol=crlf
80+
*.cmd text eol=crlf
81+
*.ps1 text eol=crlf
82+
83+
# Serialisation
84+
*.json text
85+
*.toml text
86+
*.xml text
87+
*.yaml text
88+
*.yml text
89+
90+
# Archives
91+
*.7z binary
92+
*.gz binary
93+
*.tar binary
94+
*.tgz binary
95+
*.zip binary
96+
97+
# Text files where line endings should be preserved
98+
*.patch -text

.github/FUNDING.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
otechie: # Replace with a single Otechie username
12+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
13+
custom: ['https://www.buymeacoffee.com/k4ryuu'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/ISSUE_TEMPLATE/bug_report.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG]"
5+
labels: bug
6+
assignees: K4ryuu
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. See error
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
22+
**Media (Optional)**
23+
If applicable, add screenshots or videos to help explain your problem.
24+
25+
**Logs (Optional)**
26+
If applicable, add logs to help explain your problem.
27+
28+
**Additional context (Optional)**
29+
Add any other context about the problem here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[REQ]"
5+
labels: enhancement
6+
assignees: K4ryuu
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.gitignore

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#
2+
# The file was created by KitsuneLab - Entity (@Sples1)
3+
#
4+
### KitsuneLab ###
5+
# Folders
6+
.build/
7+
.vanish/
8+
9+
# SourcePawn
10+
*.smx
11+
12+
# Others
13+
*.exe
14+
*.dat
15+
16+
### VisualStudioCode ###
17+
.vscode/
18+
.vs/
19+
*.code-workspace
20+
21+
# Local History for Visual Studio Code
22+
.history/
23+
24+
### VisualStudioCode Patch ###
25+
# Ignore all local history of files
26+
.history
27+
.ionide
28+
29+
### Windows ###
30+
# Windows thumbnail cache files
31+
Thumbs.db
32+
Thumbs.db:encryptable
33+
ehthumbs.db
34+
ehthumbs_vista.db
35+
36+
# Dump file
37+
*.stackdump
38+
39+
# Folder config file
40+
[Dd]esktop.ini
41+
42+
# Recycle Bin used on file shares
43+
$RECYCLE.BIN/
44+
45+
# Windows Installer files
46+
*.cab
47+
*.msi
48+
*.msix
49+
*.msm
50+
*.msp
51+
52+
# Windows shortcuts
53+
*.lnk
54+
55+
# macOS-specific files and directories to ignore
56+
.DS_Store
57+
.AppleDouble/
58+
__MACOSX/
59+
60+
# Remove dotnet normal build
61+
bin/
62+
obj/
63+
*.sln

CHANGELOG

Whitespace-only changes.

CODEOWNERS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# The owner of everything in this repository
2+
* @K4ryuu

0 commit comments

Comments
 (0)