aboutsummaryrefslogtreecommitdiffstats
path: root/java/com
Commit message (Collapse)AuthorAgeFilesLines
* Update visible copyright year to 2025Pierre Ossman2025-01-142-2/+2
|
* Always use lowercase "t" for TigerVNC teamPierre Ossman2025-01-142-2/+2
| | | | It's not a formal name, so use regular case.
* Merge branch 'largeCursor' of https://github.com/krystof1119/tigervncPierre Ossman2025-01-095-38/+130
|\
| * Add local cursor selection for Java versionKrystof Pistek2024-08-185-38/+130
| | | | | | | | Replicates the C++ work done in the previous commit on the Java version.
* | Ensure that hotspot is not negativeBrian P. Hinz2024-12-241-2/+2
| |
* | Remove check for old versions of JDK. Not all JDKs report version in a ↵Brian P. Hinz2024-12-241-13/+3
| | | | | | | | compatible format
* | Capitalize first letter in log, exception & errorMadeleine Nilsson2024-11-218-20/+20
| | | | | | | | The reason for this is to keep a consistency through out the project.
* | Standardize log message prefix formatMadeleine Nilsson2024-11-112-7/+7
| | | | | | | | The reason for this is to keep a consistency through out the project.
* | Standardize on sentence case in titlesMadeleine (ThinLinc team)2024-11-117-13/+13
|/ | | | The reason for this is to keep a consistency through out the project.
* Use $XDG_STATE_HOME for known hosts storagePierre Ossman2024-05-302-2/+6
| | | | | This is an often changed database, so it is better suited for $XDG_STATE_HOME rather than the more static $XDG_DATA_HOME.
* Merge pull request #1737 from 62832/fix-1195Samuel Mannehed (ThinLinc team)2024-05-074-35/+46
|\ | | | | Allow for alternative user config locations, deprecate `~/.vnc` in favour of XDG Base Directory Specification paths
| * Implement XDG Base Directory paths, deprecate ~/.vnc902024-04-264-35/+46
| |
* | Fix for issue 843Brian P. Hinz2024-03-301-18/+15
|/
* Update copyright year to 2024Samuel Mannehed2024-01-092-2/+2
|
* Update copyright year to 2023Samuel Mannehed2023-07-202-2/+2
|
* Fix CRLF line endingsPierre Ossman2023-01-171-44/+44
| | | | Everything else uses LF line endings, so fix up the few stray ones.
* Fix protocol version handshakepdlan2022-09-031-1/+1
|
* Add support for RSA-AES security types in Java viewerpdlan2022-09-0310-6/+850
|
* Fix edge of dot cursor in Java vncviewerKrystof Pistek2022-07-061-5/+5
| | | | | | This commit changes the color of the edges of the dot cursor in the Java version of vncviewer from fully transparent to white, bringing it in line with the C++ native version.
* Fix for reflection warnings for strongly encapsulated Desktop methods in ↵Brian P. Hinz2022-01-291-4/+14
| | | | Java > 9
* Fix for #1414Brian P. Hinz2022-01-291-2/+2
|
* Update copyright year to 2022Pierre Ossman2022-01-052-2/+2
|
* Be consistent in "full screen" and "full-screen" useWilliam Sjöblom2021-11-241-1/+1
| | | | | | | | | Previously, there were a number of inconsistencies in the use of "full-screen" and "full screen" in logs, documentation, and user interfaces. The consensus seems to be that "full screen" is correct when used as a noun while "full-screen" is correct when used as an adjective. These inconsistencies have now been adjusted to follow consensus.
* Handle AltGr + accented letter key combo on Windowsbinary-manu2021-06-071-15/+24
|
* Prefer a non-zero getKeyCode() over getExtendedKeyCode()binary-manu2021-05-254-9/+14
|
* Handle keys reported only by KeyEvent.getExtendedKeyCodebinary-manu2021-05-194-20/+18
|
* Create VNC homedir if it doesn't already existBrian P. Hinz2021-03-111-3/+8
|
* Fix for issue 1215Brian P. Hinz2021-03-111-13/+14
|
* Fix for issue 1216Brian P. Hinz2021-03-111-3/+4
|
* Update copyright year to 2021Pierre Ossman2021-01-252-2/+2
|
* Merge branch 'tlstofu' of https://github.com/CendioOssman/tigervncPierre Ossman2020-09-081-63/+101
|\
| * Properly store certificate exceptions in Java viewerBrian P. Hinz2020-09-081-63/+101
| | | | | | | | | | | | | | | | | | | | | | Like the native viewer, the Java viewer didn't store certificate exceptions properly. Whilst not as bad as the native viewer, it still failed to check that a stored certificate wouldn't be maliciously used for another server. In practice this can in most cases be used to impersonate another server. Handle this like the native viewer by storing exceptions for a specific hostname/certificate combination.
* | [java] don't show password field for secTypes that don't use itBrian P. Hinz2020-09-041-8/+11
| |
* | Fixes for Java 11. SocketDescriptor change was a workaround for a previous ↵Brian P. Hinz2020-08-092-36/+14
|/ | | | java problem that no longer seems necessary
* Update copyright year to 2020Pierre Ossman2020-01-162-2/+2
|
* Mostly stylistic changes to java viewer to match recent changes to native viewerBrian P. Hinz2019-12-2115-76/+129
|
* Fix maximum compress lvl in parameter listSamuel Mannehed2019-12-201-1/+1
| | | | | Commit 4e61f8dbc51f83b1d71319b763fbd4d916d13e98 fixed the GUI but forgot to change the other places in the code.
* Use the correct minimum value for compression lvlSamuel Mannehed2019-12-201-1/+1
| | | | | | There was even some confusion in the RFB protocol regarding this, but the zlib implementation confirms that accepted values for compression level is 0-9.
* Use the correct maximum value for compression lvlSamuel Mannehed2019-12-201-1/+1
| | | | The GUI incorrectly noted the max level to be 6 while it in fact is 9.
* Remove confusing note about compression levelSamuel Mannehed2019-12-201-1/+1
| | | | Even if this note is true it just adds confusion.
* Simplify color level descriptionsSamuel Mannehed2019-12-202-10/+5
| | | | | | The number of colors used isn't something the end-users should have to concern themselves with. I intentionally left the information in the man-pages.
* Add support for VMwareCursor pseudo encoding to Java clientBrian P. Hinz2019-11-283-0/+105
|
* Remove old Java applet supportBrian P. Hinz2019-11-216-244/+17
|
* RFB refactoring to sync with native clientBrian P. Hinz2019-11-2120-592/+638
|
* Invalidate duplicate screensBrian P. Hinz2019-11-161-2/+2
|
* Set explicit connect timeout on socket and use timer instead of counting ↵Brian P. Hinz2019-11-061-2/+3
| | | | iterations
* Poll local socket to make sure SSH tunnel is ready before connectingBrian P. Hinz2019-11-041-2/+29
|
* Fix external SSH arguments dialogBrian P. Hinz2019-11-032-19/+18
|
* Fix for dialog modality on Mac OS XBrian P. Hinz2019-11-031-0/+3
|
* Fix for issue #796Brian P. Hinz2019-11-033-28/+25
|