aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Clean up RPM spec filesPierre Ossman2019-01-212-4/+1
| | | | | Remove the unused Java self sign variable, and make sure we don't hard code a version as it needs to be adjusted before a build.
* Add missing FLTK dependencyPierre Ossman2019-01-211-1/+1
| | | | libXft is needed to build FLTK for the RHEL 6 RPM.
* Clean up Ubuntu 14.04 FLTK buildPierre Ossman2019-01-213-91/+13
| | | | | | The supporting scripts weren't really up to date, so remove them and just require the packager to include FLTK in the source tarball.
* Make sure libXrandr is available in package buildsPierre Ossman2019-01-214-5/+9
| | | | It is needed by x0vncserver.
* Use Xorg source from distributionPierre Ossman2019-01-218-25/+19
|
* Add libXfont as a Debian package dependencyPierre Ossman2019-01-211-1/+1
| | | | It is needed to build Xvnc.
* Stop building FLTK for modern distributionsPierre Ossman2019-01-211-82/+8
| | | | They include a new enough version, so stop doing our own build.
* Remove obsolete packagesPierre Ossman2019-01-1474-8498/+0
| | | | | Packages for RHEL 5 and Ubuntu 12.04 are no longer maintained, so remove those files.
* Remove obsolete FLTK patchesPierre Ossman2019-01-1418-5231/+0
| | | | | These are for ancient versions of FLTK and are not needed in the versions required by us.
* clarify shell dependenciesBen Hildred2019-01-111-2/+2
| | | The contributed script uses bash features extensively and does not work with ksh.
* dead links and bitrotBen Hildred2019-01-111-2/+2
| | | | | | | Two minor issues: This script is written in python two which is depreciated, and should be rewritten in python three, but I have so far been successful in not learning python. :-) to simplify debugging I have clarified that it needs a python two interpreter. This script downloads an old version of mesa (an update may be appropriate), unfortunately the release candidate previously specified is no longer available, so an update to the next released version was made.
* Include libuuid in static buildsPierre Ossman2019-01-091-1/+1
| | | | Modern fontconfig needs it, so make sure it is included.
* Add Github issue templatesPierre Ossman2018-12-282-0/+54
| | | | | Add basic templates for users to follow so that we get the information we need directly in the initial report.
* Merge branch 'rpm' of https://github.com/MarkMielke/tigervncPierre Ossman2018-12-132-14/+20
|\
| * Update RPM package dependencies to require version alignment between packages.Mark Mielke2018-12-122-14/+20
| |
* | Merge branch 'vmware' of https://github.com/CendioOssman/tigervncPierre Ossman2018-12-107-6/+163
|\ \
| * | Add support for VMware LED statusPierre Ossman2018-12-106-5/+34
| | |
| * | Add support for VMware cursorsPierre Ossman2018-12-107-1/+129
| | |
* | | Merge branch 'connparams' of https://github.com/CendioOssman/tigervncPierre Ossman2018-12-1055-1084/+1234
|\| | | |/ |/|
| * Make sure we always have a valid screen layoutPierre Ossman2018-12-102-6/+14
| | | | | | | | | | Add more checks and fix some callers to make sure that the server core always has a valid screen layout configured.
| * Handle line breaks in log messagesPierre Ossman2018-12-101-1/+10
| |
| * Require all SMsgWriter caller to check capabilitiesPierre Ossman2018-12-103-21/+18
| | | | | | | | | | | | Make the API consisitent by requiring the caller to check what the client supports before calling any of the write* functions. This avoids the confusion that the functions might not always do anything.
| * Abstract sending cursor and resizing the desktopPierre Ossman2018-12-105-158/+93
| | | | | | | | | | | | Avoid having the callers need to know about the different variants of these functions and instead have the writer pick the most appropriate extension.
| * Always send current screen layout to clientPierre Ossman2018-12-103-19/+7
| | | | | | | | | | | | This is what the protocol requires, rather than sending what the client specified in the request. This should be the same in practice except for failures and possibly some races.
| * Move client attributes out of ServerParamsPierre Ossman2018-11-015-35/+36
| | | | | | | | | | | | ServerParams should contain the server state and not information about client settings or capabilities. Move those things up a level to the CConnection object.
| * Merge client resize capabilitiesPierre Ossman2018-11-015-5/+28
| | | | | | | | | | | | No need to have one setting for each extension. All the client code needs to indicate is if it supports resize. The common code can then map this to relevant extensions.
| * Don't update screen layout directly on incoming client requestPierre Ossman2018-11-012-9/+2
| | | | | | | | It needs to be validated and take effect in the server first.
| * Remove unused flags from ServerParamsPierre Ossman2018-11-014-13/+2
| | | | | | | | These were either completely unused, or always true.
| * Simplify encoding list generatorPierre Ossman2018-11-011-30/+2
| | | | | | | | | | Tight is the default preferred encoding, so we don't really need special handling for it to be first in the list.
| * Use STL list for encoding listPierre Ossman2018-11-013-27/+29
| | | | | | | | | | This is a lot safer and cleaner. The old code had a fixed size that we didn't properly keep track of.
| * Make arguments explicit in all message writer methodsPierre Ossman2018-11-017-87/+88
| | | | | | | | | | | | Make sure all methods only write what is given as arguments, and avoid side effects by getting data from parameter objects. This keeps things readable in the calling code.
| * Move update request handling in to CConnectionPierre Ossman2018-11-014-199/+239
| | | | | | | | | | It's a generic client thing, so abstract it in to the common library. Makes it easier to integrate with other common code.
| * Let CMsgHandler::serverInit() handle initial set upPierre Ossman2018-11-018-25/+37
| | | | | | | | | | | | | | Avoid using the callbacks used for runtime changes for the initial setup. They weren't really useful anyway as you could not allocate a framebuffer without also knowing the pixel format. So make things more clear by letting serverInit() get the initial settings.
| * Stop requiring CConnection::serverInit() to be overriddenPierre Ossman2018-11-014-11/+19
| | | | | | | | | | Add an explicit callback for subclasses to do their startup in. This makes it easier to do proper ordering, and avoids mistakes.
| * Remove unused CConnection::getIdentityVerifier()Pierre Ossman2018-11-011-4/+0
| |
| * Stop using fences for pixel format switchPierre Ossman2018-11-012-56/+46
| | | | | | | | | | This method was only really useful when continuous updates was active, so let's rely on a single extension rather than two.
| * Remove indirect capability attributesPierre Ossman2018-11-016-108/+78
| | | | | | | | | | Better to check the actual list of supported encodings directly. Makes parts more readable, and no risk of getting out of sync.
| * Move copy rect handling to EncodeManagerPierre Ossman2018-11-014-24/+8
| | | | | | | | | | No need to spread things out. Keep all of the handling in a single place to make things clearer.
| * Rename ConnParams to ClientParamsPierre Ossman2018-11-0117-167/+163
| | | | | | | | | | | | Now that we've split out server state to ServerParams, ConnParams only contains state for a client. Rename the class and variables to reflect this.
| * Split out ServerParams from ConnParamsPierre Ossman2018-11-0130-176/+378
| | | | | | | | | | | | We need to track different things in the server and client, so separate things to two independent structures to keep things more clear.
| * Encapsulate screen layout storage in ConnParamsPierre Ossman2018-11-0112-63/+84
| | | | | | | | | | | | | | Avoid direct access to the screen dimensions and layout so that we can make sure it stays sane. This also makes sure the layout is properly updated when we only get the screen dimensions from the server.
| * Respect geometry setting in screen layoutPierre Ossman2018-11-011-0/+14
| | | | | | | | | | We might only be using part of the X server's screen, so make sure the layout we calculate is contained within this part.
| * Move version reading/writing out of ConnParamsPierre Ossman2018-10-264-42/+41
| | | | | | | | | | That object is just a container for the current state. Move the I/O to the classes already doing such stuff.
| * Remove unused includePierre Ossman2018-10-262-2/+0
| | | | | | | | | | We should not be including server headers from client code. It was not even needed, so simply remove it.
* | Increase range of ComparingUpdateTracker statisticsPierre Ossman2018-11-301-1/+1
| | | | | | | | | | | | 32 bits are not enough to keep track of all the pixels that might flow through the system. Expand things to 64 bits, which should cover all reasonable uses.
* | Merge branch 'altgr' of https://github.com/CendioOssman/tigervncPierre Ossman2018-11-301-4/+40
|\ \
| * | Avoid using "fake" key codesPierre Ossman2018-11-301-4/+40
| | | | | | | | | | | | | | | | | | | | | There is a range of key codes that are never sent by a real keyboard and are therefore used by layouts to hide "fake" mappings. Make sure to only use these as a fallback as some applications get confused when they see these codes.
* | | Merge pull request #765 from bmwiedemann/timestampBrian Hinz2018-11-272-11/+6
|\ \ \ | | | | | | | | Use cmake TIMESTAMP function
| * | | Use cmake TIMESTAMP functionBernhard M. Wiedemann2018-11-182-11/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | because it is not only platform independent but also allows to override the build date This helps to make tigervnc builds reproducible See https://reproducible-builds.org/ for why this is good Also adds UTC flag, to be independent of timezone. Also changes JAVA_DATE format to ISO-8601 date format. Requires cmake-2.8.11+ from 2013
* | | | Document -AcceptSetDesktopSize in x0vncserver.manPierre Ossman2018-11-261-0/+4
| |/ / |/| | | | | | | | It now accepts this parameter, so make sure it is documented.