Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app_info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"project_founder_and_manager": [],
"authors": [],
"project_founder_and_manager": ["Anish Mishra"],
"authors": ["Anish Mishra (syntaxerror247)"],
"donors": [],
"anonymous_donors": 0,
"golden_donors": [],
Expand Down
2 changes: 1 addition & 1 deletion project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ config_version=5

config/name="GodSVG Mobile"
config/version="1.0-alpha7"
config/tags=PackedStringArray("project")
config/tags=PackedStringArray("application", "mobile", "project")
run/main_scene="uid://bihwwoedqcyo8"
config/use_custom_user_dir=true
config/features=PackedStringArray("4.4")
Expand Down
1 change: 0 additions & 1 deletion src/autoload/HandlerGUI.gd
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ func _add_control(new_control: Control) -> void:
menu_stack.append(overlay_ref)
get_tree().root.add_child(overlay_ref)
overlay_ref.add_child(new_control)
new_control.set_anchors_and_offsets_preset(Control.PRESET_FULL_RECT)
new_control.tree_exiting.connect(_remove_control.bind(overlay_ref))

func _remove_control(overlay_ref: ColorRect = null) -> void:
Expand Down
2 changes: 1 addition & 1 deletion src/ui_parts/about_menu.gd
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const app_info_json = preload("res://app_info.json")

func _ready() -> void:
var app_info: Dictionary = app_info_json.data
version_label.text = "GodSVG v" + ProjectSettings.get_setting("application/config/version")
version_label.text = "GodSVG-Mobile v" + ProjectSettings.get_setting("application/config/version")
project_founder_list.items = app_info.project_founder_and_manager
project_founder_list.setup()
authors_list.items = app_info.authors
Expand Down
20 changes: 7 additions & 13 deletions src/ui_parts/about_menu.tscn
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[ext_resource type="FontFile" uid="uid://depydd16jq777" path="res://assets/fonts/FontMono.ttf" id="3_e8i1t"]
[ext_resource type="FontFile" uid="uid://dc0w4sx0h0fui" path="res://assets/fonts/FontBold.ttf" id="4_n6gp0"]
[ext_resource type="Texture2D" uid="uid://cgxpm1e3v0i3v" path="res://assets/icons/Link.svg" id="6_hbk78"]
[ext_resource type="Script" uid="uid://ci44864moadn" path="res://src/ui_widgets/GridDrawingControl.gd" id="7_nvctb"]
[ext_resource type="Script" uid="uid://d1wnuyd66tafu" path="res://src/ui_widgets/GridDrawingControl.gd" id="7_nvctb"]

[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_jtvwe"]
content_margin_left = 6.0
Expand All @@ -20,16 +20,9 @@ border_width_bottom = 1
border_color = Color(0.301961, 0.301961, 0.4, 1)

[node name="AboutMenu" type="PanelContainer"]
custom_minimum_size = Vector2(512, 408)
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
offset_left = -2.0
offset_top = -2.0
offset_right = 2.0
offset_bottom = 2.0
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_type_variation = &"OverlayPanel"
Expand Down Expand Up @@ -61,7 +54,8 @@ theme_override_font_sizes/font_size = 16
layout_mode = 2
theme_override_constants/line_spacing = 0
theme_override_font_sizes/font_size = 12
text = "© 2023 MewPurPur
text = "© 2025 Anish Mishra
© 2023 MewPurPur
© 2023-present GodSVG contributors"

[node name="TabContainer" type="TabContainer" parent="VBoxContainer"]
Expand Down Expand Up @@ -110,7 +104,6 @@ horizontal_alignment = 1
layout_mode = 2
theme_override_constants/h_separation = -1
theme_override_constants/v_separation = -1
columns = 2
script = ExtResource("7_nvctb")
stylebox = SubResource("StyleBoxFlat_jtvwe")

Expand Down Expand Up @@ -257,6 +250,7 @@ theme_override_fonts/font = ExtResource("3_e8i1t")
theme_override_font_sizes/font_size = 10
text = "MIT License

Copyright (c) 2025 Anish Mishra
Copyright (c) 2023 MewPurPur
Copyright (c) 2023-present GodSVG contributors

Expand Down