aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/trilead/ssh2/packets/PacketSessionPtyResize.java
Commit message (Collapse)AuthorAgeFilesLines
* Comply with RFC 4254 on window-change packetKenny Root2009-01-231-6/+8
| | | | | | * Always send false for "want reply" * We don't need to wait since a reply should not be sent. * Allow the sending of (informational) pixel dimensions.
* Bug scrubKenny Root2009-01-201-2/+0
| | | | | | | * Try to be better about unsynchronized accesses * Don't expose references to arrays in our beans * Make sure we don't dereference null pointers * Update version string before calling aapt
* * moved all terminal logic into a Service backend. connections are held in ↵Jeffrey Sharkey2008-08-271-0/+40
place by a TerminalBridge, which keeps the connection alive and renders the screen to a bitmap if provided. a Console creates TerminalViews for each bridge while it is active, and handles panning back/forth between them. * volume up/down controls will change console font size * extended trilead library to support resizePTY() command * left/right screen gestures will pan between various open consoles * up/down screen gestures on right-half will look through scrollback buffer * up/down screen gestures on left-half will trigger pageup/down keys * broke ctrl+ keyboard mapping, will need to bring back over from older code