Skip to content

Commit

Permalink
Update credits for 5.11.0 (#15753)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 authored Feb 5, 2025
1 parent 0fa56a9 commit 1548b2a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
24 changes: 11 additions & 13 deletions builtin/mainmenu/credits.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"#": "https://github.com/orgs/minetest/teams/engine/members",
"#": "https://github.com/orgs/luanti-org/teams/engine/members",
"core_developers": [
"Perttu Ahola (celeron55) <[email protected]> [Project founder]",
"sfan5 <[email protected]>",
Expand All @@ -15,7 +15,8 @@
"Gregor Parzefall (grorp)",
"Lars Müller (luatic)",
"cx384",
"sfence"
"sfence",
"y5nw"
],
"previous_core_developers": [
"BlockMen",
Expand All @@ -38,7 +39,7 @@
"Hugues Ross <[email protected]>",
"Dmitry Kostenko (x2048) <[email protected]>"
],
"#": "Currently only https://github.com/orgs/minetest/teams/triagers/members",
"#": "Currently only https://github.com/orgs/luanti-org/teams/triagers/members",
"core_team": [
"Zughy [Issue triager]",
"wsor [Issue triager]",
Expand All @@ -47,23 +48,20 @@
"#": "For updating active/previous contributors, see the script in ./util/gather_git_credits.py",
"contributors": [
"JosiahWI",
"1F616EMO",
"y5nw",
"Erich Schubert",
"numzero",
"wrrrzr",
"1F616EMO",
"red-001 <[email protected]>",
"David Heidelberg",
"Wuzzy",
"veprogames",
"paradust7",
"HybridDog",
"Zemtzov7",
"kromka-chleba",
"AFCMS",
"chmodsayshello",
"OgelGames"
"siliconsniffer",
"Wuzzy",
"Zemtzov7",
],
"previous_contributors": [
"Ælla Chiana Moskopp (erle) <[email protected]> [Logo]",
"numzero",
"Giuseppe Bilotta",
"ClobberXD",
"Dániel Juhász (juhdanad) <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions util/gather_git_credits.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
codefiles = r"(\.[ch](pp)?|\.lua|\.md|\.cmake|\.java|\.gradle|Makefile|CMakeLists\.txt)$"

# two minor versions back, for "Active Contributors"
REVS_ACTIVE = "5.8.0..HEAD"
REVS_ACTIVE = "5.9.0..HEAD"
# all time, for "Previous Contributors"
REVS_PREVIOUS = "HEAD"

Expand All @@ -27,7 +27,7 @@ def load(revs):
p2 = subprocess.Popen(["git", "show", "--numstat", "--pretty=format:", hash],
stdout=subprocess.PIPE, universal_newlines=True)
for line in p2.stdout:
added, deleted, filename = re.split(r"\s+", line.strip(), 2)
added, deleted, filename = re.split(r"\s+", line.strip(), maxsplit=2)
if re.search(codefiles, filename) and added != "-":
n += int(added)
p2.wait()
Expand Down

0 comments on commit 1548b2a

Please sign in to comment.