From ff309f2257c24ecaeffa69ef1efca005cf83fd18 Mon Sep 17 00:00:00 2001 From: Pier CeccoPierangioliEugenio Date: Wed, 7 Jan 2026 12:47:35 +0000 Subject: [PATCH] chore: release main (#527) Co-authored-by: Eugenio Parodi - Action --- .release-please-manifest.json | 6 ++-- CHANGELOG.md | 29 ++++++++++++++++++++ apps/dumbPaintTool/CHANGELOG.md | 7 +++++ apps/dumbPaintTool/dumbPaintTool/__init__.py | 2 +- apps/dumbPaintTool/pyproject.toml | 2 +- apps/ttkDesigner/CHANGELOG.md | 7 +++++ apps/ttkDesigner/pyproject.toml | 2 +- apps/ttkDesigner/ttkDesigner/__init__.py | 2 +- libs/pyTermTk/CHANGELOG.md | 29 ++++++++++++++++++++ libs/pyTermTk/TermTk/__init__.py | 2 +- 10 files changed, 80 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 905fbf9f..cd3b8612 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "libs/pyTermTk": "0.48.1-a0", + "libs/pyTermTk": "0.49.0-a0", "apps/ttkode": "0.48.1-a0", "apps/tlogg": "0.48.1-a0", - "apps/ttkDesigner": "0.48.1-a0", - "apps/dumbPaintTool": "0.48.1-a0" + "apps/ttkDesigner": "0.48.2-a0", + "apps/dumbPaintTool": "0.48.2-a0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 32a49867..a4fb08a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [0.49.0-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.48.1-a0...pyTermTk-v0.49.0-a0) (2026-01-07) + + +### Fixes + +* **combobox:** add widget if editable ([#567](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/567)) ([648189f](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/648189fde2e82cb1ca08c9a93faaccb8fe1e0c39)) +* **list:** do not reset the position after focus ([#564](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/564)) ([465ca4c](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/465ca4c39cb02a25aee05ce21f23ed13cf6cfa66)) +* **scrollbar:** show in small viewport ([#515](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/515)) ([f861681](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/f861681faef595d3dd6a9d77515b8fdfba72c298)) +* visibility propagation ([#575](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/575)) ([c050f44](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c050f44beb6b46fdf7ff7a14436496117204702a)) + + +### Features + +* **keypressview:** exclude mouse move events ([#566](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/566)) ([dd25671](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/dd256711ae1f66206d6e1ecdac8986ae30d89df3)) + + +### Chores + +* **combobox:** add tests ([#570](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/570)) ([02fe83a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/02fe83ade1a20768cacd6828a93213aaf4905137)) +* **crossTools:** improve typing ([#571](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/571)) ([ebd13f9](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ebd13f94c5513daa356547a05a9ca93c2bd946e8)) +* improve typing ([9a04879](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9a04879d7333a64e92ffcb675ef7da920a868d3d)) +* improve typing ([99925ad](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/99925ad874f322cd83a78df1345ec9d06142dbbd)) +* improve typing ([#562](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/562)) ([b066ee0](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b066ee0ef3c7831aa59dfcf492ac9f2595b0bdca)) +* improve typing ([#572](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/572)) ([db386ca](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/db386ca52a29fde1eedc46b19a28cd1017e882a5)) +* improve typing and tests ([#573](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/573)) ([4577969](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/457796908fbdb0a20244cb35592e7d90b9e248d9)) +* removed unrequired field ([caf1832](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/caf1832d92716129456579049d61d84aaabcf99c)) +* **tabButton:** removed unrequired field ([eec5698](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/eec56985823c472b2b92d1b20330c1126b7da356)) +* **tabwidget:** default highlighted to the selected tab ([#563](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/563)) ([5c4e3d3](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/5c4e3d3f63e66889306b3ef2de1582a57c8c2072)) + ## [0.48.1-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.48.0-a.0...pyTermTk-v0.48.1-a0) (2025-11-10) diff --git a/apps/dumbPaintTool/CHANGELOG.md b/apps/dumbPaintTool/CHANGELOG.md index 21d40b95..828ff221 100644 --- a/apps/dumbPaintTool/CHANGELOG.md +++ b/apps/dumbPaintTool/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.48.2-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/theDumbPaintTool-v0.48.1-a0...theDumbPaintTool-v0.48.2-a0) (2026-01-07) + + +### Chores + +* **crossTools:** improve typing ([#571](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/571)) ([ebd13f9](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ebd13f94c5513daa356547a05a9ca93c2bd946e8)) + ## [0.48.1-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/theDumbPaintTool-v0.41.10-a.54...theDumbPaintTool-v0.48.1-a0) (2025-11-10) diff --git a/apps/dumbPaintTool/dumbPaintTool/__init__.py b/apps/dumbPaintTool/dumbPaintTool/__init__.py index 7e4e3a15..142c975c 100755 --- a/apps/dumbPaintTool/dumbPaintTool/__init__.py +++ b/apps/dumbPaintTool/dumbPaintTool/__init__.py @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__:str = '0.48.1-a0' +__version__:str = '0.48.2-a0' from .app import main diff --git a/apps/dumbPaintTool/pyproject.toml b/apps/dumbPaintTool/pyproject.toml index c243651e..a379bd0e 100644 --- a/apps/dumbPaintTool/pyproject.toml +++ b/apps/dumbPaintTool/pyproject.toml @@ -12,7 +12,7 @@ authors = [ ] requires-python = ">=3.9" dependencies = [ - 'pyTermTk>=0.48.1-a0', + 'pyTermTk>=0.49.0-a0', 'pyperclip', 'Pillow', ] diff --git a/apps/ttkDesigner/CHANGELOG.md b/apps/ttkDesigner/CHANGELOG.md index 753df9e1..91af734b 100644 --- a/apps/ttkDesigner/CHANGELOG.md +++ b/apps/ttkDesigner/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.48.2-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkDesigner-v0.48.1-a0...ttkDesigner-v0.48.2-a0) (2026-01-07) + + +### Fixes + +* crash on the menu editor ([6927fd4](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/6927fd401af169dcc2592b57171de892763d9647)) + ## [0.48.1-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkDesigner-v0.41.5-a.54...ttkDesigner-v0.48.1-a0) (2025-11-10) diff --git a/apps/ttkDesigner/pyproject.toml b/apps/ttkDesigner/pyproject.toml index 0f1031f8..8cb46096 100644 --- a/apps/ttkDesigner/pyproject.toml +++ b/apps/ttkDesigner/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Application Frameworks", ] dependencies = [ - 'pyTermTk>=0.48.1-a0', + 'pyTermTk>=0.49.0-a0', 'pyperclip', 'Pillow', ] diff --git a/apps/ttkDesigner/ttkDesigner/__init__.py b/apps/ttkDesigner/ttkDesigner/__init__.py index 6b934dac..945c7aa7 100755 --- a/apps/ttkDesigner/ttkDesigner/__init__.py +++ b/apps/ttkDesigner/ttkDesigner/__init__.py @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__:str = '0.48.1-a0' +__version__:str = '0.48.2-a0' from .app import * diff --git a/libs/pyTermTk/CHANGELOG.md b/libs/pyTermTk/CHANGELOG.md index 32a49867..a4fb08a1 100644 --- a/libs/pyTermTk/CHANGELOG.md +++ b/libs/pyTermTk/CHANGELOG.md @@ -1,5 +1,34 @@ # Changelog +## [0.49.0-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.48.1-a0...pyTermTk-v0.49.0-a0) (2026-01-07) + + +### Fixes + +* **combobox:** add widget if editable ([#567](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/567)) ([648189f](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/648189fde2e82cb1ca08c9a93faaccb8fe1e0c39)) +* **list:** do not reset the position after focus ([#564](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/564)) ([465ca4c](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/465ca4c39cb02a25aee05ce21f23ed13cf6cfa66)) +* **scrollbar:** show in small viewport ([#515](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/515)) ([f861681](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/f861681faef595d3dd6a9d77515b8fdfba72c298)) +* visibility propagation ([#575](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/575)) ([c050f44](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c050f44beb6b46fdf7ff7a14436496117204702a)) + + +### Features + +* **keypressview:** exclude mouse move events ([#566](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/566)) ([dd25671](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/dd256711ae1f66206d6e1ecdac8986ae30d89df3)) + + +### Chores + +* **combobox:** add tests ([#570](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/570)) ([02fe83a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/02fe83ade1a20768cacd6828a93213aaf4905137)) +* **crossTools:** improve typing ([#571](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/571)) ([ebd13f9](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ebd13f94c5513daa356547a05a9ca93c2bd946e8)) +* improve typing ([9a04879](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9a04879d7333a64e92ffcb675ef7da920a868d3d)) +* improve typing ([99925ad](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/99925ad874f322cd83a78df1345ec9d06142dbbd)) +* improve typing ([#562](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/562)) ([b066ee0](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b066ee0ef3c7831aa59dfcf492ac9f2595b0bdca)) +* improve typing ([#572](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/572)) ([db386ca](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/db386ca52a29fde1eedc46b19a28cd1017e882a5)) +* improve typing and tests ([#573](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/573)) ([4577969](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/457796908fbdb0a20244cb35592e7d90b9e248d9)) +* removed unrequired field ([caf1832](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/caf1832d92716129456579049d61d84aaabcf99c)) +* **tabButton:** removed unrequired field ([eec5698](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/eec56985823c472b2b92d1b20330c1126b7da356)) +* **tabwidget:** default highlighted to the selected tab ([#563](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/563)) ([5c4e3d3](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/5c4e3d3f63e66889306b3ef2de1582a57c8c2072)) + ## [0.48.1-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.48.0-a.0...pyTermTk-v0.48.1-a0) (2025-11-10) diff --git a/libs/pyTermTk/TermTk/__init__.py b/libs/pyTermTk/TermTk/__init__.py index fd696268..04eac3ea 100644 --- a/libs/pyTermTk/TermTk/__init__.py +++ b/libs/pyTermTk/TermTk/__init__.py @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__:str = '0.48.1-a0' +__version__:str = '0.49.0-a0' from .TTkTheme import * from .TTkCore import *