Rebrand project and refresh title presentation

This commit is contained in:
Alexander Sellite 2026-08-25 17:14:12 -04:00
parent 17fef2c5d4
commit 7ae20789a9
138 changed files with 1511 additions and 1498 deletions

View file

@ -266,22 +266,22 @@ func _validate_four_by_three_centering() -> void:
func _validate_low_end_profile_contract() -> void:
var launcher: String = FileAccess.get_file_as_string(
"res://scripts/portmaster/NETfishing.sh"
"res://scripts/portmaster/straywild.sh"
)
assert(launcher.contains("NETFISHING_PERFORMANCE_PROFILE:-"))
assert(launcher.contains("straywild_PERFORMANCE_PROFILE:-"))
assert(launcher.contains("$CONFDIR/performance_profile"))
assert(launcher.contains("normal)"))
assert(launcher.contains("light|\"\")"))
assert(launcher.contains("NETFISHING_PERFORMANCE_PROFILE=normal"))
assert(launcher.contains("NETFISHING_PERFORMANCE_PROFILE=light"))
assert(launcher.contains("NETFISHING_LOW_END=1"))
assert(launcher.contains("straywild_PERFORMANCE_PROFILE=normal"))
assert(launcher.contains("straywild_PERFORMANCE_PROFILE=light"))
assert(launcher.contains("straywild_LOW_END=1"))
assert(launcher.contains("--max-fps 30"))
assert(launcher.contains("--audio-output-latency 40"))
var builder: String = FileAccess.get_file_as_string(
"res://scripts/build_portmaster.sh"
)
assert(builder.contains("prepare_portmaster_assets.sh"))
assert(builder.contains("netfishing-portmaster-export"))
assert(builder.contains("straywild-portmaster-export"))
var asset_profile: String = FileAccess.get_file_as_string(
"res://scripts/prepare_portmaster_assets.sh"
)