forked from MewPurPur/GodSVG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppInfo.gd
42 lines (34 loc) · 1.18 KB
/
AppInfo.gd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Stores basic information about GodSVG.
class_name AppInfo extends RefCounted
const project_founder_and_manager: Array[String] = ["MewPurPur"]
# The developers who have contributed significant patches to the MIT-licensed source code
# of GodSVG, and people who have contributed other things to the repository such as art,
# are listed here. What counts as significant is arbitrarily decided.
# Entries are formatted as follows:
# Option 1: Real Name (GitHub username)
# Option 2: GitHub username
# Translator credentials for each language are taken from their corresponding POT file.
const authors: Array[String] = [
"Aaron Franke (aaronfranke)",
"ajreckof",
"aladvs",
"Alex2782",
"DevPoodle",
"ilikefrogs101",
"Kiisu-Master",
"MewPurPur",
"Qainguin",
"Serem Titus (SeremTitus)",
"Swarkin",
"thiagola92",
"Tom Blackwell (Volts-s)",
"WeaverSong",
]
# GodSVG is a non-profit project developed by voluntary contributors.
# Thousands of hours of work have gone into it so far.
# Everyone who has generously sponsored this effort is listed here.
const donors: Array[String] = []
const golden_donors: Array[String] = []
const diamond_donors: Array[String] = [
"Aaron Franke (aaronfranke)",
]