Prepare v0.3.0-prealpha.2
This commit is contained in:
parent
28ce6fedcb
commit
c0860fac03
6 changed files with 24 additions and 19 deletions
|
|
@ -9,7 +9,7 @@ custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter="builds/*,playtest/*,scripts/*"
|
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()
|
patches=PackedStringArray()
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
|
|
@ -35,11 +35,11 @@ application/modify_resources=true
|
||||||
application/icon=""
|
application/icon=""
|
||||||
application/console_wrapper_icon=""
|
application/console_wrapper_icon=""
|
||||||
application/icon_interpolation=4
|
application/icon_interpolation=4
|
||||||
application/file_version="0.2.0.2"
|
application/file_version="0.3.0.2"
|
||||||
application/product_version="0.2.0.2"
|
application/product_version="0.3.0.2"
|
||||||
application/company_name=""
|
application/company_name=""
|
||||||
application/product_name="NETfishing"
|
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/copyright=""
|
||||||
application/trademarks=""
|
application/trademarks=""
|
||||||
application/export_angle=0
|
application/export_angle=0
|
||||||
|
|
@ -62,7 +62,7 @@ custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter="builds/*,playtest/*,scripts/*"
|
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()
|
patches=PackedStringArray()
|
||||||
encryption_include_filters=""
|
encryption_include_filters=""
|
||||||
encryption_exclude_filters=""
|
encryption_exclude_filters=""
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
NETfishing
|
NETfishing
|
||||||
Pre-Alpha Playtest 0.2
|
v0.3.0-prealpha.2
|
||||||
Version 0.2.0-prealpha.2
|
Pre-Alpha 0.3
|
||||||
|
|
||||||
Thank you for trying this early private playtest.
|
Thank you for trying this early private playtest.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ config_version=5
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="NETFISHING"
|
config/name="NETFISHING"
|
||||||
config/version="0.2.0-prealpha.2"
|
config/version="0.3.0-prealpha.2"
|
||||||
run/main_scene="res://main/main.tscn"
|
run/main_scene="res://main/main.tscn"
|
||||||
config/features=PackedStringArray("4.7", "GL Compatibility")
|
config/features=PackedStringArray("4.7", "GL Compatibility")
|
||||||
config/icon="res://icon.svg"
|
config/icon="res://icon.svg"
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,12 @@ set -euo pipefail
|
||||||
|
|
||||||
readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
readonly PROJECT_ROOT="$(cd -- "${SCRIPT_DIR}/.." && 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 WINDOWS_DIR="${BUILD_ROOT}/windows-x86_64"
|
||||||
readonly LINUX_DIR="${BUILD_ROOT}/linux-x86_64"
|
readonly LINUX_DIR="${BUILD_ROOT}/linux-x86_64"
|
||||||
readonly README_SOURCE="${PROJECT_ROOT}/playtest/README-PLAYTEST.txt"
|
readonly README_SOURCE="${PROJECT_ROOT}/playtest/README-PLAYTEST.txt"
|
||||||
readonly WINDOWS_ZIP="${BUILD_ROOT}/netfishing-prealpha-0.1-windows-x86_64.zip"
|
readonly WINDOWS_ZIP="${BUILD_ROOT}/NETfishing-v0.3.0-prealpha.2-windows-x86_64.zip"
|
||||||
readonly LINUX_ZIP="${BUILD_ROOT}/netfishing-prealpha-0.1-linux-x86_64.zip"
|
readonly LINUX_ZIP="${BUILD_ROOT}/NETfishing-v0.3.0-prealpha.2-linux-x86_64.zip"
|
||||||
readonly GODOT_BIN="${GODOT_BIN:-godot}"
|
readonly GODOT_BIN="${GODOT_BIN:-godot}"
|
||||||
|
|
||||||
if [[ ! -f "${PROJECT_ROOT}/project.godot" ]]; then
|
if [[ ! -f "${PROJECT_ROOT}/project.godot" ]]; then
|
||||||
|
|
@ -29,26 +29,26 @@ mkdir -p -- "${WINDOWS_DIR}" "${LINUX_DIR}"
|
||||||
--headless \
|
--headless \
|
||||||
--path "${PROJECT_ROOT}" \
|
--path "${PROJECT_ROOT}" \
|
||||||
--export-release "Windows Desktop" \
|
--export-release "Windows Desktop" \
|
||||||
"${WINDOWS_DIR}/netfishing.exe"
|
"${WINDOWS_DIR}/NETfishing.exe"
|
||||||
|
|
||||||
"${GODOT_BIN}" \
|
"${GODOT_BIN}" \
|
||||||
--headless \
|
--headless \
|
||||||
--path "${PROJECT_ROOT}" \
|
--path "${PROJECT_ROOT}" \
|
||||||
--export-release "Linux Desktop" \
|
--export-release "Linux Desktop" \
|
||||||
"${LINUX_DIR}/netfishing"
|
"${LINUX_DIR}/NETfishing.x86_64"
|
||||||
|
|
||||||
for required_file in \
|
for required_file in \
|
||||||
"${WINDOWS_DIR}/netfishing.exe" \
|
"${WINDOWS_DIR}/NETfishing.exe" \
|
||||||
"${WINDOWS_DIR}/netfishing.pck" \
|
"${WINDOWS_DIR}/NETfishing.pck" \
|
||||||
"${LINUX_DIR}/netfishing" \
|
"${LINUX_DIR}/NETfishing.x86_64" \
|
||||||
"${LINUX_DIR}/netfishing.pck"; do
|
"${LINUX_DIR}/NETfishing.pck"; do
|
||||||
if [[ ! -s "${required_file}" ]]; then
|
if [[ ! -s "${required_file}" ]]; then
|
||||||
echo "error: expected export output is missing: ${required_file}" >&2
|
echo "error: expected export output is missing: ${required_file}" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
chmod +x -- "${LINUX_DIR}/netfishing"
|
chmod +x -- "${LINUX_DIR}/NETfishing.x86_64"
|
||||||
cp -- "${README_SOURCE}" "${WINDOWS_DIR}/README-PLAYTEST.txt"
|
cp -- "${README_SOURCE}" "${WINDOWS_DIR}/README-PLAYTEST.txt"
|
||||||
cp -- "${README_SOURCE}" "${LINUX_DIR}/README-PLAYTEST.txt"
|
cp -- "${README_SOURCE}" "${LINUX_DIR}/README-PLAYTEST.txt"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -179,6 +179,11 @@ var _confirmation_title_content_rest_position: Vector2 = Vector2.ZERO
|
||||||
|
|
||||||
|
|
||||||
func _ready() -> void:
|
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.pressed.connect(_on_continue_pressed)
|
||||||
_continue_button.mouse_entered.connect(
|
_continue_button.mouse_entered.connect(
|
||||||
_on_continue_stats_hover_changed.bind(true)
|
_on_continue_stats_hover_changed.bind(true)
|
||||||
|
|
|
||||||
|
|
@ -206,7 +206,7 @@ unique_name_in_owner = true
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
theme_override_colors/font_color = Color(0.682, 0.733, 0.761, 1)
|
theme_override_colors/font_color = Color(0.682, 0.733, 0.761, 1)
|
||||||
theme_override_font_sizes/font_size = 22
|
theme_override_font_sizes/font_size = 22
|
||||||
text = "pre-alpha playtest 0.2"
|
text = "v0.3.0-prealpha.2"
|
||||||
horizontal_alignment = 1
|
horizontal_alignment = 1
|
||||||
|
|
||||||
[node name="Spacer" type="Control" parent="ResponsiveTitleStage/TitlePresentationScaleRoot/Center/MainContent"]
|
[node name="Spacer" type="Control" parent="ResponsiveTitleStage/TitlePresentationScaleRoot/Center/MainContent"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue