Compare commits

..

No commits in common. "dea57fb8d4abad5df9948076764a0fcc75838a04" and "be88d5de686ad0e778d63ed52d6213cf12bfdfa9" have entirely different histories.

2 changed files with 3 additions and 22 deletions

View file

@ -5,24 +5,6 @@ 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/) 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). 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) ## v0.2.1 (2024-07-01)
### Fix ### Fix

View file

@ -6,10 +6,10 @@ build-backend = "hatchling.build"
[project] [project]
name = "WuttaPOS" name = "WuttaPOS"
version = "0.3.0" version = "0.2.1"
description = "Pythonic Point of Sale System" description = "Pythonic Point of Sale System"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
license = {text = "GNU GPL v3+"} license = {text = "GNU GPL v3+"}
classifiers = [ classifiers = [
"Development Status :: 3 - Alpha", "Development Status :: 3 - Alpha",
@ -41,14 +41,13 @@ docs = ["Sphinx", "furo"]
wuttapos = "wuttapos.commands:wuttapos_typer" wuttapos = "wuttapos.commands:wuttapos_typer"
[project.entry-points."wutta.config.extensions"] [project.entry-points."rattail.config.extensions"]
wuttapos = "wuttapos.config:WuttaConfigExtension" wuttapos = "wuttapos.config:WuttaConfigExtension"
[project.urls] [project.urls]
Homepage = "https://rattailproject.org" Homepage = "https://rattailproject.org"
Repository = "https://forgejo.wuttaproject.org/rattail/wuttapos" Repository = "https://forgejo.wuttaproject.org/rattail/wuttapos"
Issues = "https://forgejo.wuttaproject.org/rattail/wuttapos/issues"
Changelog = "https://forgejo.wuttaproject.org/rattail/wuttapos/src/branch/master/CHANGELOG.md" Changelog = "https://forgejo.wuttaproject.org/rattail/wuttapos/src/branch/master/CHANGELOG.md"