From 0f5c7c5e5941daeabc17ff67fcc028f455df9fd1 Mon Sep 17 00:00:00 2001 From: OverloadedOrama <35376950+OverloadedOrama@users.noreply.github.com> Date: Thu, 7 May 2020 17:02:35 +0300 Subject: [PATCH] Updated donors in the About dialog --- CONTRIBUTING.md | 2 +- src/Drawers.gd | 2 +- src/UI/Dialogs/AboutDialog.gd | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d17bca2c0..6a8c7f933 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,7 +33,7 @@ If you want to add new features or fix bugs, please make sure that: - When you're creating a new script, Godot will place some comments and methods for you. If you're not using them, please remove them. They're taking unnecessary space. - Avoid using the "pass" keyword. It has no actual usage, besides being used as a placeholder for temporarily empty methods and empty cases. Make sure you don't include empty methods and cases in the code of your PR. - If you are adding new interactive UI elements such as buttons, don't forget to change their mouse default cursor shape to pointing arrow. Hint tooltips that explain the element's usage to the user are welcome too, just make sure to also include them in `Translations.pot`. -- If you are adding new scripts and/or scenes, please put them somewhere inside the `src/` directory, and make sure to use PascalCase for your file and folder names. [Read this guide for more information](https://www.gdquest.com/docs/guidelines/best-practices/godot-gdscript/) +- If you are adding new scripts and/or scenes, please put them somewhere inside the `src/` directory, and make sure to use PascalCase for your file and folder names. [Read this guide for more information.](https://www.gdquest.com/docs/guidelines/best-practices/godot-gdscript/) - If you are adding images or any type of asset, please put them somewhere inside the `assets/` directory, and make sure to use snake_case for your file and folder names. - Do **NOT** use the `l10n_master` branch for development. Do not base your work from it, and do not open Pull Requests targeted at it. It's used specifically by Crowdin for translation handling. diff --git a/src/Drawers.gd b/src/Drawers.gd index 99d7444b3..e47e8b159 100644 --- a/src/Drawers.gd +++ b/src/Drawers.gd @@ -21,7 +21,7 @@ class PixelPerfectDrawer extends Drawer: var last_pixels = [null, null] - func reset(): + func reset() -> void: last_pixels = [null, null] diff --git a/src/UI/Dialogs/AboutDialog.gd b/src/UI/Dialogs/AboutDialog.gd index 0cd887b4e..28c8aba23 100644 --- a/src/UI/Dialogs/AboutDialog.gd +++ b/src/UI/Dialogs/AboutDialog.gd @@ -35,8 +35,9 @@ func _ready() -> void: contributors.create_item(contributor_root).set_text(0, " Dávid Gábor BODOR (dragonfi)") var donors_root := donors.create_item() - donors.create_item(donors_root).set_text(0, " pcmxms") + donors.create_item(donors_root).set_text(0, " pcmxms - https://www.nonamefornowsoft.com.br/") donors.create_item(donors_root).set_text(0, " Mike King") + donors.create_item(donors_root).set_text(0, " Sam Marcus") func _on_AboutDialog_about_to_show() -> void: