From c0860fac0309059d793c777d2a6425ee3634e09f Mon Sep 17 00:00:00 2001 From: Voyager Date: Thu, 30 Jul 2026 16:25:10 -0400 Subject: [PATCH] Prepare v0.3.0-prealpha.2 --- export_presets.cfg | 10 +++++----- playtest/README-PLAYTEST.txt | 4 ++-- project.godot | 2 +- scripts/build_playtest.sh | 20 ++++++++++---------- ui/title_screen.gd | 5 +++++ ui/title_screen.tscn | 2 +- 6 files changed, 24 insertions(+), 19 deletions(-) diff --git a/export_presets.cfg b/export_presets.cfg index 88ebda9..d8bd5b8 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -9,7 +9,7 @@ custom_features="" export_filter="all_resources" include_filter="" exclude_filter="builds/*,playtest/*,scripts/*" -export_path="builds/playtest-0.2.0-prealpha.2/windows-x86_64/netfishing.exe" +export_path="builds/v0.3.0-prealpha.2/windows-x86_64/NETfishing.exe" patches=PackedStringArray() encryption_include_filters="" encryption_exclude_filters="" @@ -35,11 +35,11 @@ application/modify_resources=true application/icon="" application/console_wrapper_icon="" application/icon_interpolation=4 -application/file_version="0.2.0.2" -application/product_version="0.2.0.2" +application/file_version="0.3.0.2" +application/product_version="0.3.0.2" application/company_name="" application/product_name="NETfishing" -application/file_description="NETfishing Pre-Alpha Playtest 0.2" +application/file_description="NETfishing v0.3.0-prealpha.2" application/copyright="" application/trademarks="" application/export_angle=0 @@ -62,7 +62,7 @@ custom_features="" export_filter="all_resources" include_filter="" exclude_filter="builds/*,playtest/*,scripts/*" -export_path="builds/playtest-0.2.0-prealpha.2/linux-x86_64/netfishing" +export_path="builds/v0.3.0-prealpha.2/linux-x86_64/NETfishing.x86_64" patches=PackedStringArray() encryption_include_filters="" encryption_exclude_filters="" diff --git a/playtest/README-PLAYTEST.txt b/playtest/README-PLAYTEST.txt index 58d94c6..5c93144 100644 --- a/playtest/README-PLAYTEST.txt +++ b/playtest/README-PLAYTEST.txt @@ -1,6 +1,6 @@ NETfishing -Pre-Alpha Playtest 0.2 -Version 0.2.0-prealpha.2 +v0.3.0-prealpha.2 +Pre-Alpha 0.3 Thank you for trying this early private playtest. diff --git a/project.godot b/project.godot index f0338c0..c2b8990 100644 --- a/project.godot +++ b/project.godot @@ -11,7 +11,7 @@ config_version=5 [application] config/name="NETFISHING" -config/version="0.2.0-prealpha.2" +config/version="0.3.0-prealpha.2" run/main_scene="res://main/main.tscn" config/features=PackedStringArray("4.7", "GL Compatibility") config/icon="res://icon.svg" diff --git a/scripts/build_playtest.sh b/scripts/build_playtest.sh index 3cf206e..d82ee16 100755 --- a/scripts/build_playtest.sh +++ b/scripts/build_playtest.sh @@ -4,12 +4,12 @@ set -euo pipefail readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" readonly PROJECT_ROOT="$(cd -- "${SCRIPT_DIR}/.." && pwd)" -readonly BUILD_ROOT="${PROJECT_ROOT}/builds/playtest-0.1" +readonly BUILD_ROOT="${PROJECT_ROOT}/builds/v0.3.0-prealpha.2" readonly WINDOWS_DIR="${BUILD_ROOT}/windows-x86_64" readonly LINUX_DIR="${BUILD_ROOT}/linux-x86_64" readonly README_SOURCE="${PROJECT_ROOT}/playtest/README-PLAYTEST.txt" -readonly WINDOWS_ZIP="${BUILD_ROOT}/netfishing-prealpha-0.1-windows-x86_64.zip" -readonly LINUX_ZIP="${BUILD_ROOT}/netfishing-prealpha-0.1-linux-x86_64.zip" +readonly WINDOWS_ZIP="${BUILD_ROOT}/NETfishing-v0.3.0-prealpha.2-windows-x86_64.zip" +readonly LINUX_ZIP="${BUILD_ROOT}/NETfishing-v0.3.0-prealpha.2-linux-x86_64.zip" readonly GODOT_BIN="${GODOT_BIN:-godot}" if [[ ! -f "${PROJECT_ROOT}/project.godot" ]]; then @@ -29,26 +29,26 @@ mkdir -p -- "${WINDOWS_DIR}" "${LINUX_DIR}" --headless \ --path "${PROJECT_ROOT}" \ --export-release "Windows Desktop" \ - "${WINDOWS_DIR}/netfishing.exe" + "${WINDOWS_DIR}/NETfishing.exe" "${GODOT_BIN}" \ --headless \ --path "${PROJECT_ROOT}" \ --export-release "Linux Desktop" \ - "${LINUX_DIR}/netfishing" + "${LINUX_DIR}/NETfishing.x86_64" for required_file in \ - "${WINDOWS_DIR}/netfishing.exe" \ - "${WINDOWS_DIR}/netfishing.pck" \ - "${LINUX_DIR}/netfishing" \ - "${LINUX_DIR}/netfishing.pck"; do + "${WINDOWS_DIR}/NETfishing.exe" \ + "${WINDOWS_DIR}/NETfishing.pck" \ + "${LINUX_DIR}/NETfishing.x86_64" \ + "${LINUX_DIR}/NETfishing.pck"; do if [[ ! -s "${required_file}" ]]; then echo "error: expected export output is missing: ${required_file}" >&2 exit 1 fi done -chmod +x -- "${LINUX_DIR}/netfishing" +chmod +x -- "${LINUX_DIR}/NETfishing.x86_64" cp -- "${README_SOURCE}" "${WINDOWS_DIR}/README-PLAYTEST.txt" cp -- "${README_SOURCE}" "${LINUX_DIR}/README-PLAYTEST.txt" diff --git a/ui/title_screen.gd b/ui/title_screen.gd index adf58e3..b4fa53e 100644 --- a/ui/title_screen.gd +++ b/ui/title_screen.gd @@ -179,6 +179,11 @@ var _confirmation_title_content_rest_position: Vector2 = Vector2.ZERO func _ready() -> void: + var release_version: String = str( + ProjectSettings.get_setting("application/config/version", "") + ).strip_edges() + if not release_version.is_empty(): + _playtest_label.text = "v%s" % release_version _continue_button.pressed.connect(_on_continue_pressed) _continue_button.mouse_entered.connect( _on_continue_stats_hover_changed.bind(true) diff --git a/ui/title_screen.tscn b/ui/title_screen.tscn index ae2da84..8fe3ddc 100644 --- a/ui/title_screen.tscn +++ b/ui/title_screen.tscn @@ -206,7 +206,7 @@ unique_name_in_owner = true layout_mode = 2 theme_override_colors/font_color = Color(0.682, 0.733, 0.761, 1) theme_override_font_sizes/font_size = 22 -text = "pre-alpha playtest 0.2" +text = "v0.3.0-prealpha.2" horizontal_alignment = 1 [node name="Spacer" type="Control" parent="ResponsiveTitleStage/TitlePresentationScaleRoot/Center/MainContent"]