Skip to content

Commit a2c1442

Browse files
Fix AboutMenu (#15)
1 parent c2f327c commit a2c1442

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

app_info.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"project_founder_and_manager": [],
3-
"authors": [],
2+
"project_founder_and_manager": ["Anish Mishra"],
3+
"authors": ["Anish Mishra (syntaxerror247)"],
44
"donors": [],
55
"anonymous_donors": 0,
66
"golden_donors": [],

project.godot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ config_version=5
1212

1313
config/name="GodSVG Mobile"
1414
config/version="1.0-alpha7"
15-
config/tags=PackedStringArray("project")
15+
config/tags=PackedStringArray("application", "mobile", "project")
1616
run/main_scene="uid://bihwwoedqcyo8"
1717
config/use_custom_user_dir=true
1818
config/features=PackedStringArray("4.4")

src/autoload/HandlerGUI.gd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ func _add_control(new_control: Control) -> void:
6868
menu_stack.append(overlay_ref)
6969
get_tree().root.add_child(overlay_ref)
7070
overlay_ref.add_child(new_control)
71-
new_control.set_anchors_and_offsets_preset(Control.PRESET_FULL_RECT)
7271
new_control.tree_exiting.connect(_remove_control.bind(overlay_ref))
7372

7473
func _remove_control(overlay_ref: ColorRect = null) -> void:

src/ui_parts/about_menu.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const app_info_json = preload("res://app_info.json")
2121

2222
func _ready() -> void:
2323
var app_info: Dictionary = app_info_json.data
24-
version_label.text = "GodSVG v" + ProjectSettings.get_setting("application/config/version")
24+
version_label.text = "GodSVG-Mobile v" + ProjectSettings.get_setting("application/config/version")
2525
project_founder_list.items = app_info.project_founder_and_manager
2626
project_founder_list.setup()
2727
authors_list.items = app_info.authors

src/ui_parts/about_menu.tscn

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[ext_resource type="FontFile" uid="uid://depydd16jq777" path="res://assets/fonts/FontMono.ttf" id="3_e8i1t"]
66
[ext_resource type="FontFile" uid="uid://dc0w4sx0h0fui" path="res://assets/fonts/FontBold.ttf" id="4_n6gp0"]
77
[ext_resource type="Texture2D" uid="uid://cgxpm1e3v0i3v" path="res://assets/icons/Link.svg" id="6_hbk78"]
8-
[ext_resource type="Script" uid="uid://ci44864moadn" path="res://src/ui_widgets/GridDrawingControl.gd" id="7_nvctb"]
8+
[ext_resource type="Script" uid="uid://d1wnuyd66tafu" path="res://src/ui_widgets/GridDrawingControl.gd" id="7_nvctb"]
99

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

2222
[node name="AboutMenu" type="PanelContainer"]
23-
custom_minimum_size = Vector2(512, 408)
24-
anchors_preset = 8
25-
anchor_left = 0.5
26-
anchor_top = 0.5
27-
anchor_right = 0.5
28-
anchor_bottom = 0.5
29-
offset_left = -2.0
30-
offset_top = -2.0
31-
offset_right = 2.0
32-
offset_bottom = 2.0
23+
anchors_preset = 15
24+
anchor_right = 1.0
25+
anchor_bottom = 1.0
3326
grow_horizontal = 2
3427
grow_vertical = 2
3528
theme_type_variation = &"OverlayPanel"
@@ -61,7 +54,8 @@ theme_override_font_sizes/font_size = 16
6154
layout_mode = 2
6255
theme_override_constants/line_spacing = 0
6356
theme_override_font_sizes/font_size = 12
64-
text = "© 2023 MewPurPur
57+
text = "© 2025 Anish Mishra
58+
© 2023 MewPurPur
6559
© 2023-present GodSVG contributors"
6660

6761
[node name="TabContainer" type="TabContainer" parent="VBoxContainer"]
@@ -110,7 +104,6 @@ horizontal_alignment = 1
110104
layout_mode = 2
111105
theme_override_constants/h_separation = -1
112106
theme_override_constants/v_separation = -1
113-
columns = 2
114107
script = ExtResource("7_nvctb")
115108
stylebox = SubResource("StyleBoxFlat_jtvwe")
116109

@@ -257,6 +250,7 @@ theme_override_fonts/font = ExtResource("3_e8i1t")
257250
theme_override_font_sizes/font_size = 10
258251
text = "MIT License
259252
253+
Copyright (c) 2025 Anish Mishra
260254
Copyright (c) 2023 MewPurPur
261255
Copyright (c) 2023-present GodSVG contributors
262256

0 commit comments

Comments
 (0)