Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Support clients that only support alpha cursors | Pierre Ossman | 2017-08-16 | 1 | -2/+4 |
| | |||||
* | Send cursor pseudo-encodings in order of preference | Pierre Ossman | 2017-08-16 | 2 | -4/+4 |
| | | | | | Some servers respect the ordering of pseudo-encodings as well, so make sure we list the best one first. | ||||
* | Fully implement support for alpha cursor pseudo encoding. | Brian P. Hinz | 2017-08-12 | 4 | -2/+14 |
| | | | | | | | Alpha cursors are not supported in java on Windows so disable it in that case. Ideally it would be nice to be able to test whether or not the client OS supports it, but at the moment MS Windows is the only one that I'm aware of that doesn't. | ||||
* | Update min version of gettext required to build with .desktop files | Brian P. Hinz | 2017-08-08 | 1 | -1/+1 |
| | | | | .desktop files support was not added to msgfmt until v0.19 | ||||
* | Fixed issue where CLI paramters specified as "-param value" caused | Brian P. Hinz | 2017-08-06 | 1 | -4/+5 |
| | | | | | a java.nio.BufferOverflowException while the same parameter specified as "-param=value" worked fine. | ||||
* | Fixed issue where -dotWhenNoCUrsor cli arg was not being honored | Brian P. Hinz | 2017-08-06 | 1 | -0/+1 |
| | |||||
* | Fix for NPE when zero width or height alpha cursor is sent | Brian P. Hinz | 2017-08-03 | 2 | -19/+26 |
| | |||||
* | Handle certificate verification for saved certs correctly | Brian P. Hinz | 2017-07-22 | 1 | -42/+34 |
| | |||||
* | Allow multiple certs with same DN in saved certs file. | Brian P. Hinz | 2017-07-22 | 1 | -13/+21 |
| | |||||
* | Add fallbacks for translating .desktop file | Pierre Ossman | 2017-07-21 | 1 | -6/+27 |
| | | | | | | Only fairly recent versions of gettext can translate .desktop files. So fall back to the older intltool on older systems, or just a plain copy if intltool is also missing. | ||||
* | Increase default pointer event interval | Pierre Ossman | 2017-07-19 | 2 | -2/+2 |
| | | | | | | Some systems (e.g. macOS) send massive amounts of pointer events, so we need to start rate limiting things to something sensible by default. One event per screen refresh should be more than sufficient. | ||||
* | Allow removal of GUI prompt on fatal errors | Dr. David Alan Gilbert | 2017-07-19 | 5 | -6/+21 |
| | | | | | | | | | | | | | | | | | | | | Add a new parameter 'alertOnFatalError' which guards the displaying of the GUI alert on fatal errors, and thus when false just gives the textual error. Now I can do: while true do vncviewer alertOnFatalError=false vm:0 sleep 1 done and it'll reappear when my VM appears without me getting error dialogs. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> -- | ||||
* | Add generic name to .desktop file | Pierre Ossman | 2017-07-19 | 1 | -0/+1 |
| | | | | | This often gives the user more information about what kind of application this is. | ||||
* | Generate translations in .desktop file from po files | Pierre Ossman | 2017-07-19 | 6 | -5/+21 |
| | |||||
* | Move languages to standard LINGUAS file | Pierre Ossman | 2017-07-19 | 2 | -3/+23 |
| | | | | This is necessary for other translation tools to work properly. | ||||
* | Merge branch 'patch-1' of https://github.com/scootergrisen/tigervnc | Pierre Ossman | 2017-07-19 | 1 | -0/+2 |
|\ | |||||
| * | Add danish translation | scootergrisen | 2017-07-14 | 1 | -0/+2 |
| | | |||||
* | | ssize_t must be signed even in windows | Sayed Adel | 2017-07-12 | 1 | -2/+5 |
|/ | |||||
* | Remove "Print" from keys that can open F8 menu | Samuel Mannehed | 2017-06-02 | 2 | -3/+1 |
| | | | | Since it is caught by the local system on most platforms. | ||||
*-. | Merge branches 'fix-fullscreen-scroll' and 'fix-scrollbar-visibility' of ↵ | Pierre Ossman | 2017-05-31 | 1 | -13/+28 |
|\ \ | | | | | | | | | | https://github.com/LukeShu/tigervnc | ||||
| | * | vncviewer: Fix scrollbar visibility | Luke Shumaker | 2017-05-24 | 1 | -7/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Have a window that is sized to the remote screen. Now shrink the window vertically, making it shorter than the remote screen in one axis. The vertical scrollbar appears. However, the horizontal scrollbar does not appear, despite the rightmost ~24 pixels (Fl::scrollbar_size()) being hidden by the vertical scroll bar. Fix that. For clarity, move the fullscreen checks into a separate `if` statement, rather than keeping the size and fullscreen checks together. I think the comment does a decent job of explaining and justifying the check's logic, but if you require further convincing, perhaps this alternate explanation will help: The check for the X-axis is if ((w() - (h() < viewport->h() ? Fl::scrollbar_size() : 0) < viewport->w()) To be a bit more verbose and repetitive, we can split that ternary in to two separate checks, and add some comments: if ( (w() - < viewport->w()) // X needs a scrollbar || ( (w() - Fl::scrollbar_size() < viewport->w()) && (h() < viewport->h()) ) //( X doesn't need a scrollbar unless Y does ) && ( Y does need one ) ) ) Within the "Y does need one" check, we don't need to worry about the case where `h() - Fl::scrollbar_size() < viewport-h()` is true, because if both axes are saying "I don't need a scrollbar unless you do", then neither needs one. | ||||
| * | | vncviewer: Fix fullscreen scrolling | Luke Shumaker | 2017-05-24 | 1 | -6/+1 |
| |/ | |||||
* | | Various fixes for Region handling in java viewer | Brian P. Hinz | 2017-05-24 | 1 | -20/+12 |
| | | |||||
* | | Extend JavaPixelBuffer to make further use of Graphics2D ops | Brian P. Hinz | 2017-05-24 | 1 | -1/+33 |
| | | |||||
* | | Minimize thread blocking and improve thread safety in java viewer | Brian P. Hinz | 2017-05-24 | 5 | -56/+78 |
| | | |||||
* | | Name threads for easier profiling | Brian P. Hinz | 2017-05-24 | 2 | -4/+2 |
| | | |||||
* | | Better checks for object equality, remove redundant initializer | Brian P. Hinz | 2017-05-24 | 1 | -6/+7 |
| | | |||||
* | | CopyRectDecoder missing getAffectedRegion method in java viewer | Brian P. Hinz | 2017-05-24 | 1 | -0/+14 |
| | | |||||
* | | Update Danish translation | Joe Hansen | 2017-05-24 | 1 | -120/+61 |
| | | |||||
* | | Compatibility with macOS 10.12 SDK | Pierre Ossman | 2017-05-24 | 1 | -1/+4 |
|/ | | | | | They finally added kVK_RightCommand, so our workaround needs to be conditional. | ||||
* | Update Swedish translation | Göran Uddeborg | 2017-05-15 | 1 | -114/+61 |
| | |||||
* | Merge branch 'master' of https://github.com/grulja/tigervnc | Pierre Ossman | 2017-05-09 | 1 | -3/+7 |
|\ | |||||
| * | Make RandR callbacks optional as they were before | Jan Grulich | 2017-05-04 | 1 | -3/+7 |
| | | |||||
* | | Update Serbian translation | Мирослав Николић | 2017-05-09 | 1 | -113/+99 |
| | | |||||
* | | Remove INITARGS from xserver119.patch | Vishal Biswas | 2017-05-08 | 1 | -1/+1 |
| | | |||||
* | | Make sure install path for java classes is properly defined (re:#295) | Brian P. Hinz | 2017-05-07 | 1 | -0/+2 |
| | | |||||
* | | Fix for issue #455 | Brian P. Hinz | 2017-05-06 | 2 | -7/+8 |
| | | |||||
* | | Set gateway host correctly when -via is used | Brian P. Hinz | 2017-05-06 | 1 | -1/+1 |
| | | |||||
* | | Multithreaded decoder improvements (java viewer) | Brian P. Hinz | 2017-05-06 | 3 | -11/+12 |
| | | |||||
* | | Update Dutch translation | Benno Schulenberg | 2017-05-05 | 1 | -118/+106 |
| | | |||||
* | | Merge branch 'master' of https://github.com/alshopov/tigervnc | Pierre Ossman | 2017-05-02 | 1 | -6/+6 |
|\ \ | |||||
| * | | Mark strings for translation | Alexander Shopov | 2017-04-29 | 1 | -6/+6 |
| |/ | |||||
* | | Add Hungarian translation | Balázs Úr | 2017-05-02 | 2 | -1/+660 |
| | | |||||
* | | Update French translation | Stéphane Aulery | 2017-05-02 | 1 | -119/+59 |
| | | |||||
* | | Update Turkish translation | Volkan Gezer | 2017-05-02 | 1 | -559/+491 |
| | | |||||
* | | Update Bulgarian translation | Alexander Shopov | 2017-05-02 | 1 | -212/+153 |
| | | |||||
* | | Updated Vietnamese translation | Trần Ngọc Quân | 2017-05-02 | 1 | -113/+99 |
| | | |||||
* | | Update Russian translation | Yuri Kozlov | 2017-05-02 | 1 | -115/+101 |
| | | |||||
* | | Update Brazilian Portuguese translation | Rafael Fontenelle | 2017-05-02 | 1 | -116/+101 |
| | | |||||
* | | Update Ukrainian translation | Yuri Chornoivan | 2017-05-02 | 1 | -113/+99 |
|/ |