summaryrefslogtreecommitdiffstats
path: root/misc/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'misc/scripts')
-rwxr-xr-xmisc/scripts/check_ci_log.py8
-rwxr-xr-xmisc/scripts/copyright_headers.py10
-rw-r--r--misc/scripts/header_guards.py4
-rwxr-xr-xmisc/scripts/make_tarball.sh12
4 files changed, 18 insertions, 16 deletions
diff --git a/misc/scripts/check_ci_log.py b/misc/scripts/check_ci_log.py
index d024a3e..7abf00e 100755
--- a/misc/scripts/check_ci_log.py
+++ b/misc/scripts/check_ci_log.py
@@ -28,10 +28,10 @@ if (
or file_contents.find("Aborted (core dumped)") != -1
or file_contents.find("terminate called without an active exception") != -1
):
- print("FATAL ERROR: Godot has been crashed.")
+ print("FATAL ERROR: Redot has been crashed.")
sys.exit(52)
-# Finding memory leaks in Godot is quite difficult, because we need to take into
+# Finding memory leaks in Redot is quite difficult, because we need to take into
# account leaks also in external libraries. They are usually provided without
# debugging symbols, so the leak report from it usually has only 2/3 lines,
# so searching for 5 element - "#4 0x" - should correctly detect the vast
@@ -42,7 +42,7 @@ if file_contents.find("ERROR: LeakSanitizer:") != -1:
print("ERROR: Memory leak was found")
sys.exit(53)
-# It may happen that Godot detects leaking nodes/resources and removes them, so
+# It may happen that Redot detects leaking nodes/resources and removes them, so
# this possibility should also be handled as a potential error, even if
# LeakSanitizer doesn't report anything
@@ -58,7 +58,7 @@ if file_contents.find("Assertion failed") != -1:
print("ERROR: Assertion failed in project, check execution log for more info")
sys.exit(55)
-# For now Godot leaks a lot of rendering stuff so for now we just show info
+# For now Redot leaks a lot of rendering stuff so for now we just show info
# about it and this needs to be re-enabled after fixing this memory leaks.
if file_contents.find("were leaked") != -1 or file_contents.find("were never freed") != -1:
diff --git a/misc/scripts/copyright_headers.py b/misc/scripts/copyright_headers.py
index 2b1201b..2ffa01b 100755
--- a/misc/scripts/copyright_headers.py
+++ b/misc/scripts/copyright_headers.py
@@ -9,9 +9,11 @@ header = """\
/* $filename */
/**************************************************************************/
/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
+/* REDOT ENGINE */
+/* https://redotengine.org */
/**************************************************************************/
+/* Copyright (c) 2024-present Redot Engine contributors */
+/* (see REDOT_AUTHORS.md) */
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
@@ -76,8 +78,8 @@ for f in sys.argv[1:]:
while line.strip() == "" and line != "": # Skip empty lines at the top
line = fileread.readline()
- if line.find("/**********") == -1: # Godot header starts this way
- # Maybe starting with a non-Godot comment, abort header magic
+ if line.find("/**********") == -1: # Redot header starts this way
+ # Maybe starting with a non-Redot comment, abort header magic
header_done = True
while not header_done: # Handle header now
diff --git a/misc/scripts/header_guards.py b/misc/scripts/header_guards.py
index c99c422..15672d3 100644
--- a/misc/scripts/header_guards.py
+++ b/misc/scripts/header_guards.py
@@ -8,8 +8,8 @@ if len(sys.argv) < 2:
print("Invalid usage of header_guards.py, it should be called with a path to one or multiple files.")
sys.exit(1)
-HEADER_CHECK_OFFSET = 30
-HEADER_BEGIN_OFFSET = 31
+HEADER_CHECK_OFFSET = 32
+HEADER_BEGIN_OFFSET = 33
HEADER_END_OFFSET = -1
changed = []
diff --git a/misc/scripts/make_tarball.sh b/misc/scripts/make_tarball.sh
index 9e02b80..e9ab183 100755
--- a/misc/scripts/make_tarball.sh
+++ b/misc/scripts/make_tarball.sh
@@ -1,7 +1,7 @@
#!/bin/sh
if [ ! -e "version.py" ]; then
- echo "This script should be ran from the root folder of the Godot repository."
+ echo "This script should be ran from the root folder of the Redot repository."
exit 1
fi
@@ -11,7 +11,7 @@ while getopts "h?sv:g:" opt; do
echo "Usage: $0 [OPTIONS...]"
echo
echo " -s script friendly file name (godot.tar.gz)"
- echo " -v godot version for file name (e.g. 4.0-stable)"
+ echo " -v redot version for file name (e.g. 4.0-stable)"
echo " -g git treeish to archive (e.g. master)"
echo
exit 1
@@ -35,17 +35,17 @@ else
fi
if [ ! -z "$script_friendly_name" ]; then
- NAME=godot
+ NAME=redot
else
if [ ! -z "$godot_version" ]; then
- NAME=godot-$godot_version
+ NAME=redot-$godot_version
else
- NAME=godot-$HEAD
+ NAME=redot-$HEAD
fi
fi
CURDIR=$(pwd)
-TMPDIR=$(mktemp -d -t godot-XXXXXX)
+TMPDIR=$(mktemp -d -t redot-XXXXXX)
echo "Generating tarball for revision $HEAD with folder name '$NAME'."
echo