diff --git a/CHANGELOG.md b/CHANGELOG.md index f98986c39..a46a68dea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). All the dates are in YYYY-MM-DD format.

-## [v0.8.2] - Unreleased +## [v0.8.2] - 2020-12-12 This update has been brought to you by the contributions of: PinyaColada, RĂ©mi Verschelde (akien-mga), dasimonde, gschwind, AbhinavKDev diff --git a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml index b72142961..4deeaaa86 100644 --- a/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml +++ b/Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml @@ -31,6 +31,7 @@ + diff --git a/project.godot b/project.godot index 2c2cbc633..4fed3a84a 100644 --- a/project.godot +++ b/project.godot @@ -113,7 +113,7 @@ boot_splash/bg_color=Color( 0.145098, 0.145098, 0.164706, 1 ) config/icon="res://assets/graphics/icons/icon.png" config/macos_native_icon="res://assets/graphics/icons/icon.icns" config/windows_native_icon="res://assets/graphics/icons/icon.ico" -config/Version="v0.8.2-rc1" +config/Version="v0.8.2-stable" [audio] diff --git a/src/UI/TopMenuContainer.gd b/src/UI/TopMenuContainer.gd index 24bfcff0a..8b8fd52b7 100644 --- a/src/UI/TopMenuContainer.gd +++ b/src/UI/TopMenuContainer.gd @@ -417,9 +417,10 @@ func help_menu_id_pressed(id : int) -> void: OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues") 3: # Changelog if OS.get_name() == "OSX": + # Issue #275 - remove when macOS builds use Godot 3.2.3 OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md") else: - OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v08---2020-10-14") + OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/CHANGELOG.md#v082---2020-12-12") 4: # About Pixelorama Global.control.get_node("Dialogs/AboutDialog").popup_centered() Global.dialog_open(true)