Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

tentative fix for #221 #272

Open
wants to merge 3,870 commits into
base: master
Choose a base branch
from
Open

tentative fix for #221 #272

wants to merge 3,870 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Aug 4, 2013

  1. Remove some redundant null-pointer checks from code that must have

    been written before I wrote a never-failing snew.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9985 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    9fc5bc3 View commit details
    Browse the repository at this point in the history
  2. Validate newly created DSA keys more carefully. Don't want a structure

    half-filled with null pointers.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9986 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    194b53c View commit details
    Browse the repository at this point in the history
  3. More consistently defend against division by zero with assertions. We

    now check that all the modular functions (modpow, modinv, modmul,
    bigdivmod) have zero moduli, and that modinv also has a nonzero thing
    to try to invert.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9987 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    d3d4e28 View commit details
    Browse the repository at this point in the history
  4. Another couple of memory leaks.

    git-svn-id: svn://svn.tartarus.org/sgt/putty@9988 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    d66c063 View commit details
    Browse the repository at this point in the history
  5. Avoid trying to take the modular inverse of zero in response to a

    sufficiently silly DSA signature.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9989 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    97ea78b View commit details
    Browse the repository at this point in the history
  6. Make modinv able to return NULL if its inputs are not coprime, and

    check for that return value everywhere it is used.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9990 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    ab6aa77 View commit details
    Browse the repository at this point in the history
  7. Spot when we didn't successfully create an RSA public key from a

    public blob, and return a proper error in that situation rather than a
    struct with unhelpful NULLs in.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9991 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    e99b47d View commit details
    Browse the repository at this point in the history
  8. Fix memory leaks in the new error return from modinv.

    git-svn-id: svn://svn.tartarus.org/sgt/putty@9992 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 4, 2013
    Configuration menu
    Copy the full SHA
    f4ec508 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2013

  1. Belatedly update the copyright year to 2013.

    git-svn-id: svn://svn.tartarus.org/sgt/putty@9993 cda61777-01e9-0310-a592-d414129be87e
    jacob committed Aug 5, 2013
    Configuration menu
    Copy the full SHA
    a787fb9 View commit details
    Browse the repository at this point in the history
  2. Add some more precautionary assertions, just in case anything wildly

    out of range manages to get past other recent fixes.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9995 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 5, 2013
    Configuration menu
    Copy the full SHA
    3bcc3ea View commit details
    Browse the repository at this point in the history
  3. The bignum code has two representations of zero, since

    bn_restore_invariant (and the many loops that duplicate it) leaves a
    single zero word in a bignum representing 0, whereas the constant
    'Zero' does not have any data words at all. Cope with this in
    bignum_cmp.
    
    (It would be a better plan to decide on one representation and stick
    with it, but this is the less disruptive fix for the moment.)
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@9996 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 5, 2013
    Configuration menu
    Copy the full SHA
    98ca905 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2013

  1. One more defensive assert, just to be sure.

    git-svn-id: svn://svn.tartarus.org/sgt/putty@9997 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 6, 2013
    Configuration menu
    Copy the full SHA
    b310555 View commit details
    Browse the repository at this point in the history
  2. Bump version number prior to tagging 0.63.

    git-svn-id: svn://svn.tartarus.org/sgt/putty@9998 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 6, 2013
    Configuration menu
    Copy the full SHA
    d559739 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2013

  1. Revert the default for font bolding style back to using colours rather

    than fonts. I broke this in r9559 when I added the option for 'both',
    because the internal representation got offset by one so as to change
    from a boolean to two bitfields and I must have confused myself about
    what the default should be.
    
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@10008 cda61777-01e9-0310-a592-d414129be87e
    simon committed Aug 7, 2013
    Configuration menu
    Copy the full SHA
    2a3229f View commit details
    Browse the repository at this point in the history
  2. FauxFauxgh-5: build scripts

    FauxFaux committed Aug 7, 2013
    Configuration menu
    Copy the full SHA
    b67c5a2 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2013

  1. Configuration menu
    Copy the full SHA
    5256361 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e4fe77e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    87ae538 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d920a7a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    275399f View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9781a9f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8d91c66 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    bba943f View commit details
    Browse the repository at this point in the history
  9. PuTTy Tray 0.60 v3: Trayicon

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    07a4e78 View commit details
    Browse the repository at this point in the history
  10. conf_get_filename

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    0a0c2e0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6ccc330 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c25cfda View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5749b57 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7e345d6 View commit details
    Browse the repository at this point in the history
  15. FauxFauxgh-9: Fixed hideous rendering of consolas bold.

    For detailed explanation, see here:
    http://stackoverflow.com/questions/2520610/detecting-cleartype-optimized-fonts
    
    To reproduce, you need Configuration -> Window -> Colours -> Bolded text is a different colour disabled
    robotslave authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    8a5cac8 View commit details
    Browse the repository at this point in the history
  16. New puttycfg icon

    BarryHaanstra authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    703ba56 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    abfe71a View commit details
    Browse the repository at this point in the history
  18. Add GPG key fingerprint

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    28c527a View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    3977ab7 View commit details
    Browse the repository at this point in the history
  20. FauxFauxgh-20: Never smush our backup of the icon, and always reset i…

    …t even if we're not minimised at the time
    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    1fa6205 View commit details
    Browse the repository at this point in the history
  21. ADB Enhanced Version

    sztupy authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    2c0632d View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    fb735f7 View commit details
    Browse the repository at this point in the history
  23. Use two rows for "Connection type" in Session menu

    When the "Adb" connection type was added the radio buttons got
    extremely squashed together and it was no longer possible to read
    their labels completely. Therefore splitting them into two rows
    seemed like a good idea to me.
    
    Since the space was quite limited already I also increased the
    entire height of the config dialog box by 10. This appeared to be
    the better option instead of making the "Sessions" control smaller
    in its height.
    stfnm authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    e9e14bd View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    893a98c View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    0d9547f View commit details
    Browse the repository at this point in the history
  26. FauxFauxGH-38: Fix adb-putty to support multi-devices

    To connect a specific device, input device ID in host name
    To connect the default device, input a colon(:) in host name
    yumeyao authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    1926250 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    29bde67 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    6b4da24 View commit details
    Browse the repository at this point in the history
  29. FauxFauxgh-42: Fix for wide (two-cell) characters messing up the URL …

    …detection boxes.
    twpol authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    aa4838d View commit details
    Browse the repository at this point in the history
  30. FauxFauxgh-42: Better, more reliable fix for link hitboxes being misa…

    …ligned on wide-drawn characters.
    twpol authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    e379dd8 View commit details
    Browse the repository at this point in the history
  31. Update adb.c

    actually start the adb shell
    ztNFny authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    866b27b View commit details
    Browse the repository at this point in the history
  32. FauxFauxgh-51: Fix adb shell for empty host name as well

    previous one only fixed it for device id being given
    ztNFny authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    2202ef3 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    96b1cb9 View commit details
    Browse the repository at this point in the history
  34. adb: use transport-any to allow connecting to the emulator

    This is mainly to ease testing; I have no idea what effects
    it will have in the real world, but we believe it to be minimal.
    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    8dbf541 View commit details
    Browse the repository at this point in the history
  35. ADB: Update for new conf system

    sztupy authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    4e35380 View commit details
    Browse the repository at this point in the history
  36. Added new ESC secuences compatible with 4690.

    Leonardo Cortez authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    0758a75 View commit details
    Browse the repository at this point in the history
  37. pageant: Fixing the tray icon clean up upon exit

    For some reason, the icon in the system tray does always not get removed
    when the utility closes. This patch closes it.
    GitForce authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    60387ab View commit details
    Browse the repository at this point in the history
  38. Added IP ToS support. (only tested on XP/2003 with Winsock2.2)

    IPTOS, if defined, contains the ToS for whatever is being compiled..
    PuTTY & PuTTYTel = 0x10 = IPTOS_LOWDELAY
    pscp & sftp = 0x08 = IPTOS_THROUGHPUT
    plink = 0x04 = IPTOS_RELIABILITY
    
    Notes:
    Windows XP/2003 users must set HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\DisableUserTOSSetting (DWORD) to 0 to be able to set the ToS.
    See http://support.microsoft.com/default.aspx?scid=kb;EN-US;q248611
    
    git-svn-id: http://futty.googlecode.com/svn/trunk@24 8b5b7008-2324-11df-a154-f73f31f273f6
    
    Conflicts:
    
    	windows/MSVC/plink/plink.vcxproj
    	windows/MSVC/pscp/pscp.vcxproj
    	windows/MSVC/psftp/psftp.vcxproj
    	windows/MSVC/putty.suo
    	windows/MSVC/putty/putty.vcxproj
    	windows/MSVC/puttytel/puttytel.vcxproj
    FireEgl authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    63efdf3 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    dcdb9a1 View commit details
    Browse the repository at this point in the history
  40. Added utmp support to cthelper.c (Code taken from mintty/child.c)

    Note, there's no way to disable utmp support, so if you don't want this, use the cthelper.exe from puttycyg instead.
    
    git-svn-id: http://futty.googlecode.com/svn/trunk@44 8b5b7008-2324-11df-a154-f73f31f273f6
    FireEgl authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    1be90d7 View commit details
    Browse the repository at this point in the history
  41. Use two rows for "Connection type" in Session menu

    When the "Adb" connection type was added the radio buttons got
    extremely squashed together and it was no longer possible to read
    their labels completely. Therefore splitting them into two rows
    seemed like a good idea to me.
    
    Since the space was quite limited already I also increased the
    entire height of the config dialog box by 10. This appeared to be
    the better option instead of making the "Sessions" control smaller
    in its height.
    stfnm authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    cdceec4 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    53e3c09 View commit details
    Browse the repository at this point in the history
  43. Fixes HIGH_SURROGATE_START and LOW_SURROGATE_END being undefined on C…

    …ygwin/MinGW even when it does have IS_HIGH_SURROGATE defined.
    FireEgl authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    71beefa View commit details
    Browse the repository at this point in the history
  44. Added option that allows maximizing but not resizing the window, wher…

    …e font sizes stay the same.
    
    It's the "Window" option called "Change rows and columns only when maximised".
    FireEgl authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    529c23b View commit details
    Browse the repository at this point in the history
  45. Only use cygterm_debug() when CYGTERM_DEBUG is defined (was when DEBU…

    …G was defined).
    FireEgl authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    58c268c View commit details
    Browse the repository at this point in the history
  46. Ripped scrollback lines code from putty6.0_nd1.13.

    Now you can scrollback more or less than half a screen at a time!
    
    Thanks goes to [email protected]
    http://sourceforge.net/projects/putty-nd/
    https://github.com/noodle1983/putty-nd
    FireEgl authored and FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    1f510b4 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    0bfbca3 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    185db74 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    d48c32a View commit details
    Browse the repository at this point in the history
  50. innocent changes to PuTTYGen

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    b3005bf View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    704489f View commit details
    Browse the repository at this point in the history
  52. easy to clean warnings

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    78f40b5 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    d7860e7 View commit details
    Browse the repository at this point in the history
  54. pageant loads openssh keys

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    dfc1229 View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    77dd79a View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    afef998 View commit details
    Browse the repository at this point in the history
  57. puttygen --ssh-keygen writes ~/.ssh/id_rsa easily

    This code isn't great; it effectively drives the UI by clicking
    buttons on it... but, then, if you're going to put all the code
    directly into WndProc, what do you expect?
    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    34a8b58 View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    af5d4e7 View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    abc67ef View commit details
    Browse the repository at this point in the history
  60. Create README.md

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    c00a14c View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    4463a52 View commit details
    Browse the repository at this point in the history
  62. Configuration menu
    Copy the full SHA
    0d35970 View commit details
    Browse the repository at this point in the history
  63. warnings

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    1d732b2 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    8a8d0c0 View commit details
    Browse the repository at this point in the history
  65. Configuration menu
    Copy the full SHA
    ab16267 View commit details
    Browse the repository at this point in the history
  66. FauxFauxGH-3: Reformat regex

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    781afde View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    4a8995c View commit details
    Browse the repository at this point in the history
  68. pageant: confirm_mode works

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    7a4bd86 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    6a362fd View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    6ae4ae8 View commit details
    Browse the repository at this point in the history
  71. warnings

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    52d4bde View commit details
    Browse the repository at this point in the history
  72. FauxFauxGH-72: Don't show the username on the dialog

    This causes startup hangs for some users.
    
    I've been unable to determine a way to ask Windows for
    a reasonable guess of the username that is not going to
    go to the network.
    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    be7d8d5 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    c437064 View commit details
    Browse the repository at this point in the history
  74. pageant: setting for key persistence

    This can only be enabled when no keys are loaded.  This sucks a bit,
    but it doesn't have the paths of the keys available so it can't do it
    directly.  Really should make the paths available.
    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    c2ad48d View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    06c1447 View commit details
    Browse the repository at this point in the history
  76. builds on the unix

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    43afaf8 View commit details
    Browse the repository at this point in the history
  77. some easy warnings

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    6ef72d7 View commit details
    Browse the repository at this point in the history
  78. wchar.h required for gcc

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    6b0614a View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    9ca3c12 View commit details
    Browse the repository at this point in the history
  80. asserts for clang --analyze

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    56e3c00 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    d0d2370 View commit details
    Browse the repository at this point in the history
  82. -Wunreachable-code

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    42ddf11 View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    2cfb4bb View commit details
    Browse the repository at this point in the history
  84. Configuration menu
    Copy the full SHA
    550adb2 View commit details
    Browse the repository at this point in the history
  85. Configuration menu
    Copy the full SHA
    019eed2 View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    3034bd9 View commit details
    Browse the repository at this point in the history
  87. Configuration menu
    Copy the full SHA
    4a781b4 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    5f71c14 View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    6d80813 View commit details
    Browse the repository at this point in the history
  90. FauxFauxGH-3: Remove the old browser detection code

    Finally found a case where this breaks horribly:
    
    * attempt launch an invalid url
    * we panic, and think we can never launch a url again
    * future non-http urls get run with the browser, with mixed results
    
    While I could fix that actual bug, I'd rather remove the panic code,
    which should never be being hit anyway.
    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    a5a801c View commit details
    Browse the repository at this point in the history
  91. Configuration menu
    Copy the full SHA
    76fa3de View commit details
    Browse the repository at this point in the history
  92. fix merge bugs

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    c3e2ccd View commit details
    Browse the repository at this point in the history
  93. Configuration menu
    Copy the full SHA
    936fe7f View commit details
    Browse the repository at this point in the history
  94. whitespace

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    a15410a View commit details
    Browse the repository at this point in the history
  95. fatty --as-gen

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    ed1d4d6 View commit details
    Browse the repository at this point in the history
  96. --as-agent

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    c4e34b2 View commit details
    Browse the repository at this point in the history
  97. more fatty --options

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    f1a5198 View commit details
    Browse the repository at this point in the history
  98. Configuration menu
    Copy the full SHA
    9df7b45 View commit details
    Browse the repository at this point in the history
  99. Configuration menu
    Copy the full SHA
    9dfb5fc View commit details
    Browse the repository at this point in the history
  100. redundant project files

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    30058a5 View commit details
    Browse the repository at this point in the history
  101. Configuration menu
    Copy the full SHA
    fe87831 View commit details
    Browse the repository at this point in the history
  102. begin whitespace cleanup

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    ea58f6d View commit details
    Browse the repository at this point in the history
  103. Configuration menu
    Copy the full SHA
    fdb5ab8 View commit details
    Browse the repository at this point in the history
  104. build scripts

    FauxFaux committed Aug 11, 2013
    Configuration menu
    Copy the full SHA
    ca7e341 View commit details
    Browse the repository at this point in the history
  105. Configuration menu
    Copy the full SHA
    c5f82c8 View commit details
    Browse the repository at this point in the history
  106. Configuration menu
    Copy the full SHA
    1b325ed View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    5fd6741 View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2013

  1. Configuration menu
    Copy the full SHA
    344ba72 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2013

  1. Added mouse buttons option for "Middle pastes, Right brings up menu".

    The option is located under Windows/Selection ..select "Default".
    FireEgl authored and FauxFaux committed Aug 15, 2013
    Configuration menu
    Copy the full SHA
    cff0ea9 View commit details
    Browse the repository at this point in the history
  2. return translate_button to return 0 on "error"

    I don't think this code is ever hit, but let's leave it as it was just in
    case...
    FauxFaux committed Aug 15, 2013
    Configuration menu
    Copy the full SHA
    e6bdf3a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a87693 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2013

  1. Configuration menu
    Copy the full SHA
    00f2bd5 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2013

  1. Configuration menu
    Copy the full SHA
    0b53364 View commit details
    Browse the repository at this point in the history
  2. adb: state enum

    FauxFaux committed Aug 19, 2013
    Configuration menu
    Copy the full SHA
    aa9bd98 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1f64e05 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    84fdbd2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    26fd52a View commit details
    Browse the repository at this point in the history
  6. FauxFauxGH-74: adb: transport-usb etc. support

    Well, I feel like a dick; after implementing this stuff myself I
    remembered this issue, and that @xurubin had already come up with a fix
    for it: c92eb0d.
    
    I'm going to go with building on my previous commit, as it enables the
    adb-shell-style commands I was originally going for.
    FauxFaux committed Aug 19, 2013
    Configuration menu
    Copy the full SHA
    b4c77f5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    216a17a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ac50f26 View commit details
    Browse the repository at this point in the history
  9. FauxFauxGH-82: epic hack: adb allows :-prefixed serials

    This allows serials containing colons to sneak through the PuTTY hostname
    mangling code; it thinks they're ipv6 addresses, so doesn't go and strip
    and discard the port.
    
    This is useful for adbwireless, which generates serials of the form
    "ip:port", e.g. "192.168.0.2:5555".  Now ":192.168.0.2:5555" is valid.
    FauxFaux committed Aug 19, 2013
    Configuration menu
    Copy the full SHA
    9aa4dd3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    cd7ae05 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2013

  1. FauxFauxGH-88: use term charset when setting window title

    This is a bit of a hack; I started porting window.c to have a wchar_t
    window_title, and getting the terminal to do the conversion before passing
    the data through, but this gets messy; quite a bit (including settings and
    tray) needs to become wchar_t aware before this can work; it seems almost
    acceptable to make the windowing stuff make the decision, based on the
    information the terminal has available.
    FauxFaux committed Aug 20, 2013
    Configuration menu
    Copy the full SHA
    1ca64ea View commit details
    Browse the repository at this point in the history
  2. FauxFauxGH-89: drop /safeseh so we can build on x64 again

    This flag shouldn't really be necessary; it appears to just be an assert
    that your exception code is sane.  We're not actually using any languages
    that have exceptions, and hopefully any Windows code that wants to use
    exceptions within us is safe.
    
    Maybe it's worth turning this on for x32 runs of mkfiles, just to check?
    FauxFaux committed Aug 20, 2013
    Configuration menu
    Copy the full SHA
    3d9df00 View commit details
    Browse the repository at this point in the history
  3. README typo

    FauxFaux committed Aug 20, 2013
    Configuration menu
    Copy the full SHA
    a3400fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    445f9f5 View commit details
    Browse the repository at this point in the history
  5. FauxFauxGH-88: Actually use the terminal encoding for the title

    However, in my tests, various apps I've tested send the title utf-8
    encoded /anyway/, regardless of what you ask for with any settings I can
    find, and this causes us to return an empty title.  If anyone actually has
    a non-utf-8 non-low-ascii setup that they want to report problems with
    (the problem being that the title bar just gets truncated), they should
    speak up.
    FauxFaux committed Aug 20, 2013
    Configuration menu
    Copy the full SHA
    6fd9b21 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2013

  1. Configuration menu
    Copy the full SHA
    59d01f0 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2013

  1. Configuration menu
    Copy the full SHA
    0a88d7a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fad4d3a View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2013

  1. Allow 32-bit putty to work with Cygwin64.

    Patch from Michael Berganovsky <[email protected]>
    FireEgl authored and FauxFaux committed Sep 1, 2013
    Configuration menu
    Copy the full SHA
    4925118 View commit details
    Browse the repository at this point in the history
  2. Revert "FauxFauxGH-81: attempt to accept old-style dymanic port entries"

    This reverts commit 6a87693.
    
    A more complete fix has appeared in upstream as
    f57ca03: "Fix handling of IPv6 dynamic
    forwardings."
    FauxFaux committed Sep 1, 2013
    Configuration menu
    Copy the full SHA
    f0529a6 View commit details
    Browse the repository at this point in the history
  3. FauxFauxGH-81: Fix handling of IPv6 dynamic forwardings.

    During the Conf revamp, I changed the internal representation of
    dynamic forwardings so that they were stored as the conceptually
    sensible L12345=D rather than the old D12345, and added compensation
    code to translate to the latter form for backwards-compatible data
    storage and for OpenSSH-harmonised GUI display. Unfortunately I forgot
    that keys in the forwarding data can also prefix the L/R with a
    character indicating IPv4/IPv6, and my translations didn't take
    account of that possibility. Fix them.
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@10031 cda61777-01e9-0310-a592-d414129be87e
    simon authored and FauxFaux committed Sep 1, 2013
    Configuration menu
    Copy the full SHA
    b1a2e77 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5620ed7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fbfe493 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5d9511c View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2013

  1. Configuration menu
    Copy the full SHA
    5f02587 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    48df49f View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2013

  1. clang?

    FauxFaux committed Sep 7, 2013
    Configuration menu
    Copy the full SHA
    1f759c5 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2013

  1. clang with Makefile.vc

    FauxFaux committed Sep 19, 2013
    Configuration menu
    Copy the full SHA
    c5d2d50 View commit details
    Browse the repository at this point in the history
  2. clang warnings

    FauxFaux committed Sep 19, 2013
    Configuration menu
    Copy the full SHA
    ab85818 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2013

  1. build-debug passthrough

    FauxFaux committed Oct 20, 2013
    Configuration menu
    Copy the full SHA
    78e73a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    23ebc9c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a4b0f1e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fbea8d5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8323984 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    647ae5b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    350d012 View commit details
    Browse the repository at this point in the history
  8. extend use of storage_t enum

    FauxFaux committed Oct 20, 2013
    Configuration menu
    Copy the full SHA
    10830f7 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2013

  1. FauxFauxGH-110: entirely new horrors for auto reconnect

    Allow connection_fatal to trigger a reconnect attempt, which, if there is
    still an issue, which eventually call connection_fatal.  This causes us to
    retry indefinitely.  Maybe eventually we'll need to limit this somehow
    (exponential backoff?).
    
    Also:
     * Remove wakeup reconnect delay.  Infinite reconnects will fix this itself.
     * Make a dns error a normal connection_fatal.  Oh dear, oh dear.  This was
         hardcoded to just messagebox and outright exit(0);.  Now we keep
         going for a tiny bit, so that we can run the normal cleanup code.
         This is the tiny cleanups to ssh.c.
    FauxFaux committed Oct 29, 2013
    Configuration menu
    Copy the full SHA
    ada3951 View commit details
    Browse the repository at this point in the history
  2. FauxFauxGH-115: Add Paste Delay option

    Add Paste Delay option under Window, the same as TeraTerm has and other
    SSH clients.
    
    When staging configuration changes in notepad or whatever to then be
    bulk pasted into an SSH session for a network device.. router, switch,
    firewall, load balancer etc.. they don't like having 100+ lines of
    config commands sent at them in one blast which putty does by default.
    This result in some of the config lines being dropped or interpreted out
    of order by the device.
    
    This patch adds a new option which just sleeps for the specified
    duration after each line break in the paste buffer, before sending.
    SMG authored and FauxFaux committed Oct 29, 2013
    Configuration menu
    Copy the full SHA
    8d6fb14 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2013

  1. FauxFauxGH-10: Further strip down the storage type switching

    Storage type is now a global setting.  This removes a lot of complexity.
    
    File settings are checked by default, if they don't exist, then the
    registry is honoured.
    
    Now that it's gone, I can't see any advantages to the old code, so I'm
    guessing there's a glaring omission here somewhere. (Famous last words.)
    FauxFaux committed Oct 30, 2013
    Configuration menu
    Copy the full SHA
    1c257d2 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2013

  1. Revert "FauxFauxGH-88", as it breaks some people (FauxFauxGH-109)

    To be revisited at a later date.
    
    This reverts commit 1ca64ea.
    This reverts commit 445f9f5.
    This reverts commit 6fd9b21.
    FauxFaux committed Nov 30, 2013
    Configuration menu
    Copy the full SHA
    1175f40 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2013

  1. FauxFauxGH-123: Fix free of an uninitialised pointer.

    CHAN_AGENT channels need c->u.a.message to be either NULL or valid
    dynamically allocated memory, because it'll be freed by
    ssh_channel_destroy. This bug triggers if an agent forwarding channel
    is opened and closed without having sent any queries.
    
    git-svn-id: svn://svn.tartarus.org/sgt/putty@10032 cda61777-01e9-0310-a592-d414129be87e
    simon authored and FauxFaux committed Dec 22, 2013
    Configuration menu
    Copy the full SHA
    067ed10 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    814c55c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65760f2 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2013

  1. Configuration menu
    Copy the full SHA
    eeff0f7 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2014

  1. "Urls" submenu of the main menu

    (Forgive me, I'm sick.)
    FauxFaux committed Jan 11, 2014
    Configuration menu
    Copy the full SHA
    0256079 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f26bf4 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2014

  1. Configuration menu
    Copy the full SHA
    e115cff View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2014

  1. FauxFauxGH-135: About, not Cancel, shown when we have Help

    This, annoyingly, breaks cancelling the dialog with the escape key.
    Should this work?  Probably.  Annoying.  Very annoying.  I'm not so
    concerned about the problem, as I don't think the help is useful, modern
    or actually wanted by most people using it.
    
    Cancellation works by:
     * ssd->cancelbutton->button.iscancel = TRUE;
     * if (ctrl->button.iscancel) actual_base_id = IDCANCEL;
     * When someone presses escape, Windows generates a WM_COMMAND(IDCANCEL)
      * This is not documented anywhere sensible.  Nowhere.  NOWHERE.
    
    Maybe we could hijack the WM_COMMAND before it arrives at the button
    handler, or something?  Shrug.
    FauxFaux committed Feb 21, 2014
    Configuration menu
    Copy the full SHA
    810c0b0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e308ac View commit details
    Browse the repository at this point in the history
  3. FauxFauxGH-133: Crash on initial connection fail (serial)

    I knew that would go wrong.  Dammit.
    
    Re-review that code for possible horrors.  I'm still not happy with
    backhandle possibly being junk, but nothing should really get far enough
    to notice (famous last words).  Still going with it being better to run
    stuff, than to not run it.
    FauxFaux committed Feb 21, 2014
    Configuration menu
    Copy the full SHA
    9b0d0bc View commit details
    Browse the repository at this point in the history
  4. FauxFauxGH-131: Ignore folders while fetching file sessions

    While fetching session list from files, ignore folders and fetch next
    available session file instead of returning null.
    
    If you happen to have a stray folder in the sessions folder, then the
    order in which FindNextFile() gets files is uncertain. And often we end up
    seeing a folder traversed in the middle of several session files.
    
    This issue is easily reproducable if we have lots of session files that
    start with different names and a folder.
    Shobhit authored and FauxFaux committed Feb 21, 2014
    Configuration menu
    Copy the full SHA
    9204b15 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2014

  1. Configuration menu
    Copy the full SHA
    cec6d2b View commit details
    Browse the repository at this point in the history
  2. verisign timestamper

    FauxFaux committed Feb 25, 2014
    Configuration menu
    Copy the full SHA
    e41a8e4 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2014

  1. Configuration menu
    Copy the full SHA
    6d3ee86 View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2014

  1. Merge pull request FauxFaux#138 from teshko/master

    FauxFauxGH-137: Fix crash on startup when loading from Windows Registry
    FauxFaux committed Aug 2, 2014
    Configuration menu
    Copy the full SHA
    308994a View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2014

  1. Configuration menu
    Copy the full SHA
    ba3f988 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2014

  1. Configuration menu
    Copy the full SHA
    c35cba3 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2014

  1. Correct "-log" behaviour

    Shouldn't force Overwrite & Flush, but can force to output if default is no output (otherwise the argument would be useless).
    Use putty.h constants for better understanding.
    u1735067 committed Oct 20, 2014
    Configuration menu
    Copy the full SHA
    015f078 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2014

  1. Configuration menu
    Copy the full SHA
    b1247a9 View commit details
    Browse the repository at this point in the history
  2. FauxFauxGH-163: update "sensible" regex with new tlds

    This is probably a losing battle.  Maybe I should just give in and recommend people use the "nearly any" option.
    
    $ echo $(grep '^\.' tlds | cut -c2- | egrep -v '^[a-z]{2}$' | sort | uniq) | fold -w 61 -s | tr ' ' '|' | sed 's/^/"/;s/$/"/'
    FauxFaux committed Nov 9, 2014
    Configuration menu
    Copy the full SHA
    f61c710 View commit details
    Browse the repository at this point in the history
  3. FauxFauxGH-158: allow more than four characters of cygterm command

    Cygterm stuff doesn't seem to work, however, and I have no idea what it's supposed to do.
    
    I've fixed some error handling, so maybe someone else can make some progress.
    FauxFaux committed Nov 9, 2014
    Configuration menu
    Copy the full SHA
    4a80d0b View commit details
    Browse the repository at this point in the history
  4. Merge pull request FauxFaux#167 from soarqin/master

    List sessions in both reg and files in pageant tray menu
    FauxFaux committed Nov 9, 2014
    Configuration menu
    Copy the full SHA
    3469e2c View commit details
    Browse the repository at this point in the history
  5. Merge pull request FauxFaux#172 from Alex131089/FauxFauxGH-171

    Correct "-log" behaviour (cf FauxFaux#97 )
    FauxFaux committed Nov 9, 2014
    Configuration menu
    Copy the full SHA
    294bbdb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c9e91b8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request FauxFaux#165 from mcmaniac/master

    Apply patch by 'unphased' to fix mouse wheel up events for vim (and others?)
    FauxFaux committed Nov 9, 2014
    Configuration menu
    Copy the full SHA
    cbf5caa View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    158e7ac View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2015

  1. Dumb merge attempt

    Done with p0.63 (our tag) replaced with 0.63 (their tag).
    
    Most conflict resolution done by accepting both.
    
    Compilation not attempted.
    
    Conflicts:
    	.gitignore
    	Recipe
    	mkfiles.pl
    	network.h
    	putty.h
    	settings.c
    	ssh.c
    	terminal.c
    	version.c
    	windows/pageant.rc
    	windows/puttygen.rc
    	windows/version.rc2
    	windows/window.c
    	windows/winmisc.c
    	windows/winpgnt.c
    	windows/winproxy.c
    FauxFaux committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    f2bddfa View commit details
    Browse the repository at this point in the history
  2. old redundant file

    FauxFaux committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    ec5dfb3 View commit details
    Browse the repository at this point in the history
  3. windows new lines leaked in

    FauxFaux committed Feb 17, 2015
    Configuration menu
    Copy the full SHA
    d0246da View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2015

  1. Merge tag '0.64' into merge

    FauxFaux committed Mar 3, 2015
    Configuration menu
    Copy the full SHA
    22244d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21c8d06 View commit details
    Browse the repository at this point in the history
  3. it compiles; untested

    FauxFaux committed Mar 3, 2015
    Configuration menu
    Copy the full SHA
    50ccc60 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2015

  1. Configuration menu
    Copy the full SHA
    2b356d1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    15263cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcca585 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b2a2ca0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a7c6cd7 View commit details
    Browse the repository at this point in the history
  6. Merge with the post 0.64 master :(

    I messed up the merges in the past; the merge with the 0.64 tag was not
    actually what happened; there were commits in the previous merge that
    wern't in that tag, but were in upstream's master.
    
    Let's set everything a bit more straight by having our branch point be a
    coherent location in time, if not a tag.  I'm hoping that upstream abandon
    the 0.64 "branch" (i.e. there's not a 0.64.1), and hence this isn't too
    much of a problem.
    
    The commits in question exist on:
    0.64..a87a14a
    
    Everything appears additive, or bug fixes for things that presumably are
    in the tag too, so I'm going to run with it.
    FauxFaux committed Apr 11, 2015
    Configuration menu
    Copy the full SHA
    875f75c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2acdcc4 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2015

  1. Configuration menu
    Copy the full SHA
    af384fd View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2015

  1. Merge tag '0.65'

    Conflicts:
    	sshbn.c
    	windows/winctrls.c
    	windows/winhandl.c
    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    3ae0ba8 View commit details
    Browse the repository at this point in the history
  2. reviewing diffs to 0.65

    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    d258938 View commit details
    Browse the repository at this point in the history
  3. Revert "Elliptic-curve cryptography support."

    This reverts commit 2bf8688.
    
    Conflicts:
    	Recipe
    	ssh.h
    	sshecc.c
    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    e08f257 View commit details
    Browse the repository at this point in the history
  4. Revert "Some extra bignum functions: modsub, lshift, random_in_range."

    This reverts commit 7d1c30c.
    
    Conflicts:
    	sshbn.c
    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    507935f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b92b72c View commit details
    Browse the repository at this point in the history
  6. Revert "Refactoring to prepare for extra public key types."

    This reverts commit df0ac30.
    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    39709bc View commit details
    Browse the repository at this point in the history
  7. Revert "Factor out the DSA deterministic k generator."

    This reverts commit a2b64dc.
    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    96434ca View commit details
    Browse the repository at this point in the history
  8. post-merge compilation fixes

    FauxFaux committed Sep 20, 2015
    Configuration menu
    Copy the full SHA
    4c4a633 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6ef59d7 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2015

  1. Revert "Move echo/edit state change functionality out of ldisc_send."

    This reverts commit c269dd0.
    sgtatham authored and FauxFaux committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    1c88744 View commit details
    Browse the repository at this point in the history
  2. undo code reordering

    FauxFaux committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    f719563 View commit details
    Browse the repository at this point in the history
  3. Revert "Factor out code for constructing lists of algorithms for SSH-…

    …2 KEXINIT."
    
    This reverts commit cdb8002.
    FauxFaux committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    6dd01ca View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    388b500 View commit details
    Browse the repository at this point in the history
  5. Revert "undo code reordering" - this was actually useful!

    This reverts commit f719563.
    FauxFaux committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    6f35fbb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    183a2d3 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    247e0d7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    60100b1 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    118dde9 View commit details
    Browse the repository at this point in the history
  10. 1 Configuration menu
    Copy the full SHA
    2fee238 View commit details
    Browse the repository at this point in the history
  11. Work around a failure in Windows 10 jump lists.

    We've had several reports that launching saved sessions from the
    Windows 10 jump list fails; Changyu Li reports that this is because we
    create those IShellLink objects with a command line string starting
    with @, and in Windows 10 that causes the SetArguments method to
    silently do the wrong thing.
    sgtatham authored and FauxFaux committed Sep 21, 2015
    Configuration menu
    Copy the full SHA
    4bf1fe3 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e9e8857 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    326e1e0 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2015

  1. Merge tag '0.66'

    Conflicts:
    	Recipe
    	windows/window.c
    	windows/winutils.c
    FauxFaux committed Dec 13, 2015
    1 Configuration menu
    Copy the full SHA
    abe805b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    94dedc2 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2016

  1. Configuration menu
    Copy the full SHA
    13ccec7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request FauxFaux#231 from vovcacik/master

    Add usage instructions link to the README.
    FauxFaux committed Jan 1, 2016
    Configuration menu
    Copy the full SHA
    e6dff76 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2016

  1. Configuration menu
    Copy the full SHA
    045580c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ad692b2 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2016

  1. Configuration menu
    Copy the full SHA
    8fd5765 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dce1383 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    59395f4 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2016

  1. Merge tag '0.67'

    Mismerge somehow: license dialog comes out the wrong size
    FauxFaux committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    71e3c89 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2016

  1. Configuration menu
    Copy the full SHA
    8d4699d View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2016

  1. Configuration menu
    Copy the full SHA
    c39a757 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d77a13 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c2f5eb7 View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2017

  1. Configuration menu
    Copy the full SHA
    79079a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d640967 View commit details
    Browse the repository at this point in the history
  3. another is_dsa

    FauxFaux committed Feb 26, 2017
    Configuration menu
    Copy the full SHA
    0e35f86 View commit details
    Browse the repository at this point in the history
  4. restore sk_getport

    FauxFaux committed Feb 26, 2017
    Configuration menu
    Copy the full SHA
    8ae0114 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    af821f0 View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2017

  1. tentative fix for FauxFaux#221

    wodim committed Jun 3, 2017
    Configuration menu
    Copy the full SHA
    cbba511 View commit details
    Browse the repository at this point in the history