| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | Some tidying and tweaks to options code. | nicm | 2017-01-11 |
| | | |||
| * | Use notifys for alerts too. | nicm | 2016-10-16 |
| | | |||
| * | Use the notify name string instead of going via an enum and change | nicm | 2016-10-16 |
| | | | | | existing hooks to use notifys instead. | ||
| * | Add hook_session and hook_window formats to get information on the | nicm | 2016-10-16 |
| | | | | | | affected session or window when a hook fires. Enable session-created and session-closed hooks now that that is available. | ||
| * | Provide a way for hooks to tag formats onto the commands they fire so | nicm | 2016-10-16 |
| | | | | | | that the user can get at additional information - now used for the "hook" format, more to come. | ||
| * | Notifys can go via the command queue instead of using their own queue. | nicm | 2016-10-16 |
| | | |||
| * | Mass rename struct cmd_q to struct cmdq_item and related. | nicm | 2016-10-16 |
| | | |||
| * | Rewrite command queue handling. Each client still has a command queue, | nicm | 2016-10-16 |
| | | | | | | | | | | | | | | | | but there is also now a global command queue. Instead of command queues being dispatched on demand from wherever the command happens to be added, they are now all dispatched from the top level server loop. Command queues may now also include callbacks as well as commands, and items may be inserted after the current command as well as at the end. This all makes command queues significantly more predictable and easier to use, and avoids the complex multiple nested command queues used by source-file, if-shell and friends. A mass rename of struct cmdq to a better name (cmdq_item probably) is coming. | ||
| * | Rename a function for consistency and some spacing nits. | nicm | 2016-10-15 |
| | | |||
| * | Fire hooks on the simple notifys (window-renamed and session-renamed), | nicm | 2016-10-15 |
| | | | | | the complicated ones get no hooks for now (more to come). | ||
| * | Drain notifys once at the end of the server loop instead of doing it | nicm | 2016-10-15 |
| | | | | | from the end of every command queue (which could be nested). | ||
| * | Loads more static, except for cmd-*.c and window-*.c. | nicm | 2016-10-10 |
| | | |||
| * | Similarly, for sessions use a callback to free rather than checking | nicm | 2015-06-05 |
| | | | | | every loop. | ||
| * | Change deref to the more sensible unref, and add a couple I missed before. | nicm | 2015-06-05 |
| | | |||
| * | Convert clients list into a TAILQ. | nicm | 2015-04-24 |
| | | |||
| * | Add notification for input from a pane, from George Nachman. | Nicholas Marriott | 2012-09-25 |
| | | |||
| * | Send notifications to control clients. Also don't redraw client when | Nicholas Marriott | 2012-09-03 |
| | | | | | suspended. | ||
| * | Fix up window reference counting and don't crash if the rename timer | Nicholas Marriott | 2012-08-21 |
| | | | | | | fires while the window is dead but still referenced. Fixes problem reported by Michael Scholz. | ||
| * | Add a queue of notifys and a way to turn them off and on (we do not want | Nicholas Marriott | 2012-07-13 |
| | | | | | | notifys to happen during some commands). Based on code from George Nachman. | ||
| * | Add notify hooks for various events, the functions are currently empty | Nicholas Marriott | 2012-03-17 |
| stubs but will be filled in for control mode later. From George Nachman. | |||