From fe0fb7d21f8068c74255a469cb81d5111cf892c0 Mon Sep 17 00:00:00 2001
From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com>
Date: Sat, 12 Dec 2020 16:55:13 +0200
Subject: [PATCH] v0.8.2-stable
---
CHANGELOG.md | 2 +-
Misc/Linux/com.orama_interactive.Pixelorama.appdata.xml | 1 +
project.godot | 2 +-
src/UI/TopMenuContainer.gd | 3 ++-
4 files changed, 5 insertions(+), 3 deletions(-)
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)