From f83be63d53ddc4896f16144251717e6d6e8c1256 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Fri, 5 Jan 2024 18:57:19 -0500 Subject: [PATCH] Add CONTRIBUTORS.txt and make a note of it in the LICENSE.txt and documentation. --- CONTRIBUTORS.txt | 7 ++++++ LICENSE.txt | 3 ++- contrib/TlsImplTemplate.c | 3 ++- docs/CONTRIBUTING.md | 41 +++++++++++++++++++++++++++++++ src/CanonicalJson.c | 3 ++- src/Config.c | 3 ++- src/Filter.c | 3 ++- src/Html.c | 3 ++- src/Main.c | 3 ++- src/Matrix.c | 3 ++- src/RegToken.c | 3 ++- src/Room.c | 3 ++- src/Routes.c | 3 ++- src/Routes/RouteAdminDeactivate.c | 3 ++- src/Routes/RouteAdminTokens.c | 3 ++- src/Routes/RouteAliasDirectory.c | 3 ++- src/Routes/RouteCapabilities.c | 3 ++- src/Routes/RouteChangePwd.c | 3 ++- src/Routes/RouteConfig.c | 3 ++- src/Routes/RouteCreateRoom.c | 3 ++- src/Routes/RouteDeactivate.c | 3 ++- src/Routes/RouteFilter.c | 3 ++- src/Routes/RouteLogin.c | 3 ++- src/Routes/RouteLogout.c | 3 ++- src/Routes/RoutePrivileges.c | 3 ++- src/Routes/RouteProcControl.c | 3 ++- src/Routes/RouteRefresh.c | 3 ++- src/Routes/RouteRegister.c | 3 ++- src/Routes/RouteRequestToken.c | 3 ++- src/Routes/RouteRoomAliases.c | 3 ++- src/Routes/RouteStaticDefault.c | 3 ++- src/Routes/RouteStaticLogin.c | 3 ++- src/Routes/RouteStaticResources.c | 3 ++- src/Routes/RouteTokenValid.c | 3 ++- src/Routes/RouteUiaFallback.c | 3 ++- src/Routes/RouteUserProfile.c | 3 ++- src/Routes/RouteVersions.c | 3 ++- src/Routes/RouteWellKnown.c | 3 ++- src/Routes/RouteWhoami.c | 3 ++- src/State.c | 3 ++- src/Telodendria.c | 3 ++- src/Uia.c | 3 ++- src/User.c | 3 ++- src/include/CanonicalJson.h | 3 ++- src/include/Config.h | 3 ++- src/include/Event.h | 3 ++- src/include/Filter.h | 3 ++- src/include/Html.h | 3 ++- src/include/Matrix.h | 3 ++- src/include/RegToken.h | 3 ++- src/include/Room.h | 3 ++- src/include/Routes.h | 3 ++- src/include/State.h | 3 ++- src/include/Telodendria.h | 3 ++- src/include/Uia.h | 3 ++- src/include/User.h | 3 ++- tools/src/http-debug-server.c | 3 ++- tools/src/json.c | 3 ++- 58 files changed, 160 insertions(+), 56 deletions(-) create mode 100644 CONTRIBUTORS.txt diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt new file mode 100644 index 0000000..8277661 --- /dev/null +++ b/CONTRIBUTORS.txt @@ -0,0 +1,7 @@ +N: Jordan Bancino +E: jordan@bancino.net +M: @jordan:bancino.net +W: https://bancino.net +D: Project Lead +L: United States + diff --git a/LICENSE.txt b/LICENSE.txt index 65961c2..b745fbf 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/contrib/TlsImplTemplate.c b/contrib/TlsImplTemplate.c index dee73bb..bfcca23 100644 --- a/contrib/TlsImplTemplate.c +++ b/contrib/TlsImplTemplate.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index f8f63ae..aa59be0 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -213,3 +213,44 @@ comments to the appropriate header. If your pull request does not also include proper documentation, it will likely be rejected. +### Be Recognized! + +If your pull request gets approved, you should be recognized for your +contributions to the project! + +To have your work recognized, add your information to the `CONTRIBUTORS.txt` +file in the root of the Telodendria repository if it isn't there already. +You should do this as a part of your pull request so that when it is merged, +your information will be automatically added to the repository. + +The `CONTRIBUTORS.txt` file loosely follows the Linux kernel's +[CREDITS](https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/CREDITS) +file format. It is designed to be human-readable, but also parsable by +scripts. + +The following fields are available: + +``` + (N) Name + (E) Email + (M) Matrix ID + (W) Website + (D) Description of contribution + (L) Physical location +``` + +Here are the rules: + +* All fields are optional. If you don't want to include a field, that's + okay, simply omit it. +* All fields identify you however you wish. The goal is to recognize you for + your contribution, but if you wish to remain anonymous, you don't have to + use your real information. +* All fields can be specified multiple times. For example, if you have + multiple email addresses, websites, or Matrix IDs and you want to include + all of them, you absolutely may. Likewise, if you have made multiple + contributions, you can add multiple description entries. +* You can make up your own fields if you want. Just add their description + above. +* Leave exactly one blank like between entries in this file. + diff --git a/src/CanonicalJson.c b/src/CanonicalJson.c index 2828fcb..a865df3 100644 --- a/src/CanonicalJson.c +++ b/src/CanonicalJson.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Config.c b/src/Config.c index 6a43501..2f77365 100644 --- a/src/Config.c +++ b/src/Config.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Filter.c b/src/Filter.c index 9c50f17..4920691 100644 --- a/src/Filter.c +++ b/src/Filter.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Html.c b/src/Html.c index 6a3e392..4c9b0da 100644 --- a/src/Html.c +++ b/src/Html.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Main.c b/src/Main.c index 2321b23..d1406f1 100644 --- a/src/Main.c +++ b/src/Main.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Matrix.c b/src/Matrix.c index 7d2d5d2..7186461 100644 --- a/src/Matrix.c +++ b/src/Matrix.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/RegToken.c b/src/RegToken.c index 924430b..0e018c2 100644 --- a/src/RegToken.c +++ b/src/RegToken.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Room.c b/src/Room.c index e0c55b1..9eb9328 100644 --- a/src/Room.c +++ b/src/Room.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes.c b/src/Routes.c index af6c13e..2562e78 100644 --- a/src/Routes.c +++ b/src/Routes.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteAdminDeactivate.c b/src/Routes/RouteAdminDeactivate.c index 2670996..f3d716a 100644 --- a/src/Routes/RouteAdminDeactivate.c +++ b/src/Routes/RouteAdminDeactivate.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteAdminTokens.c b/src/Routes/RouteAdminTokens.c index 94b285b..65ca67d 100644 --- a/src/Routes/RouteAdminTokens.c +++ b/src/Routes/RouteAdminTokens.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteAliasDirectory.c b/src/Routes/RouteAliasDirectory.c index e223469..b1ae042 100644 --- a/src/Routes/RouteAliasDirectory.c +++ b/src/Routes/RouteAliasDirectory.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteCapabilities.c b/src/Routes/RouteCapabilities.c index 3a8cecf..8eb3866 100644 --- a/src/Routes/RouteCapabilities.c +++ b/src/Routes/RouteCapabilities.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteChangePwd.c b/src/Routes/RouteChangePwd.c index c17e032..f8ad988 100644 --- a/src/Routes/RouteChangePwd.c +++ b/src/Routes/RouteChangePwd.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteConfig.c b/src/Routes/RouteConfig.c index 0b4f8a9..66b031a 100644 --- a/src/Routes/RouteConfig.c +++ b/src/Routes/RouteConfig.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteCreateRoom.c b/src/Routes/RouteCreateRoom.c index 7a58d61..126f905 100644 --- a/src/Routes/RouteCreateRoom.c +++ b/src/Routes/RouteCreateRoom.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteDeactivate.c b/src/Routes/RouteDeactivate.c index a36d6db..6a21f70 100644 --- a/src/Routes/RouteDeactivate.c +++ b/src/Routes/RouteDeactivate.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteFilter.c b/src/Routes/RouteFilter.c index 0903d6c..13e482a 100644 --- a/src/Routes/RouteFilter.c +++ b/src/Routes/RouteFilter.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteLogin.c b/src/Routes/RouteLogin.c index 5e86afd..d689cd2 100644 --- a/src/Routes/RouteLogin.c +++ b/src/Routes/RouteLogin.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteLogout.c b/src/Routes/RouteLogout.c index ebe3e19..95397fe 100644 --- a/src/Routes/RouteLogout.c +++ b/src/Routes/RouteLogout.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RoutePrivileges.c b/src/Routes/RoutePrivileges.c index c111837..748cd8a 100644 --- a/src/Routes/RoutePrivileges.c +++ b/src/Routes/RoutePrivileges.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteProcControl.c b/src/Routes/RouteProcControl.c index aa1bced..6eb434e 100644 --- a/src/Routes/RouteProcControl.c +++ b/src/Routes/RouteProcControl.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteRefresh.c b/src/Routes/RouteRefresh.c index 6ce7546..e2e0b6a 100644 --- a/src/Routes/RouteRefresh.c +++ b/src/Routes/RouteRefresh.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteRegister.c b/src/Routes/RouteRegister.c index 2a7cc4d..6dbf859 100644 --- a/src/Routes/RouteRegister.c +++ b/src/Routes/RouteRegister.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteRequestToken.c b/src/Routes/RouteRequestToken.c index 2be7fb4..318cbab 100644 --- a/src/Routes/RouteRequestToken.c +++ b/src/Routes/RouteRequestToken.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteRoomAliases.c b/src/Routes/RouteRoomAliases.c index 0bd1200..25a080a 100644 --- a/src/Routes/RouteRoomAliases.c +++ b/src/Routes/RouteRoomAliases.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteStaticDefault.c b/src/Routes/RouteStaticDefault.c index 259a2e0..3e017f1 100644 --- a/src/Routes/RouteStaticDefault.c +++ b/src/Routes/RouteStaticDefault.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteStaticLogin.c b/src/Routes/RouteStaticLogin.c index 1aefe51..13748fa 100644 --- a/src/Routes/RouteStaticLogin.c +++ b/src/Routes/RouteStaticLogin.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteStaticResources.c b/src/Routes/RouteStaticResources.c index d3ce0f6..b89dafe 100644 --- a/src/Routes/RouteStaticResources.c +++ b/src/Routes/RouteStaticResources.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteTokenValid.c b/src/Routes/RouteTokenValid.c index 25b38e0..5ea3441 100644 --- a/src/Routes/RouteTokenValid.c +++ b/src/Routes/RouteTokenValid.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteUiaFallback.c b/src/Routes/RouteUiaFallback.c index e8f2bdc..71ee1ed 100644 --- a/src/Routes/RouteUiaFallback.c +++ b/src/Routes/RouteUiaFallback.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteUserProfile.c b/src/Routes/RouteUserProfile.c index fcb68bf..16a310c 100644 --- a/src/Routes/RouteUserProfile.c +++ b/src/Routes/RouteUserProfile.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteVersions.c b/src/Routes/RouteVersions.c index 441f25b..12dcbb4 100644 --- a/src/Routes/RouteVersions.c +++ b/src/Routes/RouteVersions.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteWellKnown.c b/src/Routes/RouteWellKnown.c index 102d1cb..a11aaa8 100644 --- a/src/Routes/RouteWellKnown.c +++ b/src/Routes/RouteWellKnown.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Routes/RouteWhoami.c b/src/Routes/RouteWhoami.c index a89b574..31eade1 100644 --- a/src/Routes/RouteWhoami.c +++ b/src/Routes/RouteWhoami.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/State.c b/src/State.c index 567e085..71d4cc9 100644 --- a/src/State.c +++ b/src/State.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Telodendria.c b/src/Telodendria.c index 54ba42b..a242824 100644 --- a/src/Telodendria.c +++ b/src/Telodendria.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/Uia.c b/src/Uia.c index 68fbffe..3a71d24 100644 --- a/src/Uia.c +++ b/src/Uia.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/User.c b/src/User.c index d0105c6..9e36239 100644 --- a/src/User.c +++ b/src/User.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/CanonicalJson.h b/src/include/CanonicalJson.h index a453b91..aab3d08 100644 --- a/src/include/CanonicalJson.h +++ b/src/include/CanonicalJson.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Config.h b/src/include/Config.h index b6ced63..73052cd 100644 --- a/src/include/Config.h +++ b/src/include/Config.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Event.h b/src/include/Event.h index 4ee519b..09e65d7 100644 --- a/src/include/Event.h +++ b/src/include/Event.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Filter.h b/src/include/Filter.h index f29718d..a7dcc07 100644 --- a/src/include/Filter.h +++ b/src/include/Filter.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Html.h b/src/include/Html.h index 2c6e430..c1225a4 100644 --- a/src/include/Html.h +++ b/src/include/Html.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Matrix.h b/src/include/Matrix.h index b269538..2b18fcb 100644 --- a/src/include/Matrix.h +++ b/src/include/Matrix.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/RegToken.h b/src/include/RegToken.h index b17f035..f24a79c 100644 --- a/src/include/RegToken.h +++ b/src/include/RegToken.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Room.h b/src/include/Room.h index 80540f3..1de979a 100644 --- a/src/include/Room.h +++ b/src/include/Room.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Routes.h b/src/include/Routes.h index f886fe5..76de377 100644 --- a/src/include/Routes.h +++ b/src/include/Routes.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/State.h b/src/include/State.h index 0f3f8d1..1f5dd13 100644 --- a/src/include/State.h +++ b/src/include/State.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Telodendria.h b/src/include/Telodendria.h index 97ffe1b..f9022f0 100644 --- a/src/include/Telodendria.h +++ b/src/include/Telodendria.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/Uia.h b/src/include/Uia.h index bdac25a..268ec77 100644 --- a/src/include/Uia.h +++ b/src/include/Uia.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/src/include/User.h b/src/include/User.h index 96ace6d..6eb5530 100644 --- a/src/include/User.h +++ b/src/include/User.h @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/tools/src/http-debug-server.c b/tools/src/http-debug-server.c index 0a24e44..a41042e 100644 --- a/tools/src/http-debug-server.c +++ b/tools/src/http-debug-server.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files diff --git a/tools/src/json.c b/tools/src/json.c index 7b23445..9c1b86a 100644 --- a/tools/src/json.c +++ b/tools/src/json.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> + * Copyright (C) 2022-2024 Jordan Bancino <@jordan:bancino.net> with + * other valuable contributors. See CONTRIBUTORS.txt for the full list. * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation files