You can move around the graph by using the arrow keys.
Created with Raphaël 2.2.030Sep222093226Aug181615318Jul1027Jun2314May135Apr31Mar3030Aug27Feb25Jan1014Oct14Sep19Aug20Jul31May23219754330Apr27262524231514129229Mar26151110927Feb2011412Jan15Dec117Nov9826Oct17121086422Sep21201911830Aug29251725Jul23221Jun9May30Apr282730Mar2928171210326Feb7231Jan25207129Dec21130Nov292818141110229Oct212013829Sep1310613Aug14Jul84Jun19May9875128Apr26191810921Mar1323Feb26Jan25168743130Dec28242221191815753218Nov121110231Oct3018876227Sep10Aug11Jul19Jun161422May2120121Apr30Mar161514131287628Feb26224312Jan1110410Dec22Nov530Oct291921Sep1714724Jun73131May231312828Apr21Mar18Feb432131Jan30291516Dec13Nov27Oct426Sep1711519Aug18161445Jul18Jun1527May2622191716754128Apr191887630Mar27252420171319Feb171612105131Jan252110974229Dec2817161513A forgotten `#ifdef WIN32` broke UNIX build.Merge pull request #33 from danielgindi/masteradd a few more ignoresautogen-to-clea…autogen-to-clean-upremoved autogen.shbetter buildautotools build fixSignal is a fundamental UNIX function, and must be omitted for any windows compilationThese are UNIX headers, and are not available on MSVCThose are generally the windows headers, not just MinGWOn windows, use the Win32 calls for directory enumerations.Generally adjusting headers for compiling on windows without the mixing of Winsock 1 and 2.Just use a macro to bridge to the Win32 version of `mkdir`Use correct `winsock2.h` version header instead of winsock.h.Fixed a violation of the C89 standard ("declarations must come before instructions")A windows version for directory enumerationsMSVC also has the __FUNCTION__ predefined`CreateDirectory` might clash with the `CreateDirectoryA`/`CreateDirectoryW` macros on MSVCFail when NULL is passed to CreateFileListInfo()`strings.h` and `resolv.h` are not available on MSVC, and some POSIX functions are renamed or deprecatedThe HAVE_X11 define is not there anymore, but we don't need it either.Move vncterm to https://github.com/LibVNC/vncterm.Move VisualNaCro to https://github.com/LibVNC/VisualNaCro.Move prepare_x11vnc_dist.sh over to x11vnc repo.Remove x11vnc from autotools build system.factor-out-x11vncfactor-out-x11vncRemove tightvnc-1.3dev5-vncviewer-alpha-cursor.patch.Remove x11vnc subdir.Fix tv_usec calculationMerge branch 'msvc'Use Windows' critical sections to emulate pthread's mutexesPerform pointer arithmetic on char * instead of void *MSVC: Use the Unix emulation headersUse WIN32 for Windows-specific #ifdef guardsAdd MSVC compatible unix headersMSVC: Use _snprintf instead of snprintfUse correct winsock headerInclude Winsock2 header before windows.h includeRemove unused variablesMerge pull request #21 from newsoft/masterDo not accept a scaling factor of zero on PalmVNCSetScaleFactor and SetScale client->server messages. This would cause a division by zero and crash the server.Check malloc() return value on client->server ClientCutText message. Client can send up to 2**32-1 bytes of text, and such a large allocation is likely to fail in case of high memory pressure. This would in a server crash (write at address 0).