Skip to content

Releases: tmux-python/libtmux

v0.7.6

16 Aug 14:43
Compare
Choose a tag to compare
  • Allow Window.select_layout with no args
  • Fix test where bell- was no longer ambiguous as of tmux 2.6

v0.7.5

16 Aug 14:43
Compare
Choose a tag to compare
  • Hotfix to support tmux 2.6 session creation

v0.7.4

16 Aug 14:43
Compare
Choose a tag to compare

v0.7.3

16 Aug 14:42
Compare
Choose a tag to compare
  • Exact matches only supported on 2.1 and up

v0.7.2

16 Aug 14:42
Compare
Choose a tag to compare
  • Support exact matching in Server.has_session

v0.7.1

16 Aug 14:42
Compare
Choose a tag to compare
  • #37 Improve support for formatted options like
    pane-border-status. Thanks @kaushalmodi.

v0.7.0

16 Aug 14:41
Compare
Choose a tag to compare
  • Support for python 2.6 dropped. New minimum version is 2.7

  • Add support for tmux 2.4, pypy and pypy3

  • Overhaul error handling when setting and showing options

    • Added handle_option_error for handling option errors
    • Added :exc:libtmux.exc.OptionError base exception
    • Added :exc:libtmux.exc.InvalidOption and libtmux.exc.AmbiguousOption
    • :exc:libtmux.exc.UnknownOption now extends :exc:libtmux.exc.OptionError
  • Overhaul version checking

    • has_version has been renamed to get_version
    • get_version will return tmux built from git master as the latest version supported by the libtmux version with -master at the end, e.g. 2.4-master
    • get_version will return tmux on openbsd base system as the latest version supported by the libtmux version with -openbsd at the end, e.g. 2.4-openbsd
    • has_required_tmux_version has been renamed to has_minimum_version
    • added has_gt_version, has_gte_version, has_lt_version, has_lte_version,
  • Fixed up documentation in some session methods

  • Added pydoc exception info to option methods in window and sessions.

  • Added TMUX_MIN_VERSION and TMUX_MAX_VERSION

v0.6.5

16 Aug 14:41
Compare
Choose a tag to compare
  • Fix which command
  • Add TmuxCommandNotFound exception
  • Add tmux_search_paths and append_env_path kwargs to
    tmux_cmd.

v0.6.4

16 Aug 14:41
Compare
Choose a tag to compare
  • #32 support for OpenBSD's tmux

v0.6.3: Add master to CI

16 Aug 14:40
Compare
Choose a tag to compare
  • support for working with tmux master, thanks @sloria.