From dea57fb8d4abad5df9948076764a0fcc75838a04 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sat, 20 Sep 2025 14:53:18 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.2.1=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 18 ++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31dec4e..4620ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to WuttaPOS will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v0.3.0 (2025-09-20) + +### Feat + +- add support for dynamic context menu +- begin abstraction for more flexible button menus +- abandon `UserControl` as parent class for custom controls +- use latest flet, try to fix threading issues + +### Fix + +- fix config extension entry point +- change how snackbar is opened, per upstream changes +- add backward compatibility for Flet 0.19.0 +- avoid deprecated `Page.dialog` usage +- change how we set app to be full screen (again) +- add red highlighting for Terminal ID, if not configured + ## v0.2.1 (2024-07-01) ### Fix diff --git a/pyproject.toml b/pyproject.toml index c0f4851..b0423f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaPOS" -version = "0.2.1" +version = "0.3.0" description = "Pythonic Point of Sale System" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]