aboutsummaryrefslogtreecommitdiffstats
path: root/java
Commit message (Collapse)AuthorAgeFilesLines
...
* Handle certificate verification for saved certs correctlyBrian P. Hinz2017-07-221-42/+34
|
* Allow multiple certs with same DN in saved certs file.Brian P. Hinz2017-07-221-13/+21
|
* Various fixes for Region handling in java viewerBrian P. Hinz2017-05-241-20/+12
|
* Extend JavaPixelBuffer to make further use of Graphics2D opsBrian P. Hinz2017-05-241-1/+33
|
* Minimize thread blocking and improve thread safety in java viewerBrian P. Hinz2017-05-245-56/+78
|
* Name threads for easier profilingBrian P. Hinz2017-05-242-4/+2
|
* Better checks for object equality, remove redundant initializerBrian P. Hinz2017-05-241-6/+7
|
* CopyRectDecoder missing getAffectedRegion method in java viewerBrian P. Hinz2017-05-241-0/+14
|
* Make sure install path for java classes is properly defined (re:#295)Brian P. Hinz2017-05-071-0/+2
|
* Fix for issue #455Brian P. Hinz2017-05-062-7/+8
|
* Set gateway host correctly when -via is usedBrian P. Hinz2017-05-061-1/+1
|
* Multithreaded decoder improvements (java viewer)Brian P. Hinz2017-05-063-11/+12
|
* Change development version to 1.8.80Pierre Ossman2017-04-191-1/+1
|
* More fixes for java viewer performance regressionBrian P. Hinz2017-04-175-10/+26
|
* Partial fix for java viewer performance regressionBrian P. Hinz2017-04-041-8/+8
|
* Update visible copyright year to 2017Samuel Mannehed2017-03-202-2/+2
|
* Java client support for X CursorBrian P. Hinz2017-02-272-0/+60
|
* Fix for exception handling in decoder threads (java client)Brian P. Hinz2017-02-271-1/+1
|
* Java client support for cursors with full alphaBrian P. Hinz2017-02-279-79/+126
|
* Downed hosts should timeout reasonably quicklyBrian P. Hinz2017-02-201-13/+30
|
* Java client was not honoring "ServerName" option in config filesBrian P. Hinz2017-02-202-43/+63
| | | | Mentioned in issue #38
* Fix regression that omitted support for client redirect.Brian P. Hinz2017-02-103-34/+52
| | | | | | Also, delay showing DesktopWindow until first valid rect has been recieved. This allows for a ClientRedirect to take place before any data rects have been received.
* Complete rewrite of pixel buffer & decoder implementation.Brian P. Hinz2016-12-1027-1851/+3802
| | | | | Adds multi-threading, more robust support for different pixel formats, and several new runtime options.
* Whitespace cleanupBrian P. Hinz2016-12-101-7/+6
|
* Delete unecessary filesBrian P. Hinz2016-12-102-294/+0
|
* Method cleanup.Brian P. Hinz2016-12-108-231/+500
| | | | Sync various methods and filenames with C++ versions
* Whitespace cleanupBrian P. Hinz2016-12-102-11/+11
|
* Update versionBrian P. Hinz2016-12-101-1/+1
|
* Added a method for copying between streamsBrian P. Hinz2016-10-201-0/+11
|
* Added a method for reading into a ByteBufferBrian P. Hinz2016-10-201-0/+12
|
* Cosmetic change (increased border spacing)Brian P. Hinz2016-10-191-1/+1
|
* Added filename filters to file chooser dialogsBrian P. Hinz2016-08-284-8/+34
|
* Make all viewer parameters static. Viewer instances are isolated from each ↵Brian P. Hinz2016-08-2721-2230/+1748
| | | | other by spawning a completely new process for each viewer, rather than simply starting a new thread. All dialogs were redesigned to better match the look of the native viewer, and also to be more tolerant of sizing differences between platforms.
* Major overhaul of java viewer.Brian P. Hinz2016-08-072-0/+773
| | | | | | | | | | | | This is the first of several large commits intended to resolve a number of problems and add new capabilities to the java viewer. Among the most significant changes are a complete re-design of the options dialog, which has been converted to a callback style interface. The look & feel of all dialogs are now similar to the style of the native viewer now. Also, the process by which new viewers are spawned has changed and each viewer is a completely separate process, allowing for runtime arguments to be handled statically.
* Overhaul of SSH tunneling features in Java viewerBrian P. Hinz2016-03-317-386/+958
| | | | | | | | | Fixes numerous problems with the SSH tunneling implementation on the java viewer and adds many significant new SSH-related features. SSH tunneling is now highly configurable via the both the command line and GUI. The embedded client can parse openssh config files. An external client may be specified, along with a custom arguments template.
* change the Copyright yearBojan Memetovic2016-03-182-2/+2
|
* Fix names of menu keys in options dialog on OS XBrian P. Hinz2016-03-172-1/+8
| | | | | | Apple changed the implementation of KeyEvent.getKeyText() to return the unicode for the key glyph instead of a textual description.
* Code formatting tweaks (shorter line lengths)Brian P. Hinz2016-03-171-6/+13
|
* Various fixes to Java viewer UIBrian P. Hinz2016-03-177-506/+1014
| | | | | | | | Significant improvements to the Java viewer UI to make it more robust and tolerant of new tabs, fonts, etc. TextFields and editable ComboBoxes that are specific to integer values now only accept integer input.
* (U) Fix invalid String comparisonBrian P. Hinz2016-03-141-1/+1
|
* Regression fix for Java window sizeBrian P. Hinz2016-02-103-31/+20
| | | | | | | | 6262bac introduced a regression that resulted in a 1 pixel border around the window on some platforms. The underlying issue was actually caused by overriding the getPreferredSize() method in DesktopWindow and returning the scaled width & height, which might not have been set to valid values.
* Add workaround for Vino's VeNCrypt implementation to Java viewerBrian P. Hinz2016-01-171-2/+14
| | | | Implemented Pierre's workaround (1f8aba3) to java viewer.
* Suppress/eliminate JDK warningsBrian P. Hinz2015-12-2611-28/+48
|
* Upgrade in-tree jsch and jzlib to latest upstream versionsBrian P. Hinz2015-12-26153-2368/+8073
|
* Change development version to 1.6.80Pierre Ossman2015-11-261-1/+1
|
* Fix exit routine in java viewerBrian P. Hinz2015-10-111-4/+3
| | | | | Some exceptions were causing all viewers to exit, not just the one that threw the exception.
* More cleanup of x509 exception handling in java viewerBrian P. Hinz2015-10-111-27/+20
| | | | Also removed some unnecessary functions & variables in CSecurityTLS
* Cleanup exception handling for x509* auth types in java viewerBrian P. Hinz2015-10-101-58/+17
|
* Added hostname verification for x509 authentication typesBrian P. Hinz2015-10-092-3/+84
|
* Don't exit completely if single viewer declines server certBrian P. Hinz2015-09-202-4/+38
| | | | | | Prevents viewer from exiting completely just because user declined to trust the server certificate for a single connection. Copied from TurboVNC.