aboutsummaryrefslogtreecommitdiffstats
path: root/unix/xserver
Commit message (Collapse)AuthorAgeFilesLines
* Fix accidental old style functionPierre Ossman7 days1-1/+1
|
* Avoid mixing declarations and codePierre Ossman7 days1-2/+3
| | | | Keep the compiler happy and get rid of noise.
* Exclude old Xorg stuff when not neededPierre Ossman7 days1-0/+6
| | | | | These things have been removed or moved to common code in Xorg 21.1, so let's avoid it in our code to get rid of warnings.
* Convert AllowOverride to StringListParameterPierre Ossman2025-03-131-30/+8
|
* Make use of IntParameter range validationPierre Ossman2025-03-062-3/+5
|
* Stop relying on "using namespace"Pierre Ossman2025-02-252-27/+24
| | | | | | There were not many uses of this left after the move to std::exception and the move to the core library. Let's get rid of the last stragglers and reduce the risk of name collisions.
* Use absolute paths for librariesPierre Ossman2025-02-251-2/+2
| | | | | To reduce the risk of duplicating the libraries on the link line, as we have absolute paths in the .la files.
* Revert Xvnc double slash hackPierre Ossman2025-02-251-8/+5
| | | | | We should hopefully no longer require the common libraries to be linked twice anymore for things to work.
* Move concurrency abstration layer to corePierre Ossman2025-02-251-1/+1
| | | | | OS abstractions are generic enough that we can merge these with the new core library.
* Rename core/util to core/stringPierre Ossman2025-02-251-1/+1
| | | | | It's just string helper functions here, so let's get rid of the catch-all name for this module.
* Move timers to core libraryPierre Ossman2025-02-252-6/+7
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Move logging to core libraryPierre Ossman2025-02-253-26/+22
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Move configuration to core libraryPierre Ossman2025-02-253-50/+63
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Move utility functions to core libraryPierre Ossman2025-02-131-5/+7
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Move basic data types to core libraryPierre Ossman2025-02-134-13/+18
| | | | | | | Make it clearer what is protocol handling and what is just general plumbing. This is one step of several.
* Use initializer lists for basic data typesPierre Ossman2025-02-132-8/+8
| | | | | | | | Try to keep the code more compact for the simple things where the type should be obvious from the context. Helps us avoid line wrapping. Also remove explicit conversions to Region where the compiler is able to figure it out by itself, again to reduce line length.
* Move getHostAndPort() to network libraryPierre Ossman2025-02-131-2/+1
| | | | | This is a network function, so it makes more sense in the network library.
* Order libraries for Xvnc in dependency orderPierre Ossman2025-02-131-1/+1
| | | | | libtool seems to have some issues ordering everything correctly, and this seems to work better.
* Reduce header #include:sPierre Ossman2025-02-133-1/+6
| | | | | Make compile times faster by reducing the number of headers included in other headers.
* Change development version to 1.15.80Pierre Ossman2025-01-141-1/+1
|
* Update visible copyright year to 2025Pierre Ossman2025-01-141-1/+1
|
* Always use lowercase "t" for TigerVNC teamPierre Ossman2025-01-141-1/+1
| | | | It's not a formal name, so use regular case.
* 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.
* 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
*-. Merge branches 'argparse', 'nothread' and 'config' of ↵Pierre Ossman2025-01-107-201/+216
|\ \ | | | | | | | | | https://github.com/CendioOssman/tigervnc
| | * Print Xvnc banner before all the usage optionsPierre Ossman2025-01-101-2/+8
| | | | | | | | | | | | | | | 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-071-1/+1
| | | | | | | | | | | | | | | It's possible to configure multiple loggers with different settings. This was properly described in the --help output, but not the man pages.
| | * Document Xvnc "-SetPrimary" in man pagePierre Ossman2025-01-071-0/+5
| | |
| | * Sort parameters in -help and man pagesPierre Ossman2025-01-071-163/+163
| | | | | | | | | | | | Makes it much easier to find all the different options.
| | * Prefer "PasswordFile" over "rfbauth"Pierre Ossman2025-01-071-1/+1
| | | | | | | | | | | | | | | 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-071-6/+6
| | | | | | | | | | | | | | | Now that we are based on a normal std::list, we can use normal iterators to go through the parameters.
| | * Remove server and viewer config typesPierre Ossman2025-01-071-1/+0
| |/ |/| | | | | | | | | | | 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.
| * Consolidate argument parsing in single functionPierre Ossman2025-01-103-12/+11
| | | | | | | | | | 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-033-15/+21
|/ | | | | Let's avoid using special string formats when we can send this data structured instead.
* Hook sprite functions instead to monitor cursorPierre Ossman2024-11-261-96/+194
| | | | | | | These are more reliably as they are called once the decision has been made as to how to display the cursor. The other hooks are sensitive to the order of extensions, which means that we can overlook cursor changes done by other extensions (e.g. hiding it).
* Handle "no cursor", not just "empty cursor"Pierre Ossman2024-11-261-5/+3
| | | | | | Some paths indicate a hidden cursor using NullCursor, and some (most) use a valid cursor that just has no contents. Make sure we can handle both cases.
* Capitalize even more logging and exceptionsPierre Ossman2024-11-223-7/+7
|
* Merge branch 'master' of https://github.com/madnicendio/tigervncPierre Ossman2024-11-224-10/+10
|\
| * Capitalize first letter in log, exception & errorMadeleine Nilsson2024-11-212-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-113-3/+3
| | | | | | | | The reason for this is to keep a consistency through out the project.
* | Merge branch 'mouse-button-support' of https://github.com/CendioHalim/tigervncPierre Ossman2024-11-183-3/+20
|\ \
| * | Add server support for forward/back mouse buttonsAdam Halim2024-10-223-3/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds support for the pseudo-encoding ExtendedMouseButtons in Xvnc and x0vncserver, which makes it possible to use to use the back/forward mouse buttons. This commit contains work originally done by PixelSmith <manny33@frontbuffer.com>.
* | | Merge branch 'stdexcept' of github.com:CendioOssman/tigervncPierre Ossman2024-11-073-41/+40
|\ \ \
| * | | Use standard exception classesPierre Ossman2024-11-061-1/+1
| | | | | | | | | | | | | | | | | | | | Use the more specific already included exception classes for common errors to keep things more understandable.
| * | | Subclass exceptions from std::exceptionPierre Ossman2024-11-063-21/+20
| | | | | | | | | | | | | | | | | | | | Make sure our exceptions are part of the standard exception class hierarchy.
| * | | Use what() to access exception descriptionPierre Ossman2024-11-062-19/+19
| |/ / | | | | | | | | | Harmonize with the standard C++ exceptions.
* | / Don't use login as a verb in Xvnc.manAlexander Zeijlon2024-11-041-2/+2
| |/ |/| | | | | The sentence was also restructured a bit to improve the flow.
* | Fudge library path to work around dependency loopsPierre Ossman2024-10-311-5/+8
|/