diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-10-31 19:26:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 19:26:11 +0000 |
commit | bebc98d4eab0ca9164282d9c0770914025751d24 (patch) | |
tree | 01f0912301ba267504666e4d9e21cffe41b51415 /misc | |
parent | 259c757ccea4c8e223713019ca5ab95788fcf92e (diff) | |
parent | 4667b71811d16169440c320dc490bbe074e4d01b (diff) | |
download | redot-cpp-bebc98d4eab0ca9164282d9c0770914025751d24.tar.gz |
Merge pull request #1 from Redot-Engine/rebrand
Rebrand godot-cpp to redot-cpp
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/scripts/check_ci_log.py | 8 | ||||
-rwxr-xr-x | misc/scripts/copyright_headers.py | 10 | ||||
-rw-r--r-- | misc/scripts/header_guards.py | 4 | ||||
-rwxr-xr-x | misc/scripts/make_tarball.sh | 12 |
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 |