Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-08-09 | Bugfix: Replace TVar with TMVar for the old value | Jochen Keil | |
This solves a problem when there is only one pipe in place. With a default value of "" and only one pipe with a timeout the value is overwritten with "" after the timeout. To prevent this from happening a TMVar is used which will never be filled if there is only one pipe. | |||
2012-08-09 | Implement trigger method for BufferedPipeReader Plugin | Jochen Keil | |
Using the trigger method activity on a pipe can now cause the window to appear (reveal) and disappear again after a given timeout. The timeout for hiding the window is the same as for restoring the pipes content. The timeout value is given in tenth of seconds. | |||
2012-08-09 | Cosmetic surgery | Jochen Keil | |
Realign methods, remove unnecessary imports and remove clutter | |||
2012-08-08 | BufferedPipeReader: A plugin for temporary data display | Jochen Keil | |
This plugin allows to display data from multiple pipes. New data will always overwrite the currently displayed data. However, if a timeout is specified, the previous content is restored. Configuration works like this: BufferedPipeReader <Alias> [ ( Timeout, "/path/to/fifo/pipe" ), (..), .. ] If Timeout is set to 0 then the content is persistent, i.e. it will be reset to any previous value, it will itself become the previous value. If Timeout is set to a negative value the earth will stop spinning, so don't do it. |