Skip to content

Commit

Permalink
feat: change text
Browse files Browse the repository at this point in the history
  • Loading branch information
Ark2000 committed Jun 29, 2023
1 parent cf218a3 commit 82f238d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion addons/panku_console/modules/general_settings/module.gd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ func open_settings_window():
func init_module():
# load settings
get_module_opt().window_blur_effect = load_module_data("lynx_window_blur_effect", true)
get_module_opt().window_color = load_module_data("lynx_window_base_color", Color(0, 0, 0, 0.5))
get_module_opt().window_color = load_module_data("lynx_window_base_color", Color("#111111aa"))
get_module_opt().enable_os_window = load_module_data("lynx_window_enable_os_window", false)
get_module_opt().os_window_bg_color = load_module_data("lynx_window_os_window_bg_color", Color(0, 0, 0, 0))

Expand Down
13 changes: 3 additions & 10 deletions addons/panku_console/modules/interactive_shell/module.gd
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,9 @@ var _is_gui_open:bool = false

func get_intro() -> String:
var intro:PackedStringArray = PackedStringArray()
intro.append("[font_size=24][b][color=#478cbf]Panku Console[/color] ~ [color=#478cbf]version %s[/color][/b][/font_size]" % PankuUtils.get_plugin_version())
intro.append("")
intro.append("All-in-One Godot 4 runtime debugging tool.")
intro.append("")
intro.append("[b][color=#478cbf]🌟Repo[/color][/b]: 🔗[url=https://github.com/Ark2000/PankuConsole]https://github.com/Ark2000/PankuConsole[/url]")
intro.append("")
intro.append("[b][color=#478cbf]❤️Contributors[/color][/b]: 🔗[url=https://github.com/Ark2000]Ark2000(Feo Wu)[/url], 🔗[url=https://github.com/scriptsengineer]scriptengineer(Rafael Correa)[/url], 🔗[url=https://github.com/winston-yallow]winston-yallow(Winston)[/url], 🔗[url=https://github.com/CheapMeow]CheapMeow[/url].")
intro.append("")
intro.append("> Tips: you can always access current scene root by `[b]current[/b]`.")
intro.append("")
intro.append("[font_size=64][color=#efefefbb][b][i]Panku Console[/i][/b][/color][/font_size]")
intro.append("[font_size=18][color=#f24b16dd]Feature-Packed Runtime Debugging Toolkit for Godot[/color][/font_size]")
intro.append("[font_size=18]Version: %s | Visit [color=#10a00c][url=https://github.com/Ark2000/PankuConsole]github repo[/url][/color] for more info[/font_size]" % PankuUtils.get_plugin_version())
return "\n".join(intro)

func init_module():
Expand Down
2 changes: 1 addition & 1 deletion addons/panku_console/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="PankuConsole"
description="All-in-One Godot Engine runtime debugging tool."
author="Feo (k2kra) Wu"
version="1.4.106"
version="1.5.alpha"
script="plugin.gd"

0 comments on commit 82f238d

Please sign in to comment.