mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
CREDITS: Add d0sboots as documented maintainer (#1183)
This commit is contained in:
parent
99f7a4cc7b
commit
0c2a59bb6c
@ -33,12 +33,9 @@ for (let i = 0; i < recentPatchData.length; i++) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function CreditsModal(props: CreditsModalProps): React.ReactElement {
|
export function CreditsModal(props: CreditsModalProps): React.ReactElement {
|
||||||
const leadDevs = `danielyxie
|
const leadDevs = ["danielyxie", "hydroflame", "Snarling"];
|
||||||
Olivier Gagnon
|
|
||||||
@Snarling
|
|
||||||
`;
|
|
||||||
|
|
||||||
const currentMaintainer = `@Snarling`;
|
const currentMaintainers = ["Snarling", "d0sboots"];
|
||||||
|
|
||||||
const handles = handle.sort((a, b) => a.localeCompare(b)).join(", ");
|
const handles = handle.sort((a, b) => a.localeCompare(b)).join(", ");
|
||||||
const contributorsURL = `https://github.com/bitburner-official/bitburner-src/graphs/contributors`;
|
const contributorsURL = `https://github.com/bitburner-official/bitburner-src/graphs/contributors`;
|
||||||
@ -60,11 +57,11 @@ or to participate yourself`;
|
|||||||
<Typography sx={{ textDecoration: "underline" }}>Original Code and Concept</Typography>
|
<Typography sx={{ textDecoration: "underline" }}>Original Code and Concept</Typography>
|
||||||
<Typography>danielyxie</Typography>
|
<Typography>danielyxie</Typography>
|
||||||
<br />
|
<br />
|
||||||
<Typography sx={{ textDecoration: "underline" }}>Lead Developers:</Typography>
|
<Typography sx={{ textDecoration: "underline" }}>Lead Developers</Typography>
|
||||||
<Typography style={{ whiteSpace: "pre-wrap" }}>{leadDevs}</Typography>
|
<Typography style={{ whiteSpace: "pre-wrap" }}>{leadDevs.join("\n")}</Typography>
|
||||||
<br />
|
<br />
|
||||||
<Typography sx={{ textDecoration: "underline" }}>Current Maintainer</Typography>
|
<Typography sx={{ textDecoration: "underline" }}>Current Maintainers</Typography>
|
||||||
<Typography>{currentMaintainer}</Typography>
|
<Typography whiteSpace={"pre-wrap"}>{currentMaintainers.join("\n")}</Typography>
|
||||||
<br />
|
<br />
|
||||||
<Typography sx={{ textDecoration: "underline" }}>Recent patch contributors:</Typography>
|
<Typography sx={{ textDecoration: "underline" }}>Recent patch contributors:</Typography>
|
||||||
<Typography style={{ whiteSpace: "pre-wrap", maxWidth: maxEM + "rem", textOverflow: "clip" }}>
|
<Typography style={{ whiteSpace: "pre-wrap", maxWidth: maxEM + "rem", textOverflow: "clip" }}>
|
||||||
|
Loading…
Reference in New Issue
Block a user