1
0
Fork 0
freesewing/config/authors.mjs

81 lines
3.1 KiB
JavaScript
Raw Normal View History

/*
* A list of (documentation) authors.
* The ID is the (future v3) FreeSewing user ID (zero for now)
* The name is what we'll use as display name
*/
2023-05-15 20:36:37 +02:00
export const authors = {
2024-03-16 17:20:18 +01:00
/*
* For these we know their FreeSewing ID and they are ordered by that ID
* Which means new users/contributors will typically go at the bottom
*/
// The dinosaurs
2024-03-03 11:49:29 +01:00
joostdecock: { id: 1, name: 'Joost De Cock' },
2024-03-16 17:20:18 +01:00
mocked: { id: 8, name: 'Unknown (mocked in dev)' },
'Prof. dr. Sorcha Ní Dhubhghaill': { id: 9, name: 'Prof. dr. Sorcha Ní Dhubhghaill' },
woutervdub: { id: 132, name: 'Wouter van Wageningen' },
tangerineshark: { id: 13050, name: 'tangerineshark' },
2024-03-17 11:18:35 +01:00
Zee: { id: 13460, name: 'Zee' },
2024-03-16 17:20:18 +01:00
Natalia: { id: 19867, name: 'Natalia Sayang' },
// The old guard
'Sanne Kalkman': { id: 20343, name: 'Sanne Kalkman' },
bobgeorgethe3rd: { id: 20650, name: 'bobgeorgethe3rd' },
Tríona: { id: 22104, name: 'Tríona' },
starfetch: { id: 22708, name: 'starfetch' },
'Morgan Frost': { id: 23957, name: 'Morgan Frost' },
jackseye: { id: 25383, name: 'jackseye' },
'Nick Dower': { id: 26126, name: 'Nick Dower' },
jgfichte: { id: 26295, name: 'jgfichte' },
'anna-puk': { id: 26981, name: 'Anna Puk' },
'Enoch Riese': { id: 28119, name: 'Enoch Riese' },
benjamesben: { id: 28838, name: 'Benjamin' },
'Joe Schofield': { id: 28809, name: 'Joe Schofield' },
'Vili Sinervä': { id: 31336, name: 'Vili Sinervä' },
Thrunic: { id: 33070, name: 'Thrunic' },
// The new faces
'Paula Vidas': { id: 64919, name: 'Paula Vidas' },
'Jonathan Haas': { id: 71843, name: 'Jonathan Haas' },
/*
* For the folowwing authors, we don't have their FreeSewing ID
* so if they surface, we should try to get it.
* Then again, these are based on git contributions, so it's
* entirely possible that they don't have an account.
* They are all linked to the anonymous user (id 8)
*/
'Annie Kao': { id: 8, name: 'Annie Kao' },
Bart: { id: 8, name: 'Bart' },
'James Bradbury': { id: 8, name: 'James Bradbury' },
'Glenn Matthews': { id: 8, name: 'Glenn Matthews' },
'Raphael Sizemore': { id: 8, name: 'Raphael Sizemore' },
mergerg: { id: 9, name: 'mergerg' },
'Darigov Research': { id: 8, name: 'Darigov Research' },
'Jeroen Hoek': { id: 8, name: 'Jeroen Hoek' },
chri5b: { id: 8, name: 'chri5b' },
'Ivo Bek': { id: 8, name: 'Ivo Bek' },
bijay_d: { id: 8, name: 'bijay_d' },
}
/*
* Maps git commiter name to author for those cases where the
* name in the authors table is different
*/
export const gitToAuthor = {
'Joost De Cock': 'joostdecock',
'Benjamin F': 'benjamesben',
2023-06-09 18:53:58 +02:00
'Benjamin Fan': 'benjamesben',
SeaZeeZee: 'Zee',
'Wouter van Wageningen': 'woutervdub',
'bobgeorgethe3rd@googlemail.com': 'bobgeorgethe3rd',
'70777269+tangerineshark@users.noreply.github.com': 'tangerineshark',
'thijs.assies@gmail.com': 'MA-TATAS',
'Natalia Sayang': 'Natalia',
2024-03-03 11:49:29 +01:00
'109869956+BenJamesBen@users.noreply.github.com': 'benjamesben',
'vili.m.sinerva@gmail.com': 'Vili Sinervä',
'bekivo@gmail.com': 'Ivo Bek',
'paulavidas@gmail.com': 'Paula Vidas',
'104308146+KaerMorhan@users.noreply.github.com': 'Morgan Frost',
2023-05-15 20:36:37 +02:00
}