aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Avoid fetching details of disabled pointerPierre Ossman2025-01-141-1/+1
| | | | | | | | | Certain versions of the xserver code will crash if you access the details of a disabled pointer. The details are also not up to date when it is disabled, so it is likely concepually wrong to ignore it at this point anyway. Issue originally discovered and diagnosed by Mark Mielke.
* Avoid duplicate Xvnc bannersPierre Ossman2025-01-131-3/+1
| | | | Should have been included in 5cd38b6.
* Merge branch 'mr-debian' of https://github.com/JoachimFalk/tigervncPierre Ossman2025-01-136-12/+45
|\
| * Mandatory features via the cmake command lineJoachim Falk2025-01-121-8/+35
| | | | | | | | If a feature is explicitly requested via the cmake command line, error out if necessary libraries are missing and do not silently disable the requested feature.
| * TIGERVNC_BUILDDIR default keeps dir relationsJoachim Falk2025-01-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changed default for TIGERVNC_BUILDDIR in the build of Xvnc. Assume that when Xvnc is built out of source, the TigerVNC libraries are as well. Moreover, as a reasonable default, assume that the same relative directory relations will be preserved in the out-of-source build tree as are present in the source tree, e.g., TigerVNC source: ~/devel/tigervnc TigerVNC build dir: ~/devel/tigervnc/build Xvnc source: ~/devel/tigervnc/unix/xserver Xvnc build dir: ~/devel/tigervnc/build/unix/xserver
| * Removed obsolete syslog.target from service filesJoachim Falk2025-01-121-1/+1
| | | | | | | | | | | | The syslog.target is obsolete in Debian due to systemd syslog socket activation. I am relatively sure that this is also the case for other distributions. Therefore, remove syslog.target from tigervncserver@.service.
| * TigerVNC Viewer AppStream file specifies developerJoachim Falk2025-01-121-0/+6
| | | | | | | | Add missing fields developer with value "The TigerVNC Team" and the TigerVNC homepage for the TigerVNC Viewer AppStream meta info file.
| * Fix some option dashes in man pages.Joachim Falk2025-01-122-2/+2
|/ | | | Some '-' in man pages, which start options, are rendered as Unicode dashes, not ASCII '-'; fix this.
*---. Merge branches 'argparse', 'nothread' and 'config' of ↵Pierre Ossman2025-01-1043-1152/+1314
|\ \ \ | | | | | | | | | | | | https://github.com/CendioOssman/tigervnc
| | | * Use "on"/"off" when displaying bool parametersPierre Ossman2025-01-101-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a lot more readable than "0"/"1", which can easily be confused with integer parameters. Note that this breaks some backwards compatibility. Older clients will not be able to parse configuration files generated by newer clients, as they had a bug where they could only understand "0" and "1".
| | | * Print Xvnc banner before all the usage optionsPierre Ossman2025-01-103-4/+10
| | | | | | | | | | | | | | | | | | | | This is more in line with our other tools, and keeps all the X options together in the usage output.
| | | * Describe multiple -Log entries in man pagesPierre Ossman2025-01-073-3/+3
| | | | | | | | | | | | | | | | | | | | It's possible to configure multiple loggers with different settings. This was properly described in the --help output, but not the man pages.
| | | * Document UseIPv4/UseIPv6 in viewer man pagePierre Ossman2025-01-071-0/+8
| | | |
| | | * Document Xvnc "-SetPrimary" in man pagePierre Ossman2025-01-071-0/+5
| | | |
| | | * Sort parameters in -help and man pagesPierre Ossman2025-01-075-454/+462
| | | | | | | | | | | | | | | | Makes it much easier to find all the different options.
| | | * Prefer "PasswordFile" over "rfbauth"Pierre Ossman2025-01-072-2/+2
| | | | | | | | | | | | | | | | | | | | The latter is the legacy alias, so prefer the former in the documentation.
| | | * Move -interface argument to correct sectionPierre Ossman2025-01-071-4/+4
| | | | | | | | | | | | | | | | | | | | This is a "parameter", not an "option", so let's make sure it's in the correct section.
| | | * Use normal iterators for parametersPierre Ossman2025-01-072-31/+11
| | | | | | | | | | | | | | | | | | | | Now that we are based on a normal std::list, we can use normal iterators to go through the parameters.
| | | * Use std::list for config parametersPierre Ossman2025-01-072-33/+34
| | | | | | | | | | | | | | | | Avoid rolling our own linked list when we have the standard library.
| | | * Remove server and viewer config typesPierre Ossman2025-01-0713-120/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | We don't consistently use these, so they are just confusing. Instead, we rely on the linker to not include unnecessary objects, and hence irrelevant configuration objects.
| | | * Don't save parameters with default valuesPierre Ossman2025-01-073-0/+20
| | | | | | | | | | | | | | | | | | | | This allows smooth upgrades for users if the defaults change in the future.
| | | * Use registry string type for complex parametersPierre Ossman2025-01-071-9/+5
| | | | | | | | | | | | | | | | | | | | | | | | All parameters can be converted to and from strings, so this is a reasonable default for most settings. We don't need to bail out for complex types.
| | | * Don't duplicate encode/decode in parameters.cxxPierre Ossman2025-01-071-40/+11
| | | | | | | | | | | | | | | | | | | | The configuration objects already now how to convert themselves to and from strings. Use that existing code, rather than poorly duplicate it.
| | | * Remove legacy StringParameter code/commentPierre Ossman2025-01-072-6/+0
| | | | | | | | | | | | | | | | This should have been cleaned up in adaedc9.
| | | * Remove unused config isBool() methodPierre Ossman2025-01-072-15/+0
| | | |
| | * | Remove Logger_File mutexPierre Ossman2025-01-102-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is not providing protection for all of the logging, so it gives a false sense of security. We're also not making use of this as we have barely any threading. The exception is the WinVNC code, which is very thread heavy. But it is unmaintained and will not be a blocker for this.
| | * | Remove Configuration mutexPierre Ossman2025-01-102-16/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is not providing adequate protectection in more complex cases, and we're not making use of threads in a way that should require this. The exception is the WinVNC code, which is very thread heavy. But it is unmaintained and will not be a blocker for this.
| | * | Avoid logging in H.264 decoderPierre Ossman2025-01-104-53/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Decoders are run in threads, and not everything in the logging system is thread safe. Normally decoders consider errors to be fatal and throw an exception. But the H.264 decoder wants to be able to tolerate misbehaving H.264 encoders.
| | * | Use normal constructor/destructor for H.264 contextsPierre Ossman2025-01-107-48/+13
| | | |
| | * | Always reset H.264 contexts the same wayPierre Ossman2025-01-104-12/+8
| | | | | | | | | | | | | | | | | | | | | | | | Reset individual contexts the same way we reset all contexts, i.e. by deleting and recreating them. Avoids surprises by having a consistent method.
| | * | Throw exceptions directly in H.264 init routinesPierre Ossman2025-01-066-45/+25
| | | | | | | | | | | | | | | | | | | | A false return value from these methods result in an exception anyway, so let's keep things simple and throw the exception right away.
| | * | Add missing stddef.h include to Decoder.hPierre Ossman2025-01-061-0/+1
| | | | | | | | | | | | | | | | It uses the size_t type, which might not otherwise be defined.
| | * | Remove mutexes from H.264 decoder and friendsPierre Ossman2025-01-066-20/+0
| | |/ | | | | | | | | | | | | The decodered is already flagged as strictly ordered, which means it will only be used from a single thread at a time.
| * | Give better error message on bad argumentsPierre Ossman2025-01-104-11/+53
| | | | | | | | | | | | | | | Instead of just printing the huge usage text and hoping the user figures out what was wrong.
| * | Translate vncviewer usage textPierre Ossman2025-01-101-6/+6
| | |
| * | Don't allow multiple server args to vncviewerPierre Ossman2025-01-101-0/+3
| | | | | | | | | | | | | | | Only one is supposed to be specified, so error out instead of ignoring all but one of the arguments.
| * | Make all user commands handle --help and --versionPierre Ossman2025-01-104-1/+35
| | |
| * | Remove Configuration::set() with lengthPierre Ossman2025-01-102-17/+4
| | | | | | | | | | | | | | | This was a weird hack just to support the method that split arguments. We don't need this know as we expect callers to do any string handling.
| * | Fix handling of bool on/off argumentsPierre Ossman2025-01-102-6/+8
| | | | | | | | | | | | | | | These two values were overlooked in the look-ahead list and hence did not work reliably.
| * | Consolidate argument parsing in single functionPierre Ossman2025-01-1013-119/+452
| | | | | | | | | | | | | | | Avoid duplicating this complexity everywhere and make sure all commands get the same handling and fixes.
| * | Separate parameter name and value in VNC extensionPierre Ossman2024-12-036-35/+57
| | | | | | | | | | | | | | | Let's avoid using special string formats when we can send this data structured instead.
| * | Remove legacy X11 bitfield markersPierre Ossman2024-12-031-74/+74
| | | | | | | | | | | | | | | These were barely needed to begin with, and were purged from upstream ages ago.
| * | Remove unused Configuration methodsPierre Ossman2024-12-031-9/+0
| | | | | | | | | | | | These never even had an implementation.
* | | Dynamically resize Fl_Choice widgetsPierre Ossman2025-01-092-0/+17
| | | | | | | | | | | | | | | | | | The label and options might vary in size, so it's difficult to pick a size that always fits. Instead, look at the actual strings and dynamically resize the widget so everything fits.
* | | Merge branch 'largeCursor' of https://github.com/krystof1119/tigervncPierre Ossman2025-01-0913-55/+231
|\ \ \ | |_|/ |/| |
| * | 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.
| * | Add local cursor selection for C++ versionKrystof Pistek2024-08-098-17/+101
| | | | | | | | | | | | | | | | | | This adds the option to select which cursor should be used in the event the server sends an invisible cursor. It also renames the DotWhenNoCursor config option to AlwaysCursor.
* | | 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
* | | Fix log name typo for SSecurityRSAAESPierre Ossman2024-12-171-1/+1
| | |