Skip to content

Commit 3519e16

Browse files
Update godsvg authors file and fix about menu (#62)
1 parent baa875d commit 3519e16

5 files changed

Lines changed: 33 additions & 40 deletions

File tree

GodSVG CONTRIBUTORS.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
# GodSVG Contributors
22

3-
This project is made possible by the contributions of the following individuals:
3+
GodSVG authors file: https://github.com/MewPurPur/GodSVG/blob/main/app_info.toml
44

5-
### Original Author
6-
- **MewPurPur** - Project Founder and Manager
5+
### Project Founder and Manager
6+
- **MewPurPur**
77

88
### Contributors
99
- Aaron Franke (aaronfranke)
1010
- ajreckof
1111
- aladvs
12-
- Alex2782
1312
- DevPoodle
13+
- FlooferLand
1414
- ilikefrogs101
15-
- itycodes
15+
- Yordan Dolchinkov (Jordyfel)
1616
- Kiisu-Master
1717
- MewPurPur
1818
- Qainguin
1919
- Serem Titus (SeremTitus)
2020
- Swarkin
21+
- Anish Mishra (syntaxerror247)
2122
- thiagola92
2223
- Tom Blackwell (Volts-s)
2324
- WeaverSong

export_presets.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ advanced_options=true
77
dedicated_server=false
88
custom_features=""
99
export_filter="all_resources"
10-
include_filter=""
10+
include_filter="*.toml"
1111
exclude_filter="godot_only/*, *.md, *.ico, *.icns"
1212
export_path=""
1313
patches=PackedStringArray()
@@ -232,7 +232,7 @@ advanced_options=true
232232
dedicated_server=false
233233
custom_features=""
234234
export_filter="all_resources"
235-
include_filter=""
235+
include_filter="*.toml"
236236
exclude_filter="godot_only/*, *.md, *.ico, *.icns"
237237
export_path=""
238238
patches=PackedStringArray()

src/ui_parts/about_menu.gd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
extends PanelContainer
22

3-
@onready var close_button: Button = $VBoxContainer/CloseButton
3+
@onready var back_button: Button = $VBoxContainer/PanelContainer/BackButton
44
@onready var translators_vbox: VBoxContainer = %TranslatorsVBox
55
@onready var developers_list: PanelGrid = %DevelopersList
66

@@ -17,15 +17,15 @@ func _ready() -> void:
1717
stylebox.content_margin_top += 2.0
1818
add_theme_stylebox_override("panel", stylebox)
1919

20-
%VersionLabel.text = "VectorTouch Mobile v" + ProjectSettings.get_setting("application/config/version")
20+
%VersionLabel.text = "VectorTouch v" + ProjectSettings.get_setting("application/config/version")
2121

22-
close_button.pressed.connect(queue_free)
23-
close_button.text = Translator.translate("Close")
22+
back_button.pressed.connect(queue_free)
2423

2524
tab_container.set_tab_title(0, Translator.translate("Authors"))
2625
tab_container.set_tab_title(1, Translator.translate("Donors"))
2726
tab_container.set_tab_title(2, Translator.translate("License"))
2827
tab_container.set_tab_title(3, Translator.translate("Third-party licenses"))
28+
tab_container.set_tab_hidden(1, true)
2929
tab_container.tab_changed.connect(_on_tab_changed)
3030
_on_tab_changed(0)
3131

@@ -118,7 +118,7 @@ func _on_tab_changed(idx: int) -> void:
118118
2:
119119
# This part doesn't need to be translated.
120120
%LicenseLabel.text = "MIT License\n\nCopyright (c) 2025 Anish Mishra\n" +\
121-
"Copyright (c) 2023-present VectorTouch contributors\n\n" +\
121+
"Copyright (c) 2023-present GodSVG contributors\n\n" +\
122122
Engine.get_license_info()["Expat"]
123123
3:
124124
for child in %VectorTouchParts.get_children():

src/ui_parts/about_menu.tscn

Lines changed: 18 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,52 @@
1-
[gd_scene load_steps=5 format=3 uid="uid://mhfp37lr7q4f"]
1+
[gd_scene load_steps=7 format=3 uid="uid://mhfp37lr7q4f"]
22

33
[ext_resource type="Script" uid="uid://ys8g367cpqc2" path="res://src/ui_parts/about_menu.gd" id="1_xxltt"]
4+
[ext_resource type="Texture2D" uid="uid://ljdlk0jneuwh" path="res://assets/icons/ArrowLeft.svg" id="2_q2got"]
45
[ext_resource type="Texture2D" uid="uid://mkitu0lvacs2" path="res://assets/logos/icon.svg" id="2_t7fbd"]
56
[ext_resource type="FontFile" uid="uid://depydd16jq777" path="res://assets/fonts/FontMono.ttf" id="3_e8i1t"]
67
[ext_resource type="Script" uid="uid://ci44864moadn" path="res://src/ui_widgets/PanelGrid.gd" id="7_nvctb"]
78

9+
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_s8tsc"]
10+
811
[node name="AboutMenu" type="PanelContainer"]
912
anchors_preset = 15
1013
anchor_right = 1.0
1114
anchor_bottom = 1.0
1215
grow_horizontal = 2
1316
grow_vertical = 2
14-
theme_type_variation = &"OverlayPanel"
17+
theme_type_variation = &"BasePanel"
1518
script = ExtResource("1_xxltt")
1619

1720
[node name="VBoxContainer" type="VBoxContainer" parent="."]
1821
layout_mode = 2
1922
theme_override_constants/separation = 8
23+
alignment = 1
24+
25+
[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer"]
26+
layout_mode = 2
27+
theme_override_styles/panel = SubResource("StyleBoxEmpty_s8tsc")
2028

21-
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
29+
[node name="BackButton" type="Button" parent="VBoxContainer/PanelContainer"]
30+
layout_mode = 2
31+
size_flags_horizontal = 0
32+
icon = ExtResource("2_q2got")
33+
34+
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer/PanelContainer"]
2235
layout_mode = 2
2336
size_flags_horizontal = 4
2437
theme_override_constants/separation = 8
2538

26-
[node name="TextureRect" type="TextureRect" parent="VBoxContainer/HBoxContainer"]
39+
[node name="TextureRect" type="TextureRect" parent="VBoxContainer/PanelContainer/HBoxContainer"]
2740
layout_mode = 2
2841
texture = ExtResource("2_t7fbd")
2942
expand_mode = 2
3043

31-
[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer"]
32-
layout_mode = 2
33-
34-
[node name="VersionLabel" type="Label" parent="VBoxContainer/HBoxContainer/VBoxContainer"]
44+
[node name="VersionLabel" type="Label" parent="VBoxContainer/PanelContainer/HBoxContainer"]
3545
unique_name_in_owner = true
3646
layout_mode = 2
3747
theme_type_variation = &"TitleLabel"
3848
theme_override_font_sizes/font_size = 16
3949

40-
[node name="CopyLabel" type="Label" parent="VBoxContainer/HBoxContainer/VBoxContainer"]
41-
layout_mode = 2
42-
theme_type_variation = &"TitleLabel"
43-
theme_override_constants/line_spacing = 0
44-
theme_override_font_sizes/font_size = 12
45-
text = "© 2025 Anish Mishra
46-
© 2023 MewPurPur
47-
© 2023-present VectorTouch contributors"
48-
4950
[node name="TabContainer" type="TabContainer" parent="VBoxContainer"]
5051
custom_minimum_size = Vector2(0, 280)
5152
layout_mode = 2
@@ -88,7 +89,6 @@ horizontal_alignment = 1
8889
unique_name_in_owner = true
8990
layout_mode = 2
9091
script = ExtResource("7_nvctb")
91-
columns = 2
9292

9393
[node name="TranslatorsLabel" type="Label" parent="VBoxContainer/TabContainer/Authors/MarginContainer/VBoxContainer"]
9494
unique_name_in_owner = true
@@ -274,11 +274,3 @@ theme_override_constants/separation = 8
274274
unique_name_in_owner = true
275275
layout_mode = 2
276276
theme_override_constants/separation = 12
277-
278-
[node name="CloseButton" type="Button" parent="VBoxContainer"]
279-
layout_mode = 2
280-
size_flags_horizontal = 4
281-
size_flags_vertical = 8
282-
focus_mode = 0
283-
mouse_default_cursor_shape = 2
284-
text = "Close"

src/ui_widgets/PanelGrid.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ func _draw() -> void:
1717
if item_count == 0:
1818
return
1919

20-
var inner_color := ThemeUtils.basic_panel_inner_color.lerp(ThemeUtils.desaturated_color, 0.35)
21-
var border_color := ThemeUtils.basic_panel_inner_color.lerp(ThemeUtils.desaturated_color, 0.85)
20+
var inner_color := ThemeUtils.softer_base_color
21+
var border_color := ThemeUtils.basic_panel_border_color
2222

2323
var effective_columns := clampi(columns, 1, item_count)
2424
var text_color := get_theme_color("font_color", "Label")

0 commit comments

Comments
 (0)