v0.7 - The Timeline Update!

This commit is contained in:
OverloadedOrama 2020-05-16 14:48:13 +03:00
parent 8a27bbca49
commit d0825495d1
7 changed files with 60 additions and 46 deletions

View file

@ -772,6 +772,7 @@ margin_top = 19.0
margin_right = 106.0
margin_bottom = 36.0
hint_tooltip = "0: Color from the brush itself, 100: the currently selected color"
mouse_default_cursor_shape = 2
size_flags_horizontal = 4
value = 100.0
align = 1
@ -784,6 +785,7 @@ margin_bottom = 56.0
rect_min_size = Vector2( 92, 0 )
hint_tooltip = "0: Color from the brush itself, 100: the currently selected color"
focus_mode = 0
mouse_default_cursor_shape = 2
size_flags_horizontal = 4
size_flags_vertical = 1
value = 100.0

View file

@ -34,6 +34,7 @@ func _ready() -> void:
contributors.create_item(contributor_root).set_text(0, " Igor Santarek (jegor377)")
contributors.create_item(contributor_root).set_text(0, " Dávid Gábor BODOR (dragonfi)")
contributors.create_item(contributor_root).set_text(0, " John Jerome Romero (Wishdream)")
contributors.create_item(contributor_root).set_text(0, " Aaron Franke (aaronfranke)")
var donors_root := donors.create_item()
donors.create_item(donors_root).set_text(0, " pcmxms - https://www.nonamefornowsoft.com.br/")

View file

@ -57,7 +57,7 @@ margin_bottom = 197.0
margin_top = 5.0
margin_right = 44.0
margin_bottom = 19.0
text = "Angle: "
text = "Angle:"
[node name="HSlider" type="HSlider" parent="VBoxContainer/HBoxContainer"]
margin_left = 48.0

View file

@ -5,12 +5,18 @@ func _on_SplashDialog_about_to_show() -> void:
var art_by_label : Label = Global.find_node_by_name(self, "ArtByLabel")
var show_on_startup_button : CheckBox = Global.find_node_by_name(self, "ShowOnStartup")
var developed_by_label : Label = Global.find_node_by_name(self, "DevelopedBy")
var become_platinum : Button = Global.find_node_by_name(self, "BecomePlatinum")
var become_gold : Button = Global.find_node_by_name(self, "BecomeGold")
var become_patron : Button = Global.find_node_by_name(self, "BecomePatron")
if Global.config_cache.has_section_key("preferences", "startup"):
show_on_startup_button.pressed = !Global.config_cache.get_value("preferences", "startup")
window_title = "Pixelorama" + " " + Global.current_version
art_by_label.text = tr("Art by") + ":"
become_platinum.text = "- " + tr("Become a Platinum Sponsor")
become_gold.text = "- " + tr("Become a Gold Sponsor")
become_patron.text = "- " + tr("Become a Patron")
if "zh" in TranslationServer.get_locale():
show_on_startup_button.add_font_override("font", preload("res://assets/fonts/CJK/NotoSansCJKtc-Small.tres"))
developed_by_label.add_font_override("font", preload("res://assets/fonts/CJK/NotoSansCJKtc-Small.tres"))