Simon Tatham
9147f68fb6
Ron Kuris's "copy everything to clipboard" patch
...
[originally from svn r808]
2000-11-21 19:28:25 +00:00
Simon Tatham
f7aec0aa10
Patch from Robert de Bath: increase timer resolution.
...
[originally from svn r807]
2000-11-21 19:00:32 +00:00
Simon Tatham
8c0c31a0e9
Software invocation of the System menu now pops up the actual menu, rather
...
than just putting the window into the state where Down will do so
[originally from svn r793]
2000-11-07 17:50:59 +00:00
Simon Tatham
a739876719
Fix side-effect of Always On Top patch: any reconfiguring in mid-session
...
was zapping the window to the top left corner of the screen
[originally from svn r780]
2000-10-30 10:39:10 +00:00
Simon Tatham
21299d2c39
Reset compose state to zero when PuTTY window gains focus
...
[originally from svn r779]
2000-10-30 10:16:32 +00:00
Simon Tatham
091acb4e06
Add support for Always On Top. Patch due to Janes "Ender" Brown.
...
[originally from svn r773]
2000-10-27 09:46:04 +00:00
Simon Tatham
fc63ad0046
Gaaah, I might have known. Split combined app cursor / app keypad
...
disablement option into two options so the app cursor keys and app
keypad can be controlled separately. The Pedantic Software Award in
this case goes to the Midnight Commander for its egregious failure
to just use the terminal in Perfectly Normal mode.
[originally from svn r766]
2000-10-25 14:20:47 +00:00
Simon Tatham
fc9b38ed01
Add configurable option to disable application keypad/cursor keys totally
...
[originally from svn r760]
2000-10-24 13:49:23 +00:00
Simon Tatham
779069ccd3
Add a couple of ellipses in system menu
...
[originally from svn r759]
2000-10-24 13:40:19 +00:00
Simon Tatham
384eeb3f76
Fix miscellaneous compiler warnings. Thanks to Jacob Nevins
...
[originally from svn r755]
2000-10-24 10:47:49 +00:00
Simon Tatham
36156d858c
Improved entropy gathering.
...
[originally from svn r750]
2000-10-23 15:20:05 +00:00
Simon Tatham
bbbda4110b
Created a shiny new abstraction for the socket handling. Has many
...
advantages:
- protocol modules can call sk_write() without having to worry
about writes blocking, because blocking writes are handled in the
abstraction layer and retried later.
- `Lost connection while sending' is a thing of the past.
- <winsock.h> is no longer needed in most modules, because
"putty.h" doesn't have to declare `SOCKET' variables any more,
only the abstracted `Socket' type.
- select()-equivalent between multiple sockets will now be handled
sensibly, which opens the way for things like SSH port
forwarding.
[originally from svn r744]
2000-10-23 10:32:37 +00:00
Simon Tatham
6eb613e3c4
Three new configurable options:
...
- Robert de Bath's Compose key is now off by default and configurable on
- The ages-old controversy over whether ALT by itself should bring the
System menu up is now controllable by a config option
- You can now independently configure whether scrollback resets on a
keypress _and_ whether it resets on screen activity.
[originally from svn r741]
2000-10-21 16:30:58 +00:00
Simon Tatham
77c8e3c17c
Chinese support patch from zmx@cdpa.nsysu.edu.tw
...
[originally from svn r740]
2000-10-20 18:36:15 +00:00
Simon Tatham
e32603347c
Introduce a sane interface function, from_backend(), for backends to
...
use when they have data from the network. Replaces the utterly daft
inbuf / inbuf_head / term_out() interface, which only made sense
when feeding to terminal.c. (terminal.c now implements
from_backend() as a small function that gateways to the old
interface.)
As a side effect, from_backend() also has an `is_stderr' parameter,
so scp can once again separate the server's pronouncements on stderr
from the actual protocol progress on stdout.
[originally from svn r729]
2000-10-20 13:51:46 +00:00
Simon Tatham
31374678c0
Trim trailing whitespace off saved session names on the command line
...
[originally from svn r728]
2000-10-20 13:23:24 +00:00
Simon Tatham
8e7a270f7f
Miscellaneous cleanups and reorgs in preparation for building
...
PuTTYgen. In particular, moved self-managing controls stuff out of
windlg.c into the new and reusable winctrls.c.
[originally from svn r714]
2000-10-18 15:36:32 +00:00
Simon Tatham
e67f143e61
Implement a much more visually appealing, but much more internally
...
grotty, hack to get around Explorer maximising the config box.
[originally from svn r707]
2000-10-12 12:56:33 +00:00
Simon Tatham
fa731eaf82
Add UNE 10053 to the cleartext ones
...
[originally from svn r703]
2000-10-11 19:56:22 +00:00
Simon Tatham
fd5588d087
Robert de Bath's big patch:
...
- cope with strange WinSock wrappers not supporting SIOCATMARK
- define yet more terminal compatibility modes
- support UK-ASCII (just like US-ASCII but # is a sterling sign)
- support connection keepalives at a configurable interval
[originally from svn r692]
2000-10-09 12:53:32 +00:00
Simon Tatham
e48981def4
Miscellaneous fixes to try to make other compilers happier
...
[originally from svn r691]
2000-10-09 12:19:09 +00:00
Simon Tatham
f7d6cd2059
Alt-Enter was fouling up on Win95; added explicit handler
...
[originally from svn r687]
2000-10-07 08:10:32 +00:00
Simon Tatham
b584238186
Create settings.c and move the load/save session code out of
...
windlg.c into it. Allows plink and pscp to no longer link with
windlg.c, meaning they lose some of the sillier stub functions and
also can provide a console-based form of verify_ssh_host_key().
[originally from svn r683]
2000-10-06 13:21:36 +00:00
Simon Tatham
7b6106d62a
Add a parameter to write_clip() so that windlg.c need not call term_deselect
...
[originally from svn r681]
2000-10-06 12:32:25 +00:00
Simon Tatham
7fc8ef792f
Add ability to configure the initial window title
...
[originally from svn r661]
2000-10-02 12:24:58 +00:00
Simon Tatham
138b090f3e
Oops - remove ugly debugging test pattern in cursor
...
[originally from svn r652]
2000-09-29 12:04:27 +00:00
Simon Tatham
a3df90a2e3
Try to improve the caret usage
...
[originally from svn r651]
2000-09-29 10:32:07 +00:00
Simon Tatham
aad0a52dfb
Rationalised host key storage. Also started code reorg: persistent-state
...
routines have been moved out into a replaceable module winstore.c.
[originally from svn r639]
2000-09-27 15:21:04 +00:00
Simon Tatham
4f3def030a
Add an invisible System Caret for blind-helper-software to track
...
[originally from svn r627]
2000-09-25 16:17:53 +00:00
Simon Tatham
f80f9d4299
Implement "putty -cleanup"
...
[originally from svn r626]
2000-09-25 15:47:57 +00:00
Simon Tatham
0fb760b16d
Robert de Bath has a better alternative to revs 1.47/48 [r582,r583];
...
back out those changes and commit the simpler version
[originally from svn r625]
[r582 == 147fca411c
]
[r583 == 22f91a3604
]
2000-09-25 11:11:46 +00:00
Simon Tatham
117fd9affc
Enable PuTTY command line to deal with "user@host" format
...
[originally from svn r620]
2000-09-25 09:27:26 +00:00
Simon Tatham
6522c357fc
Avoid rapid-fire resize events during NT opaque drags
...
[originally from svn r617]
2000-09-22 14:10:58 +00:00
Simon Tatham
196d42f89c
Everyone's favourite trivial change: Shift-Ins now pastes
...
[originally from svn r616]
2000-09-22 13:23:35 +00:00
Simon Tatham
e70425dda6
Enable better build-time flexibility over which WinSock to include
...
[originally from svn r615]
2000-09-22 13:16:49 +00:00
Simon Tatham
c0ac8ab9b4
Bug fix: line discipline selection is not enabled until after ssh
...
authentication phase to stop user/password prompts behaving oddly
[originally from svn r614]
2000-09-22 13:10:19 +00:00
Simon Tatham
e5ef37f3f5
Prevent network errors from summarily closing the window when CoE is off
...
[originally from svn r613]
2000-09-22 11:04:57 +00:00
Simon Tatham
985207d4a9
Num Lock shouldn't send anything in non-app-keypad mode
...
[originally from svn r612]
2000-09-22 09:49:34 +00:00
Simon Tatham
60b9871947
Work around the missing underline in some fonts
...
[originally from svn r609]
2000-09-22 09:30:11 +00:00
Simon Tatham
180b62b6b0
Miscellaneous ssh2 fixes. plink is now relatively sane
...
[originally from svn r608]
2000-09-21 14:34:32 +00:00
Simon Tatham
b18de5b924
Ensure backend netevent handlers are never reentered -
...
fixes many strange problems with the ssh.c coroutines
[originally from svn r603]
2000-09-20 11:40:23 +00:00
Simon Tatham
22f91a3604
Oops - remove diagnostics :-)
...
[originally from svn r583]
2000-09-11 09:36:12 +00:00
Simon Tatham
147fca411c
Saner handling of WM_SYSCOMMAND:SC_KEYMENU to avoid problems on an
...
isolated press of the Alt key
[originally from svn r582]
2000-09-11 09:23:52 +00:00
Simon Tatham
8394a48620
Added a fourth application: plink, a command line connection utility
...
[originally from svn r575]
2000-09-08 14:45:20 +00:00
Simon Tatham
5ca4d2d1c5
telnet:// URLs don't always have the //. (Incorrect but common.)
...
[originally from svn r518]
2000-08-05 08:58:07 +00:00
Simon Tatham
0d5d39064a
Robert de Bath's Big Patch, part 1
...
[originally from svn r516]
2000-07-26 12:13:51 +00:00
Simon Tatham
1657255cd7
Oops; telnet:// URLs can have a trailing slash
...
[originally from svn r515]
2000-07-21 10:58:33 +00:00
Simon Tatham
777e064ed5
Enable handling of telnet:// URLs on command line
...
[originally from svn r514]
2000-07-21 10:53:24 +00:00
Simon Tatham
9922072a8d
Peter Schellenbach's patch: re-implement the PuTTY cryptographic
...
functions as calls to the MS Crypto API. Not integrated into the
Makefile yet, but should eventually allow building of an SSH-enabled
PuTTY which contains no native crypto code, so it can be used
everywhere (and anyone who can get the MS encryption pack can still
use the SSH parts).
[originally from svn r425]
2000-03-24 09:45:49 +00:00
Simon Tatham
455cc2d387
Spelling fix to RDB's comments: fascist is spelled thus :-)
...
[originally from svn r422]
2000-03-17 10:40:36 +00:00