Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TigerVNC 1.5.0v1.5.01.5-branch | Pierre Ossman | 2015-07-11 | 1 | -1/+1 |
| | |||||
* | TigerVNC 1.4.90 (1.5.0 beta)v1.4.90 | Pierre Ossman | 2015-06-18 | 1 | -1/+1 |
| | |||||
* | Default to -noreset in Xvnc | Pierre Ossman | 2015-05-04 | 1 | -1/+4 |
| | | | | | | We cannot handle a reset properly right now and are forced to terminate instead. Avoid surprising people with a dying Xvnc by changing the default to -noreset. | ||||
*-. | Merge branches 'noreset' and 'syslog' of https://github.com/michalsrb/tigervnc | Pierre Ossman | 2015-05-04 | 1 | -1/+6 |
|\ \ | |||||
| * | | Warn about not reseting Xvnc and terminate instead. | Michal Srb | 2015-04-01 | 1 | -1/+6 |
| |/ | | | | | | | | | VNC prevents X server restarting even when -reset is explicitly given. Print out message with explanation and terminate instead. | ||||
* / | Add -version argument to Xvnc | Pierre Ossman | 2015-04-27 | 1 | -6/+17 |
|/ | |||||
* | Merge branch 'upreqs' of https://github.com/CendioOssman/tigervnc | Pierre Ossman | 2015-03-12 | 1 | -36/+13 |
|\ | | | | | | | | | | | Conflicts: contrib/packages/rpm/el5/SPECS/tigervnc.spec vncviewer/Viewport.cxx | ||||
| * | Remove code supporting Xorg older than 1.7 | Pierre Ossman | 2015-01-29 | 1 | -36/+13 |
| | | |||||
* | | Merge branch 'cmdline-crash' of https://github.com/twaugh/tigervnc | Pierre Ossman | 2015-02-26 | 1 | -8/+28 |
|\ \ | |||||
| * | | Don't return without value here. | Tim Waugh | 2015-02-25 | 1 | -1/+1 |
| | | | | | | | | | | | | In particular, return 0 as this is a failure. | ||||
| * | | Abort argument processing on error. | Tim Waugh | 2015-02-18 | 1 | -8/+28 |
| | | | | | | | | | | | | This prevents e.g. 'Xvnc -screen x' crashing. | ||||
* | | | Check for out-of-memory when installing color map. | Tim Waugh | 2015-02-25 | 1 | -7/+4 |
| | | | | | | | | | | | | | | | | | | | | | Also remove Xalloc/Xfree definitions, using malloc/free directly instead. Note that vfbAllocateFramebufferMemory() does not need to check for failed allocations as it is the caller's responsibility to do so (and they do). | ||||
* | | | Updated to build against xorg-x11-server 1.17.x. | Tim Waugh | 2015-02-25 | 1 | -6/+6 |
| | | | |||||
* | | | Update copyright years | Pierre Ossman | 2015-02-20 | 1 | -1/+1 |
|/ / | |||||
* | | Avoid shadowing variables | Pierre Ossman | 2015-01-29 | 1 | -21/+21 |
| | | |||||
* | | ddxInitGlobals() was removed from Xorg ages ago | Pierre Ossman | 2015-01-29 | 1 | -5/+0 |
| | | |||||
* | | ddxBeforeReset() is only conditionally included in the build | Pierre Ossman | 2015-01-29 | 1 | -0/+2 |
| | | |||||
* | | Properly define functions as not having any arguments | Pierre Ossman | 2015-01-29 | 1 | -5/+4 |
| | | |||||
* | | Remove declaration for variable already present in headers | Pierre Ossman | 2015-01-29 | 1 | -3/+0 |
| | | |||||
* | | Make sure we get prototypes for global DDX functions | Pierre Ossman | 2015-01-29 | 1 | -0/+4 |
| | | |||||
* | | Declare variables at the start of each block, as required | Pierre Ossman | 2015-01-29 | 1 | -5/+13 |
| | | |||||
* | | Use proper prototypes in headers for all our internal functions | Pierre Ossman | 2015-01-29 | 1 | -3/+3 |
|/ | |||||
* | Restructure Xvnc/libvnc.so code to avoid C++ header hacks | Pierre Ossman | 2015-01-26 | 1 | -0/+1700 |
The internal Xorg headers are very incompatible with C++ and we've had to resort to all kinds of hacks in order to include them in our C++ code. This approach isn't really viable long term so restructure things so that we have a glue layer written in C that bridges the Xorg core with the RFB classes. |