Browse Source

chore: updated TermTk and apps to versions

release-please--branches--main
Eugenio Parodi - Action 2 weeks ago
parent
commit
9a7b70ab77
  1. 28
      CHANGELOG.md
  2. 2
      apps/tlogg/pyproject.toml
  3. 2
      apps/tlogg/tlogg/__init__.py
  4. 2
      apps/ttkode/pyproject.toml
  5. 2
      apps/ttkode/ttkode/__init__.py
  6. 2
      libs/pyTermTk/TermTk/__init__.py

28
CHANGELOG.md

@ -1,5 +1,33 @@
# Changelog
## [0.50.0-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.49.0-a0...pyTermTk-v0.50.0-a0) (2026-03-03)
### ⚠ BREAKING CHANGES
* **list:** reworked the TTkList component ([#595](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/595))
* **tree:** The following APIs have been removed from TTkTreeWidgetItem:
- `isSelected()` method - use `TTkTreeWidget.selectedItems()` to check selection
- `setSelected(bool)` method - selection is now managed by TTkTreeWidget
- `selected` parameter in constructor - no longer supported
### Fixes
* **canvas:** allow doubleBufferNew missing _link ([#600](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/600)) ([b0151d6](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b0151d6d27e96eaca424bb53fb51a524a916dfac))
* **canvas:** unbuffered pushToTerminal missing _clean ([#605](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/605)) ([6fa6961](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/6fa6961c282f5299c11cd97ee49be48d1ed56ab2))
* **splitter:** process sizes in setOrientation() ([#601](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/601)) ([b07a5bc](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b07a5bc5e12babaf1b8c70360b9955fe30bb355e))
* **TTkLineEdit:** paste str ([#610](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/610)) ([0006afd](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/0006afdf5d38a496a27ec458f0838e70dbdb1ae8))
* **TTkTabBar:** currentIndex <= highlighted TypeError ([#593](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/593)) ([c743c49](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c743c492e88edbc7a6057b831bd829a0bc75beaa))
### Chores
* handle mouse move by default to avoid unwanted propagation ([#597](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/597)) ([eadfa70](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/eadfa70502596fc2deb01170caddf7b5f8db85fc))
* **list:** reworked the TTkList component ([#595](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/595)) ([0f846e5](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/0f846e5c962f6c0b8422e73ad3022b8187edecf2))
* responsive tab close button ([#609](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/609)) ([19ab5df](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/19ab5df32cfeb80c575e7c8a2b64685b4c80a9e6))
* **tree:** mouse hover support ([#583](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/583)) ([cda68f2](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/cda68f278a815effe500b9316de6f359e6eb14df))
* **tree:** remove selected status from the treeWidgetItem ([#584](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/584)) ([b434b33](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b434b330f9ccf47f6ba4443f667d48fa9565df64))
## [0.49.0-a0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.48.1-a0...pyTermTk-v0.49.0-a0) (2026-01-07)

2
apps/tlogg/pyproject.toml

@ -24,7 +24,7 @@ classifiers = [
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
'pyTermTk>=0.48.1-a0',
'pyTermTk>=0.50.0-a0',
'appdirs',
'copykitten',
'pyyaml'

2
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.48.1-a0'
__version__:str = '0.49.0-a0'
from .plugin import TloggPlugin
from .proxy import tloggProxy, TloggViewerProxy

2
apps/ttkode/pyproject.toml

@ -24,7 +24,7 @@
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
'pyTermTk>=0.48.1-a0',
'pyTermTk>=0.50.0-a0',
'pytest',
'appdirs',
'copykitten',

2
apps/ttkode/ttkode/__init__.py

@ -22,7 +22,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 .plugin import TTkodePlugin, TTkodePluginWidget, TTkodePluginWidgetActivity, TTkodePluginWidgetPanel
from .proxy import TTKodeViewerProxy, ttkodeProxy

2
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.49.0-a0'
__version__:str = '0.50.0-a0'
from .TTkTheme import *
from .TTkCore import *

Loading…
Cancel
Save