Releases: tmux-python/tmuxp
v1.8.0 - Python 2.7 dropped
Drop python 2.7
This should speed up CI and make code reviewing simpler (hopefully!)
#662 CI: Only update docs when changed
#666 CI: Move test plugin packages from pyproject.toml to pytest fixtures. Fixes :issue:658
#661:
- Bump minimum version 3.5 -> 3.6
- Drop python 2.7 support
- Modernize syntax (remove future and modesets)
- Update black to 21.6b0
v1.7.2 - packaging fix
v1.6.5
v1.7.0 - Plugin system, append windows to current session
This will be the last Python 2.7 release of tmuxp. Bug fixes for python
2.7 will live in the 1.7.x branch.
-
#530 New feature: Plugin system
- Add plugin system for user customization of tmuxp
- Add tests for the plugin system
- Update existing tests for the plugin system
- Add the plugin interface to the tmuxp package
- Add in depth documentation for the plugin system
Thank you @joseph-flinn!
-
#656 New feature: Ability to append windows to a session
tmuxp load -a configfilewill append a configuration to your current
tmux session.Thank you @will-ockmore!
-
#647 Improvement: Logging to file:
tmuxp load <filename> --log-level outputfile.log -
#643 New command: Debug information
Port
tmuxp debug-infofrom via v1.6.2
v1.6.4
v1.6.3
v1.7.0a2
v1.6.2 - tmuxp debug-info
- #643 New command tmuxp debug-info for creating github issues, fixes #352. Thank you @joseph-flinn!
v1.7.0a1 plugin system
-
#530 Plugin system
- Add plugin system for user customization of tmuxp
- Add tests for the plugin system
- Update existing tests for the plugin system
- Add the plugin interface to the tmuxp package
- Add in depth documentation for the plugin system
Thank you @joseph-flinn!
Any patches to 1.6.x will live in https://github.com/tmux-python/tmuxp/tree/v1.6.x
pip install -U --user tmuxp==1.7.0a1 --pre, https://pypi.org/project/tmuxp/1.7.0a1/
v1.6.1 - shell improvements
-
#641 Improvements to
shellThanks django-extensions (licensed MIT) for the shell detection abstraction.
-
Deprecate
shell_plus -
tmuxp shellnow detects the best shell available by default -
Python 3.7+ with
PYTHONBREAKPOINTset in env will drop intopdbby
default -
Drop into
code.interactby default instead ofpdbif no third
party shells found -
New options, override:
--pdb: Use plain oldbreakpoint()(python 3.7+) or
pdb.set_trace--code: Drop intocode.interact, accepts--use-pythonrc--bpython: Drop into bpython--ipython: Drop into ipython--ptpython: Drop into ptpython, accepts--use-vi-mode--ptipython: Drop into ipython + ptpython, accepts
--use-vi-mode
-