diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 13bf6622..40b1b1c7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "libs/pyTermTk": "0.43.2-a.0", + "libs/pyTermTk": "0.43.3-a.0", "apps/ttkode": "0.4.0-a.2", - "apps/tlogg": "0.7.0-a.0", + "apps/tlogg": "0.7.1-a.0", "apps/ttkDesigner": "0.41.4-a.54", "apps/dumbPaintTool": "0.41.9-a.54" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b0a009c2..b9b36a45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.43.3-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.43.2-a.0...pyTermTk-v0.43.3-a.0) (2025-07-20) + + +### Fixes + +* **treeWidget:** avoid crash when the content size is required for empty models ([#426](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/426)) ([bd8f60f](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/bd8f60f65e53ba41e806b1dca0ffa6fd5259f55c)) + + +### Chores + +* fix log typing ([14e7739](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/14e77397ce1ea7bfa9af27ada4ccbfdbd971b8c3)) +* improve typing ([#417](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/417)) ([833005a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/833005acd115f2a5cb467b614ff208bda013c043)) +* **KodeTab:** fix hover highlight ([c944b4d](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c944b4d14603f35756fb2e7154eb8cda0ec58f4b)) +* reworked autogen ([f2d35ae](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/f2d35ae24a5e27885febe56ab25e50a884d516b6)) +* **Typing:** improved TTkHelper typings ([849ab5a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/849ab5afe61e2519fb3e8c89dbd21cdf7f8a252c)) +* **Typing:** improved typings in the base widget class ([9da8d3c](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9da8d3c1cf5108deb057bd7f747d100a0c24e759)) +* **Typing:** Reworked TTkColor to solve all the typing issues ([c94c114](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c94c114faac878c9c5f99619eaf9fd79bc285c42)) +* **Typing:** solved typing issues in the unsupported Fancy widgets ([e27b2af](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/e27b2afb0bb4c6d295f223c0f83b8ddab6f5d0e3)) + ## [0.43.2-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.43.1-a.0...pyTermTk-v0.43.2-a.0) (2025-06-04) diff --git a/apps/tlogg/CHANGELOG.md b/apps/tlogg/CHANGELOG.md index 527a31af..3ad0eee9 100644 --- a/apps/tlogg/CHANGELOG.md +++ b/apps/tlogg/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.7.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/tlogg-v0.7.0-a.0...tlogg-v0.7.1-a.0) (2025-07-20) + + +### Fixes + +* color picker crash ([#423](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/423)) ([af5bce3](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/af5bce3d6a76d3ba35453c759a57f277bdf2b1ca)) + ## [0.7.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/tlogg-v0.6.0-a.0...tlogg-v0.7.0-a.0) (2025-06-03) diff --git a/apps/tlogg/pyproject.toml b/apps/tlogg/pyproject.toml index edf26cf8..e68a0020 100644 --- a/apps/tlogg/pyproject.toml +++ b/apps/tlogg/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Topic :: Software Development :: User Interfaces", ] dependencies = [ - 'pyTermTk>=0.43.0-a.0', + 'pyTermTk>=0.43.3-a.0', 'appdirs', 'copykitten', 'pyyaml' diff --git a/apps/tlogg/tlogg/__init__.py b/apps/tlogg/tlogg/__init__.py index 44376893..a8f4c972 100755 --- a/apps/tlogg/tlogg/__init__.py +++ b/apps/tlogg/tlogg/__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.7.0-a.0' +__version__:str = '0.7.1-a.0' from .plugin import TloggPlugin from .proxy import tloggProxy, TloggViewerProxy diff --git a/libs/pyTermTk/CHANGELOG.md b/libs/pyTermTk/CHANGELOG.md index b0a009c2..b9b36a45 100644 --- a/libs/pyTermTk/CHANGELOG.md +++ b/libs/pyTermTk/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [0.43.3-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.43.2-a.0...pyTermTk-v0.43.3-a.0) (2025-07-20) + + +### Fixes + +* **treeWidget:** avoid crash when the content size is required for empty models ([#426](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/426)) ([bd8f60f](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/bd8f60f65e53ba41e806b1dca0ffa6fd5259f55c)) + + +### Chores + +* fix log typing ([14e7739](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/14e77397ce1ea7bfa9af27ada4ccbfdbd971b8c3)) +* improve typing ([#417](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/417)) ([833005a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/833005acd115f2a5cb467b614ff208bda013c043)) +* **KodeTab:** fix hover highlight ([c944b4d](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c944b4d14603f35756fb2e7154eb8cda0ec58f4b)) +* reworked autogen ([f2d35ae](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/f2d35ae24a5e27885febe56ab25e50a884d516b6)) +* **Typing:** improved TTkHelper typings ([849ab5a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/849ab5afe61e2519fb3e8c89dbd21cdf7f8a252c)) +* **Typing:** improved typings in the base widget class ([9da8d3c](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9da8d3c1cf5108deb057bd7f747d100a0c24e759)) +* **Typing:** Reworked TTkColor to solve all the typing issues ([c94c114](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c94c114faac878c9c5f99619eaf9fd79bc285c42)) +* **Typing:** solved typing issues in the unsupported Fancy widgets ([e27b2af](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/e27b2afb0bb4c6d295f223c0f83b8ddab6f5d0e3)) + ## [0.43.2-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.43.1-a.0...pyTermTk-v0.43.2-a.0) (2025-06-04) diff --git a/libs/pyTermTk/TermTk/__init__.py b/libs/pyTermTk/TermTk/__init__.py index 7ffaa8b6..933a6f7a 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.43.2-a.0' +__version__:str = '0.43.3-a.0' from .TTkCore import * from .TTkTheme import *