forked from MoKee/android_external_mokee_ServerController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaintainers.php
More file actions
135 lines (134 loc) · 5.06 KB
/
maintainers.php
File metadata and controls
135 lines (134 loc) · 5.06 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
$maintainers_info = [
'Martincz Gao' => [
'title' => 'Founder & Lead Developer',
'bio' => 'martincz@mokee:~$ rm -rf /', // Default is Github bio
'github' => 'martincz', // https://github.com/? (NOT NULL)
'community' => 'martincz', // https://bbs.mokeedev.com/u/?
'telegram' => 'martincz', // https://t.me/?
'weibo' => 'martincz', // http://weibo.com/?
'xda' => '', // https://forum.xda-developers.com/member.php?u=?
'devices' => []
],
'Ryuinferno' => [
'title' => 'Co-founder & Script Developer',
'bio' => '',
'github' => 'ryuinferno',
'community' => 'ryuinferno',
'telegram' => '',
'weibo' => '',
'xda' => '4576707',
'devices' => []
],
'XiNGRZ' => [
'title' => 'Developer & Device Maintainer',
'bio' => '[点击编辑个性签名]',
'github' => 'xingrz',
'community' => 'xingrz',
'telegram' => 'smartisandev',
'weibo' => '',
'xda' => '',
'devices' => ['icesky', 'ocean', 'osborn', 'oscar', 'oxford', 'trident']
],
'GuaiYiHu' => [
'title' => 'Aries / Cancro / Clover / Gucci / Leo / Libra / Violet / Virgo / Whyred Maintainer',
'bio' => '呀嘞呀嘞DA☆ZE!!!(<ゝω·)~☆',
'github' => 'guaiyihu',
'community' => 'guaiyihu',
'telegram' => 'guaiyihu',
'weibo' => 'guaiyihu',
'xda' => '7442044',
'devices' => ['aries', 'cancro', 'clover', 'gucci', 'leo', 'libra', 'violet', 'virgo', 'whyred']
],
'Dianlujitao' => [
'title' => 'Che10 / Cherry / Jason / Oneplus 3 Maintainer',
'bio' => '',
'github' => 'dianlujitao',
'community' => 'dianlujitao',
'telegram' => '',
'weibo' => 'dianlujitao',
'xda' => '',
'devices' => ['che10', 'cherry', 'jason', 'oneplus3']
],
'Wo0d' => [
'title' => 'Sagit / Polaris / Dipper Maintainer',
'bio' => 'DROP DATABASE MOKEE;',
'github' => 'thune-xiaobai',
'community' => 'bai_wood',
'telegram' => '',
'weibo' => '3138080394',
'xda' => '',
'devices' => ['sagit', 'polaris', 'dipper']
],
'chenzc' => [
'title' => 'nx549j / nx563j / nx595j / z2pro Maintainer',
'bio' => '?????',
'github' => 'dazzworld',
'community' => 'chenzc',
'telegram' => '',
'weibo' => '2434134362',
'xda' => '',
'devices' => ['nx549j', 'nx563j', 'nx595j', 'z2pro']
],
'Isaac Chen' => [
'title' => 'Land / Santoni / Sirius / Vince / Wt86528 Maintainer',
'bio' => '',
'github' => 'tingyichen',
'community' => 'tingyichen',
'telegram' => 'ChenTingyi',
'weibo' => 'tingyiisaac',
'xda' => '7500669',
'devices' => ['wt86528', 'land', 'santoni', 'vince', 'sirius']
],
'PIPIPIG233666' => [
'title' => 'Wayne Maintainer',
'bio' => '龙猪并不想和你说话,并向你扔了一只月光',
'github' => 'PIPIPIG233666',
'community' => 'pipipig233666',
'telegram' => 'PIPIPIG233666',
'weibo' => '',
'xda' => '9461998',
'devices' => ['wayne']
],
'subdragonzj' => [
'title' => 'dior / lavender / rosy / sakura Maintainer',
'bio' => '你怎么不先介绍一下你自己呢?',
'github' => 'subdragonzj',
'community' => 'subdragonzj',
'telegram' => 'subdragonzj',
'weibo' => 'zj502407679',
'xda' => '',
'devices' => ['dior', 'lavender', 'rosy', 'sakura']
],
'rama982' => [
'title' => 'Tulip Maintainer',
'bio' => 'English Only, Please',
'github' => 'rama982',
'community' => 'rama982',
'telegram' => 'rama982',
'weibo' => '',
'xda' => '8484128',
'devices' => ['tulip']
],
'glory' => [
'title' => 'Platina Maintainer',
'bio' => '鱼跃此时海,花开彼岸天',
'github' => 'lihonglinglory',
'community' => 'glory',
'telegram' => 'Mengliwunian',
'weibo' => 'lihonglin10010',
'devices' => ['platina']
]
];
foreach ($maintainers_info as $k => $val) {
foreach ($val['devices'] as $dval) {
$maintainer_info[$dval]['name'] = $k;
$maintainer_info[$dval]['title'] = $val['title'];
$maintainer_info[$dval]['bio'] = $val['bio'];
$maintainer_info[$dval]['github'] = $val['github'];
$maintainer_info[$dval]['community'] = $val['community'];
$maintainer_info[$dval]['telegram'] = $val['telegram'];
$maintainer_info[$dval]['weibo'] = $val['weibo'];
$maintainer_info[$dval]['xda'] = $val['xda'];
}
}