From cef49e196b7a2a135f90ff3cb217542e7f17fd46 Mon Sep 17 00:00:00 2001 From: gbMichelle Date: Thu, 24 Dec 2020 04:38:18 +0100 Subject: [PATCH 1/3] Add Python 3.9 warning message --- mozzarilla/app_window.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/mozzarilla/app_window.py b/mozzarilla/app_window.py index 02379f2..3507827 100644 --- a/mozzarilla/app_window.py +++ b/mozzarilla/app_window.py @@ -7,6 +7,7 @@ # See LICENSE for more information. # +import sys import re import tkinter as tk import subprocess @@ -345,6 +346,15 @@ def __init__(self, *args, **kwargs): except AttributeError: pass + if (sys.version_info.minor > 8): + messagebox.showinfo( + "Unsupported Python version", + "Your Python version is newer than 3.8.\n" + "Right now Python 3.9 and up are not supported yet\n" + "because of a language change that breaks some of our code\n\n" + "Until this issue has been resolved please use Python 3.8", + parent=self) + if self.config_made_anew: messagebox.showinfo( "Select your default tags directory", From 6ec705c50dee35492330467ac03e4f6f73555809 Mon Sep 17 00:00:00 2001 From: gbMichelle Date: Thu, 24 Dec 2020 04:40:27 +0100 Subject: [PATCH 2/3] Switch out report bug for Discord button --- mozzarilla/app_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozzarilla/app_window.py b/mozzarilla/app_window.py index 3507827..fd8f433 100644 --- a/mozzarilla/app_window.py +++ b/mozzarilla/app_window.py @@ -95,7 +95,7 @@ class Mozzarilla(Binilla): _bitmap_load_dir = Path("") - issue_tracker_url = mozzarilla.__website__ + "/issues" + issue_tracker_url = "https://discord.reclaimers.net" _mozzarilla_initialized = False guerilla_workspace_def = None @@ -247,7 +247,7 @@ def __init__(self, *args, **kwargs): self.main_menu.add_cascade(label="Tools", menu=self.tools_menu) self.main_menu.add_cascade(label="Compile Tag", menu=self.compile_menu) self.main_menu.add_command(label="About", command=self.show_about_window) - self.main_menu.add_command(label="Report Bug", command=self.open_issue_tracker) + self.main_menu.add_command(label="Discord", command=self.open_issue_tracker) try: if e_c.IS_WIN and not is_main_frozen(): import hek_pool From d8efbcee4848d1c54e78b85ed7d904520fad74d1 Mon Sep 17 00:00:00 2001 From: gbMichelle Date: Thu, 24 Dec 2020 04:43:03 +0100 Subject: [PATCH 3/3] Bump version --- CHANGELOG.MD | 5 +++++ mozzarilla/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 26395f7..cd5ffa2 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This project also inherits changes from [Binilla](https://github.com/Sigmmma/binilla). +## [1.9.8] +### Changed + - Temporarily drop support for Python 3.9 + - Replace report bug button with a discord button + ## [1.9.7] ### Changed - Update build config for Python 3.9. diff --git a/mozzarilla/__init__.py b/mozzarilla/__init__.py index 02159b2..ace9f33 100644 --- a/mozzarilla/__init__.py +++ b/mozzarilla/__init__.py @@ -12,6 +12,6 @@ # ############## __author__ = "Sigmmma" # YYYY.MM.DD -__date__ = "2020.10.30" -__version__ = (1, 9, 7) +__date__ = "2020.12.24" +__version__ = (1, 9, 8) __website__ = "https://github.com/Sigmmma/mozzarilla"