Skip to content

Releases: bettervim/better-tmux

Release 0.0.13

15 Jul 23:33
Compare
Choose a tag to compare

Fixes 🐛

Features 🚀

  • Added support for popular themes (by @vmarcosp in #14) including:
    • Ayu
    • Onedark
    • Tokyonight

Release 0.0.12

13 Jul 15:36
Compare
Choose a tag to compare

Added 📦

  • Added verbose logs via BETTER_TMUX_DEBUG=1 env var

Release 0.0.11

13 Jul 05:53
Compare
Choose a tag to compare

Fixes 🐛

  • Fixed background and foreground color for default window
  • Removed unused warning messages

v0.0.10

12 Jul 22:02
Compare
Choose a tag to compare

What's Changed

Features 🚀


Full Changelog: v0.0.9...v0.0.10

v0.0.9

09 Jul 23:35
Compare
Choose a tag to compare

Nothing to see here, just republishing some missing package stuff 😄

Full Changelog: v0.0.8...v0.0.9

v0.0.8

09 Jul 23:30
Compare
Choose a tag to compare

What's changed

Fixes 🐛

  • fix: added missing field options to the config object

Full Changelog: v0.0.7...v0.0.8

v0.0.7

09 Jul 23:15
Compare
Choose a tag to compare

What's Changed

Features 🚀

  • feat: support for TMUX global options by @vmarcosp in #7

Fixes 🐛

  • fix(status-bg): Fixed misconfiguration of a default value for status-bg by @vmarcosp in #8

Full Changelog: v0.0.6...v0.0.7

v0.0.6

08 Jul 00:18
Compare
Choose a tag to compare

Description

Features 🚀

  • Added support for status-fg via the status.fg field, example:
      export default { status: { fg: '#000' } }

Full Changelog: v0.0.5...v0.0.6

v0.0.5

06 Jul 21:50
Compare
Choose a tag to compare

Description

Breaking Changes 💥

  • Streamlined configuration for status-left and status-right by unifying them into one object.
    Before:
    export default {
      statusLeft: <Component />,
      statusRight:  <Component />
     }
    Now:
    export default {
      status: {
        statusLeft: <Component />,
        statusRight:  <Component />
      }
     }

Features 🚀

  • Added support for status-bg via the status.bg field, example:
       export default { status: { bg: '#000' } }
  • Automatically set status-bg color based on the selected theme

Full Changelog: v0.0.4...v0.0.5

v0.0.4

06 Jul 19:52
Compare
Choose a tag to compare

Description

  • feat: Added new widgets available through better-tmux/widgets:

    • <Hostname />
    • <Date />
    • <Clock />
    • <SessionName />
  • feat: Exposed tmux object that aggregates common tmux global variables, such as session name, hostname, etc.

Full Changelog: Compare v0.0.1...v0.0.4