| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
Should have been included in 5cd38b6.
|
|\ |
|
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| | |
Add missing fields developer with value "The TigerVNC Team" and the TigerVNC homepage for the TigerVNC Viewer AppStream meta info file.
|
|/
|
|
| |
Some '-' in man pages, which start options, are rendered as Unicode dashes, not ASCII '-'; fix this.
|
|\ \ \
| | | |
| | | |
| | | | |
https://github.com/CendioOssman/tigervnc
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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".
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This is more in line with our other tools, and keeps all the X options
together in the usage output.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
It's possible to configure multiple loggers with different settings.
This was properly described in the --help output, but not the man pages.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Makes it much easier to find all the different options.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The latter is the legacy alias, so prefer the former in the
documentation.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This is a "parameter", not an "option", so let's make sure it's in the
correct section.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Now that we are based on a normal std::list, we can use normal iterators
to go through the parameters.
|
| | | |
| | | |
| | | |
| | | | |
Avoid rolling our own linked list when we have the standard library.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This allows smooth upgrades for users if the defaults change in the
future.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The configuration objects already now how to convert themselves to and
from strings. Use that existing code, rather than poorly duplicate it.
|
| | | |
| | | |
| | | |
| | | | |
This should have been cleaned up in adaedc9.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Reset individual contexts the same way we reset all contexts, i.e. by
deleting and recreating them. Avoids surprises by having a consistent
method.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
A false return value from these methods result in an exception anyway,
so let's keep things simple and throw the exception right away.
|
| | | |
| | | |
| | | |
| | | | |
It uses the size_t type, which might not otherwise be defined.
|
| | |/
| | |
| | |
| | |
| | | |
The decodered is already flagged as strictly ordered, which means it
will only be used from a single thread at a time.
|
| | |
| | |
| | |
| | |
| | | |
Instead of just printing the huge usage text and hoping the user figures
out what was wrong.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Only one is supposed to be specified, so error out instead of ignoring
all but one of the arguments.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | |
| | | |
These two values were overlooked in the look-ahead list and hence did
not work reliably.
|
| | |
| | |
| | |
| | |
| | | |
Avoid duplicating this complexity everywhere and make sure all commands
get the same handling and fixes.
|
| | |
| | |
| | |
| | |
| | | |
Let's avoid using special string formats when we can send this data
structured instead.
|
| | |
| | |
| | |
| | |
| | | |
These were barely needed to begin with, and were purged from upstream
ages ago.
|
| | |
| | |
| | |
| | | |
These never even had an implementation.
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |_|/
|/| | |
|
| | |
| | |
| | |
| | | |
Replicates the C++ work done in the previous commit on the Java version.
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | | |
|
| | |
| | |
| | |
| | | |
compatible format
|
| | | |
|