From 484503103b708da4fc969f8d22b2adb4b9ed8603 Mon Sep 17 00:00:00 2001 From: Tyler MacInnis <21990225+tyler-macinnis@users.noreply.github.com> Date: Thu, 1 Aug 2024 07:34:20 -0400 Subject: [PATCH 1/3] Update build_release.py --- build_release.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/build_release.py b/build_release.py index d6fcd92..ce9185e 100644 --- a/build_release.py +++ b/build_release.py @@ -1,5 +1,13 @@ import PyInstaller.__main__ PyInstaller.__main__.run( - ["src/main.py", "--onefile", "--windowed", "--name=Time Capsule", "--icon=res/time.png"] + [ + "src/main.py", + "--onefile", + "--hidden-import", + "babel.numbers", + "--windowed", + "--name=Time Capsule", + "--icon=res/time.png", + ] ) From 173ddb863bccaef5be51cd61f0f2a9bf9cf7566a Mon Sep 17 00:00:00 2001 From: Tyler MacInnis <21990225+tyler-macinnis@users.noreply.github.com> Date: Thu, 1 Aug 2024 07:34:52 -0400 Subject: [PATCH 2/3] Update main.py --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 147528b..52bfa80 100644 --- a/src/main.py +++ b/src/main.py @@ -14,7 +14,7 @@ DATES_FILE = os.path.join(SCRIPT_DIR, "important_dates.json") CATEGORIES_FILE = os.path.join(SCRIPT_DIR, "categories.json") DATE_FORMAT = "%m-%d-%Y" -VERSION = "1.1.0" +VERSION = "1.1.1" def load_dates(): From 8c053b58cc6e6433704cb491750d32b8a1ed3f92 Mon Sep 17 00:00:00 2001 From: Tyler MacInnis <21990225+tyler-macinnis@users.noreply.github.com> Date: Thu, 1 Aug 2024 07:35:39 -0400 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eba695b..e1360f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Security in case of vulnerabilities. +## [1.1.1] - 2024-08-01 + +### Fixed in 1.1.1 + +- Added necessary hidden import for tkcalender. See [here](https://tkcalendar.readthedocs.io/en/stable/howtos.html#pyinstaller) for more info. + ## [1.1.0] - 2024-07-30 ### Added in 1.1.0