From 2476dd8b1f6cd7f139e03a8442613fd202b8888a Mon Sep 17 00:00:00 2001 From: CodeByMrFinchum Date: Fri, 31 Jan 2025 16:42:50 +0100 Subject: [PATCH] fix: misspelled dependency --- CHANGELOG.md | 17 ++++++++++++++--- pyproject.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c103ff4..bf1de6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,22 @@ # Changelog -## 0.7.x -### 0.7.0: Enhanced Preview +## 0.8.x +### 0.8.1: Fix +- Fixed a misspelling of `PyPiUpdater` in the build file, which prevented v0.8.0 from being installed. + +### 0.8.0: Updater Feature +- Added an updater function utilizing my new package [PyPiUpdater](https://gitlab.com/CodeByMrFinchum/PyPiUpdater). +- New updater window displaying the local version and checking for updates online. +- Added an option to update and restart the app from the menu. + +--- + +## 0.7.0: Enhanced Preview - Images loaded into the preview window are now scaled while maintaining aspect ratio. - Added live updates: changes to brightness, contrast, or grayscale are applied immediately. - - ⚠ This may crush the system depending on image size and system specifications. + - This may crush the system depending on image size and system specifications. - Removed Settings from menuBar, and extended the about window. + --- ## 0.6.0: Initial Flatpak Support diff --git a/pyproject.toml b/pyproject.toml index a9e3c18..fbfdbfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ readme = "pip_README.md" requires-python = ">=3.8" dependencies = [ "optima35>=1.0.0, <2.0.0", - "PyPyUpdater>=0.3.0, <1.0.0", + "PyPiUpdater>=0.3.0, <1.0.0", "pyside6", "PyYAML", ]