aboutsummaryrefslogtreecommitdiffstats
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* Document tests for server keyboard handlingPierre Ossman2018-10-191-0/+37
|
* Clarify some keyboard test detailsPierre Ossman2018-10-191-5/+9
|
* Update keyboard test doc for shift on WindowsPierre Ossman2018-03-081-1/+1
| | | | | Shift key handling was improved in 30b3f92, but the test documentation wasn't updated.
* Handle Ctrl+AltGr on WindowsPierre Ossman2018-03-081-2/+2
| | | | | Improve AltGr detection even further on Windows so we can detect the case when Ctrl and AltGr are pressed together.
* Better detection of AltGr on WindowsPierre Ossman2018-03-081-5/+2
| | | | | | Try to properly detect the fake CtrlL+AltR sequence Windows sends when pressing AltGr. This allows us to send more accurate key events over to the server.
* Update keyboard test notes for raw keyboard modePierre Ossman2017-09-181-4/+20
|
* Add keyboard test notes for LED state handlingPierre Ossman2017-09-181-1/+12
|
* Clarify some keyboard testsPierre Ossman2016-06-101-3/+3
|
* Update keyboard test routine with known issuesPierre Ossman2016-06-101-18/+21
|
* Separate out OS X specific keysPierre Ossman2016-06-101-3/+5
|
* Improve list of dead keysPierre Ossman2016-06-101-3/+9
| | | | | Add some more dead keys that we've noticed, and clarify the naming on some existing ones.
* Make sure we test for MetaPierre Ossman2016-06-101-0/+1
| | | | | We now treat Meta as an independent key, so make sure our test routines actually verify that it works.
* Put all numpad tests in the same sectionPierre Ossman2016-06-101-4/+3
|
* Add useful tips to keyboard test routinePierre Ossman2016-06-101-0/+19
|
* Meta no longer sends Super.Peter Åstrand (astrand)2015-10-141-1/+1
| | | | Since 83e019f599f409d60c12a3c0096f6b6d228d9fb1.
* Handle PrintScreen and SysReq on WindowsPierre Ossman2014-09-301-0/+1
| | | | | | This key requires a bit extra care on Windows. We get wildly different messages depending on if Alt is pressed or not. The symbol chosen now follows the standard behaviour on X11.
* Document test cases for testing the keyboard handlingPierre Ossman2014-09-171-0/+107
|
* None of these files are relevant todayPierre Ossman2014-09-177-1672/+0
|
* Moved release documentation to the wikiPierre Ossman2014-09-173-39/+0
|
* Move Java source up one level and allow Java viewer to be built as a ↵DRC2011-10-071-0/+1
| | | | | | standalone project (per community request) git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4715 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Pull version and build number from CMake build system; Change About dialog ↵DRC2011-10-061-1/+0
| | | | | | wording to match native viewer git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4713 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Remove version number from Java README file (so we don't have to keep ↵DRC2011-06-281-2/+0
| | | | | | updating it) + "TightVNC=TigerVNC" git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4560 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Update release documentation (not sure how useful this documentation still ↵DRC2011-06-243-18/+7
| | | | | | is, but I'll let others decide that.) git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4541 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Remove obsolete Visual C++ 7 build instructionsDRC2011-06-091-40/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4488 3789f03b-4d11-0410-bbf8-ca57d06f2519
* [Development] Bump version numbers to 1.0.90.Adam Tkac2009-12-211-3/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3929 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Fix typo in make_release text file.Adam Tkac2009-08-201-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3881 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Add the doc/dev/ subdirectory which contains development process relatedAdam Tkac2009-08-203-0/+54
| | | | | | | information. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3878 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Rebrand the source as TigerVNC. It is my hope that this patch isPeter Åstrand2009-02-272-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | minimal but still complete. The rebranding was done using a script: find trunk -name .svn -prune -o -type f -exec rep.sh \{\} \; pushd trunk svn revert doc/TODO doc/registered-codes.txt doc/ft-protocol-problems.txt doc/rfbtight.tex perl -pi -e 's|tightvnc|tigervnc|g' unix/configure.ac win/configure.ac unix/README With rep.sh looking like: perl -pi -e 's|TightVNC|TigerVNC|g' "$@" perl -pi -e 's|www\.tightvnc\.com/bugs\.html|www\.tigervnc\.org|g' "$@" perl -pi -e 's|www\.tightvnc\.com|www\.tigervnc\.org|g' "$@" perl -pi -e 's|devteam\@tightvnc\.com|tigervnc-devel\@lists\.sourceforge\.net|g' "$@" perl -pi -e 's|TigerVNC Team|TightVNC Team|g' "$@" perl -pi -e 's|TigerVNC Group|TightVNC Group|g' "$@" perl -pi -e 's|TigerVNC protocol|TightVNC protocol|g' "$@" perl -pi -e 's|TigerVNC-specific|TightVNC-specific|g' "$@" perl -pi -e 's|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TigerVNC|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TightVNC|g' "$@" perl -pi -e 's|TigerVNC vendor|TightVNC vendor|g' "$@" perl -pi -e 's|TigerVNC extension|TightVNC extension|g' "$@" perl -pi -e 's|protocolTigerVNC|protocolTightVNC|g' "$@" perl -pi -e 's|TigerVNC additions were|TightVNC additions were|g' "$@" perl -pi -e 's|TigerVNC 1\.2|TightVNC 1\.2|g' "$@" perl -pi -e 's|TigerVNC authentication type|TightVNC authentication type|g' "$@" git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3621 3789f03b-4d11-0410-bbf8-ca57d06f2519
* [Development] Added description for Tight extension initializatioin phase.VPavluk2008-12-291-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3519 3789f03b-4d11-0410-bbf8-ca57d06f2519
* [Documentation] Added a document to track problems with file transfer ↵Constantin Kaplinsky2008-12-171-0/+35
| | | | | | protocol extensions, included an e-mail from Peter Rosin on this subject. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3401 3789f03b-4d11-0410-bbf8-ca57d06f2519
* [Documentation] Included information from rfbproto.tex. LaTeX formatting is ↵Constantin Kaplinsky2008-10-251-0/+0
| | | | | | not fully converted yet. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3054 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Extended documentation for VideoAreaSelection client message.Constantin Kaplinsky2008-04-231-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2556 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Formatting was broken for some reason.Constantin Kaplinsky2008-04-231-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2554 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Proposed new VideoRectangleSelection protocol message.Constantin Kaplinsky2008-04-221-0/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2553 3789f03b-4d11-0410-bbf8-ca57d06f2519
* New text document to keep the list of all allocated codes and signatures ↵Constantin Kaplinsky2008-04-221-0/+94
| | | | | | used in TightVNC extensions of the RFB protocol. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2552 3789f03b-4d11-0410-bbf8-ca57d06f2519
* LastRect was documented incorrectly.Constantin Kaplinsky2008-01-141-5/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2401 3789f03b-4d11-0410-bbf8-ca57d06f2519
* LastRect pseudo-encoding documented.Constantin Kaplinsky2007-05-051-0/+26
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2297 3789f03b-4d11-0410-bbf8-ca57d06f2519
* And one more FIXME comment on continuous updates.Constantin Kaplinsky2007-04-131-0/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2257 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Another FIXME comment in the specification for EndOfContinuousUpdates message.Constantin Kaplinsky2007-04-131-0/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2256 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Two "FIXME" comments on EnableContinuousUpdates client message.Constantin Kaplinsky2007-04-021-0/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2250 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Changed signatures for recently added protocol messages, ↵Constantin Kaplinsky2007-03-301-2/+2
| | | | | | EnableContinuousUpdates and EndOfContinuousUpdates. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2249 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Introduced EnableContinuousUpdates client message and EndOfContinuousUpdates ↵Constantin Kaplinsky2007-03-291-2/+120
| | | | | | server message. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2248 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Added incomplete documentation on RFB protocol extensions (version as of ↵Constantin Kaplinsky2007-03-291-0/+972
| | | | | | 2006/08/07). git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2247 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Added TODO item about the problem when byte order differs between thePeter Åstrand2005-01-311-0/+7
| | | | | | | host and the Xserver. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@133 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Corrected buffer overrun problem with aboutText. Also, replaced all ↵Peter Åstrand2005-01-231-0/+2
| | | | | | sprintf()s in the UNIX version with snprintf(). This follows the recommendation on http://www.gotw.ca/publications/mill19.htm. Also, snprintf() is, in practice, required when using gettext. Note: since VC6 doesn't have snprintf, only require snprintf in UNIX-only code. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@107 3789f03b-4d11-0410-bbf8-ca57d06f2519
* The vncviewer password dialog should probably display the server namePeter Åstrand2005-01-201-0/+3
| | | | | | | in the password dialog windows title. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@106 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Icons now changed.Peter Åstrand2005-01-071-2/+0
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@86 3789f03b-4d11-0410-bbf8-ca57d06f2519
* New TODO: Should support X11 cursors.Peter Åstrand2005-01-071-0/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@83 3789f03b-4d11-0410-bbf8-ca57d06f2519
* The OptionsDialog bug is caused by a bug in KDE 3.2. SeePeter Åstrand2005-01-011-4/+0
| | | | | | | http://bugs.kde.org/show_bug.cgi?id=86398. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@78 3789f03b-4d11-0410-bbf8-ca57d06f2519
* Added note about the UNIX optionswindow modality problem.Peter Åstrand2004-12-301-0/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@77 3789f03b-4d11-0410-bbf8-ca57d06f2519