Browse Source

chore: release main (#397)

Co-authored-by: Eugenio Parodi - Action <ceccopierangioliegenio@googlemail.com>
pull/408/head pyTermTk-v0.43.0-a.0
Pier CeccoPierangioliEugenio 10 months ago committed by GitHub
parent
commit
edce717e52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      .release-please-manifest.json
  2. 28
      CHANGELOG.md
  3. 13
      apps/tlogg/CHANGELOG.md
  4. 2
      apps/tlogg/pyproject.toml
  5. 2
      apps/tlogg/tlogg/__init__.py
  6. 16
      apps/ttkode/CHANGELOG.md
  7. 2
      apps/ttkode/pyproject.toml
  8. 2
      apps/ttkode/ttkode/__init__.py
  9. 28
      libs/pyTermTk/CHANGELOG.md
  10. 2
      libs/pyTermTk/TermTk/__init__.py

6
.release-please-manifest.json

@ -1,7 +1,7 @@
{
"libs/pyTermTk": "0.42.1-a.0",
"apps/ttkode": "0.3.2-a.2",
"apps/tlogg": "0.6.0-a.0",
"libs/pyTermTk": "0.43.0-a.0",
"apps/ttkode": "0.4.0-a.2",
"apps/tlogg": "0.7.0-a.0",
"apps/ttkDesigner": "0.41.4-a.54",
"apps/dumbPaintTool": "0.41.9-a.54"
}

28
CHANGELOG.md

@ -1,5 +1,33 @@
# Changelog
## [0.43.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.42.1-a.0...pyTermTk-v0.43.0-a.0) (2025-06-03)
### ⚠ BREAKING CHANGES
* **kodeTab:** reworked iterWidget in iterItems
* **TabWidget:** tab request close event need to be handled inside the app
### Fixes
* **spinbox:** better check for float, empty strings and negative numbers ([4909bf6](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/4909bf6756000f9450249b28f8c8379a2160415c))
### Chores
* autogen code for scrollarea classes ([#406](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/406)) ([fef1b0e](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/fef1b0ea5bd6ddc8f3e8f93a23ea156071e77493))
* **Input:** add support for ctrl and other key comination ([#404](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/404)) ([5c2bb92](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/5c2bb9202cd819aa573e9f0d9ea966a4d0e5c485))
* **kodeTab:** reworked iterWidget in iterItems ([47f73fc](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/47f73fc03a5a049ac3e6073dcadc09018b509328))
* **spinbox:** fix return type ([ddc53a0](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ddc53a07653a6f3aa958509d7d400cc6c6264d91))
* **spinbox:** handle left/right wheel event ([ce961a6](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ce961a657573ee520b73fca7d4ae721a8837a1d0))
* **ttk:** workaround timer disconnect in case of error ([d70b2c1](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/d70b2c1c3cf25f7ffb479bc2850b3c9a3ca0fe0c))
### Refactors
* **TabWidget:** tab request close event need to be handled inside the app ([9420adf](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9420adf68e2184482cd71266f280c560ea911f45))
* **TTkColor:** improved typings ([711d611](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/711d611a73be0d0a6fce37e4624b5ae30847dd9c))
## [0.42.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.42.0-a.0...pyTermTk-v0.42.1-a.0) (2025-05-01)

13
apps/tlogg/CHANGELOG.md

@ -0,0 +1,13 @@
# Changelog
## [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)
### ⚠ BREAKING CHANGES
* **TabWidget:** tab request close event need to be handled inside the app
### Refactors
* move the main routine outside the a folder ([#400](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/400)) ([b1bb71f](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b1bb71fd1ecd9c41a4cb016de15f1d695ea58ba5))
* **TabWidget:** tab request close event need to be handled inside the app ([9420adf](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9420adf68e2184482cd71266f280c560ea911f45))

2
apps/tlogg/pyproject.toml

@ -24,7 +24,7 @@ classifiers = [
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
'pyTermTk>=0.41.17-a.0',
'pyTermTk>=0.43.0-a.0',
'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.5.0-a.0'
__version__:str = '0.7.0-a.0'
from .plugin import TloggPlugin
from .proxy import tloggProxy, TloggViewerProxy

16
apps/ttkode/CHANGELOG.md

@ -1,5 +1,21 @@
# Changelog
## [0.4.0-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.3.2-a.2...ttkode-v0.4.0-a.2) (2025-06-03)
### ⚠ BREAKING CHANGES
* **TabWidget:** tab request close event need to be handled inside the app
### Features
* add save feature ([#407](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/407)) ([26ff9b2](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/26ff9b2f0a81bddadeb6849d5d560ae67406f973))
### Refactors
* **TabWidget:** tab request close event need to be handled inside the app ([9420adf](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9420adf68e2184482cd71266f280c560ea911f45))
## [0.3.2-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.3.1-a.2...ttkode-v0.3.2-a.2) (2025-05-01)

2
apps/ttkode/pyproject.toml

@ -24,7 +24,7 @@ classifiers = [
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
'pyTermTk>=0.42.1-a.0',
'pyTermTk>=0.43.0-a.0',
'appdirs',
'copykitten',
'pygments'

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.3.2-a.2'
__version__:str = '0.4.0-a.2'
from .plugin import TTkodePlugin, TTkodePluginActivity
from .proxy import TTKodeViewerProxy, ttkodeProxy

28
libs/pyTermTk/CHANGELOG.md

@ -1,5 +1,33 @@
# Changelog
## [0.43.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.42.1-a.0...pyTermTk-v0.43.0-a.0) (2025-06-03)
### ⚠ BREAKING CHANGES
* **kodeTab:** reworked iterWidget in iterItems
* **TabWidget:** tab request close event need to be handled inside the app
### Fixes
* **spinbox:** better check for float, empty strings and negative numbers ([4909bf6](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/4909bf6756000f9450249b28f8c8379a2160415c))
### Chores
* autogen code for scrollarea classes ([#406](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/406)) ([fef1b0e](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/fef1b0ea5bd6ddc8f3e8f93a23ea156071e77493))
* **Input:** add support for ctrl and other key comination ([#404](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/404)) ([5c2bb92](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/5c2bb9202cd819aa573e9f0d9ea966a4d0e5c485))
* **kodeTab:** reworked iterWidget in iterItems ([47f73fc](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/47f73fc03a5a049ac3e6073dcadc09018b509328))
* **spinbox:** fix return type ([ddc53a0](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ddc53a07653a6f3aa958509d7d400cc6c6264d91))
* **spinbox:** handle left/right wheel event ([ce961a6](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/ce961a657573ee520b73fca7d4ae721a8837a1d0))
* **ttk:** workaround timer disconnect in case of error ([d70b2c1](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/d70b2c1c3cf25f7ffb479bc2850b3c9a3ca0fe0c))
### Refactors
* **TabWidget:** tab request close event need to be handled inside the app ([9420adf](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9420adf68e2184482cd71266f280c560ea911f45))
* **TTkColor:** improved typings ([711d611](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/711d611a73be0d0a6fce37e4624b5ae30847dd9c))
## [0.42.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.42.0-a.0...pyTermTk-v0.42.1-a.0) (2025-05-01)

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.42.1-a.0'
__version__:str = '0.43.0-a.0'
from .TTkCore import *
from .TTkTheme import *

Loading…
Cancel
Save