tmux-resurrect/CHANGELOG.md

122 lines
4.6 KiB
Markdown
Raw Normal View History

2014-08-25 21:52:07 +02:00
# Changelog
2014-08-26 14:58:53 +02:00
### master
2015-02-22 21:54:20 +01:00
- add "tmux-test"
- add test for "resurrect save" feature
- add test for "resurrect restore" feature
2015-02-23 01:19:19 +01:00
- make the tests work and pass on travis
2015-02-12 14:13:22 +01:00
### v2.3.0, 2015-02-12
- Improve fetching proper window_layout for zoomed windows. In order to fetch
proper value, window has to get unzoomed. This is now done faster so that
"unzoom,fetch value,zoom" cycle is almost unnoticable to the user.
2015-02-12 12:53:47 +01:00
### v2.2.0, 2015-02-12
- bugfix: zoomed windows related regression
- export save and restore script paths so that 'tmux-resurrect-save' plugin can
use them
2015-02-12 12:53:19 +01:00
- enable "quiet" saving (used by 'tmux-resurrect-save' plugin)
2015-02-12 03:45:15 +01:00
### v2.1.0, 2015-02-12
- if restore is started when there's only **1 pane in the whole tmux server**,
assume the users wants the "full restore" and overrwrite that pane.
2015-02-10 12:57:24 +01:00
### v2.0.0, 2015-02-10
2014-11-21 14:47:57 +01:00
- add link to the wiki page for "first pane/window issue" to the README as well
as other tweaks
2015-02-09 02:25:50 +01:00
- save and restore grouped sessions (used with multi-monitor workflow)
- save and restore active and alternate windows in grouped sessions
- if there are no grouped sessions, do not output empty line to "last" file
- restore active and alternate windows only if they are present in the "last" file
- refactoring: prefer using variable with tab character
2015-02-10 12:56:23 +01:00
- remove deprecated `M-s` and `M-r` key bindings (breaking change)
2014-11-09 16:43:44 +01:00
### v1.5.0, 2014-11-09
2014-11-09 16:42:53 +01:00
- add support for restoring neovim sessions
2014-10-25 18:46:15 +02:00
### v1.4.0, 2014-10-25
- plugin now uses strategies when fetching pane full command. Implemented
'default' strategy.
2014-09-20 23:53:51 +02:00
- save command strategy: 'pgrep'. It's here only if fallback is needed.
- save command strategy: 'gdb'
2014-09-21 15:12:35 +02:00
- rename default strategy name to 'ps'
- create `expect` script that can fully restore tmux environment
- fix default save command strategy `ps` command flags. Flags are different for
FreeBSD.
2014-10-17 17:47:10 +02:00
- add bash history saving and restoring (@rburny)
- preserving layout of zoomed windows across restores (@Azrael3000)
2014-09-20 22:36:42 +02:00
### v1.3.0, 2014-09-20
- remove dependency on `pgrep` command. Use `ps` for fetching process names.
2014-09-02 22:48:50 +02:00
### v1.2.1, 2014-09-02
- tweak 'new_pane' creation strategy to fix #36
- when running multiple tmux server and for a large number of panes (120 +) when
doing a restore, some panes might not be created. When that is the case also
don't restore programs for those panes.
2014-09-01 20:32:54 +02:00
### v1.2.0, 2014-09-01
- new feature: inline strategies when restoring a program
2014-08-31 11:37:14 +02:00
### v1.1.0, 2014-08-31
2014-08-30 21:42:39 +02:00
- bugfix: sourcing `variables.sh` file in save script
2014-08-31 11:35:58 +02:00
- add `Ctrl` key mappings, deprecate `Alt` keys mappings.
2014-08-30 11:18:26 +02:00
### v1.0.0, 2014-08-30
- show spinner during the save process
2014-08-30 00:11:51 +02:00
- add screencast script
- make default program running list even more conservative
2014-08-29 19:11:21 +02:00
### v0.4.0, 2014-08-29
- change plugin name to `tmux-resurrect`. Change all the variable names.
2014-08-29 17:21:27 +02:00
### v0.3.0, 2014-08-29
- bugfix: when top is running the pane `$PWD` can't be saved. This was causing
issues during the restore and is now fixed.
2014-08-29 12:49:06 +02:00
- restoring sessions multiple times messes up the whole environment - new panes
are all around. This is now fixed - pane restorations are now idempotent.
- if pane exists from before session restore - do not restore the process within
it. This makes the restoration process even more idempotent.
- more panes within a window can now be restored
2014-08-29 17:04:00 +02:00
- restore window zoom state
2014-08-29 00:19:22 +02:00
### v0.2.0, 2014-08-29
- bugfix: with vim 'session' strategy, if the session file does not exist - make
sure vim does not contain `-S` flag
- enable restoring programs with arguments (e.g. "rails console") and also
processes that contain program name
- improve `irb` restore strategy
2014-08-28 13:20:09 +02:00
### v0.1.0, 2014-08-28
- refactor checking if saved tmux session exists
- spinner while tmux sessions are restored
2014-08-28 01:11:56 +02:00
### v0.0.5, 2014-08-28
2014-08-27 00:11:13 +02:00
- restore pane processes
- user option for disabling pane process restoring
- enable whitelisting processes that will be restored
2014-08-27 21:31:10 +02:00
- expand readme with configuration options
- enable command strategies; enable restoring vim sessions
2014-08-28 01:09:55 +02:00
- update readme: explain restoring vim sessions
2014-08-26 20:58:18 +02:00
### v0.0.4, 2014-08-26
- restore pane layout for each window
- bugfix: correct pane ordering in a window
2014-08-26 19:18:24 +02:00
### v0.0.3, 2014-08-26
- save and restore current and alternate session
- fix a bug with non-existing window names
- restore active pane for each window that has multiple panes
- restore active and alternate window for each session
2014-08-26 16:08:09 +02:00
### v0.0.2, 2014-08-26
- saving a new session does not remove the previous one
- make the directory where sessions are stored configurable
- support only Tmux v1.9 or greater
- display a nice error message if saved session file does not exist
2014-08-26 16:07:04 +02:00
- added README
2014-08-26 14:58:53 +02:00
### v0.0.1, 2014-08-26
2014-08-25 21:52:07 +02:00
- started a project
2014-08-26 14:58:53 +02:00
- basic saving and restoring works