summaryrefslogtreecommitdiffstats
path: root/src/server
Commit message (Collapse)AuthorAgeFilesLines
* [server] Fix confirmation dialog when loading room layoutSimon Rettberg2019-07-221-4/+5
|
* [server] Fix adding/removing students to active projectionSimon Rettberg2018-11-151-9/+25
| | | | | | VNC server/client was not always properly started or stopped when adding/removing students to currently running projection with tutor as source.
* [server] Use MSecs not Secs so we don't require Qt 5.8+Simon Rettberg2018-09-281-2/+2
|
* [server] Pimp help windowSimon Rettberg2018-09-032-15/+43
| | | | Closes #3409
* [*] Add log message if loading translations failsSimon Rettberg2018-09-031-4/+10
|
* [server] Fix snap to grid for call with ignored frame paramSimon Rettberg2018-08-032-18/+3Star
|
* [server] Get rid of broken help window ui, generate programaticallySimon Rettberg2018-08-033-35/+40
|
* [server] Show drop position when moving frame aroundSimon Rettberg2018-08-024-33/+58
|
* Revert "[shared/server] define preferred styles and enable it if supported"Simon Rettberg2018-08-021-10/+0Star
| | | | | | | Pointless code!? Makes theme look ugly with Qt5 at least with no apparent advantage whatsoever. This reverts commit 7cf83493fdaca88fd3dbc736d5ca9d86dd7f9e83.
* [server] Fix client frame placement bugSimon Rettberg2018-08-021-1/+1
| | | | | Bug was introduced in commit:9ba63d1460 through missing parenthesis in macro.
* [server] Fix current VNC projection source check, fix button enableSimon Rettberg2018-08-022-7/+6Star
| | | | | | | | | * streaming from/to tutor was enabled even if selected client was offline * VNC client start command was swallowed even if no projection was running (just matched the last projection source) * Screen wasn't unlocked again when switching from LockedUnicast to Unicast
* Remove ugly comment separator lines above functionsSimon Rettberg2018-08-023-53/+39Star
|
* [server] Don't restart VNC viewer if target stays the sameSimon Rettberg2018-08-022-8/+12
|
* [server] Improved disabling of toolbar buttons depending on contextSimon Rettberg2018-08-012-77/+56Star
| | | | | | | | | * Disable tutor to student / student to tutor if no tutor online * Disable above buttons if selected frame is tutor * Disable lock single client button if selected client is tutor ... And many more Closes #3399
* [server] Fix message box when deleting clientSimon Rettberg2018-08-011-3/+3
|
* [server] Allow setting offline client as tutorSimon Rettberg2018-08-011-4/+1Star
| | | | Closes #3397
* [server] Fix exit button confirmation MessageBoxSimon Rettberg2018-08-011-3/+5
| | | | | Just showing a single button called "Ok" is rather pointless... Closes #3398
* [server] Deduplicate code for student -> tutor streamingSimon Rettberg2018-08-013-63/+52Star
|
* [SERVER] Fix locking when locked unicast is current modeSimon Rettberg2018-07-312-6/+11
| | | | Streaming source wasn't locked properly before
* [*] Convert old C-Style castsSimon Rettberg2018-07-266-18/+18
| | | | | Primitive types now use type(x) instead of (type)x, pointers should use appropriate long versions
* [server] Cleanup and simplify SslServerSimon Rettberg2018-07-242-84/+38Star
|
* Update code style, fix compiler warningsSimon Rettberg2018-07-2410-97/+100
| | | | | | - Use nullptr instead of NULL for better warnings in case of mistakes - Get rid of VLAs which are not in C++11 actually - Fix implicit signed <-> unsigned mismatches by adding checks and casts
* [server] Fix logic errorSimon Rettberg2018-07-241-1/+1
|
* [server] Resize thumbs server side on mismatchSimon Rettberg2018-07-205-33/+40
| | | | | | | | | | The server requests the appropriate size thumbnail from the client so no bandwidth will be wasted. However, due to privacy concerns, the client might actually send a thumb that's smaller than requested, resulting in a tiny thumbnail on the server with huge gray borders. The server will now scale up the image in those cases. We'd actually also scale the image down now if it were too large, but this doesn't happen under normal circumstances.
* [server] Fix: Checking for Ok on a Yes/No question ...Simon Rettberg2018-07-201-1/+1
|
* [server] Offer deleting temp. clients on session name changeSimon Rettberg2018-07-194-54/+40Star
| | | | | | | If the user changes the session name, we now ask whether to disconnect and delete all clients that just connected via session name and don't belong to the currently loaded room layout.
* [server] SessionNameWindow: Set focus to text box on openSimon Rettberg2018-07-191-0/+1
|
* [server] Don't do unnecessary lock resets on mode changeSimon Rettberg2018-07-182-21/+14Star
|
* [server] Minor cleanups (naming, checks)Simon Rettberg2018-07-132-28/+26Star
|
* [server] Unconditionally disable vnc server if no clients leftSimon Rettberg2018-07-121-2/+2
|
* [server] Fix (=implement) tracking of client's projection sourceSimon Rettberg2018-07-121-1/+2
| | | | | | We never stored the current projection source id in the according field of class Client, breaking intended functionality when cancelling projection.
* [server] Add button to lock/unlock single clientSimon Rettberg2018-07-123-5/+38
|
* [server] Handle client disconnectsSteffen Ritter2018-06-122-12/+6Star
|
* Fix translations on Qt5Simon Rettberg2017-12-051-4/+2Star
|
* [server] Init qrand before creating main window, so session id is randomSimon Rettberg2017-12-011-2/+1Star
|
* Fix connection problems qith Qt5 (again)Simon Rettberg2017-12-011-1/+1
|
* Fix SSL on Qt5Simon Rettberg2017-11-166-20/+45
|
* port to qt5Jonathan Bauer2017-11-157-6/+6
| | | | | | | * got rid of the Win32/X11 differentiation * due to QT5, additional packages are needed to compile ** libqt5x11extras5-dev ** libqt5svg5-dev
* [server] Only block screen saver from running when first client connectsSimon Rettberg2017-03-201-1/+5
| | | | | | | The screen saver lock is recursive, so if we call it for every client that connects, but only unlock once when the last client disconnects, the screen saver will be blocked forever. Fixes #3083
* [server] Prevent screen standby while clients are connectedSimon Rettberg2017-03-064-16/+128
|
* [server] Bail out if certificates cannot be createdSimon Rettberg2017-03-064-4/+30
|
* Increase compiler warnings, fix a lot of those instancesSimon Rettberg2016-11-159-35/+37
| | | | | | - Add explicit casts - Comment out unused params - Remove ignored const return types
* [server] Rewrite positioning logic of connection framesSimon Rettberg2016-11-024-104/+137
| | | | | | | | | | This fixes sevceral bugs: * Frames moved into virtually expanded area (for keeping aspect ratio) could be out of bounds after a window resize before * Finding a free slot to place a frame was slightly sped up * Finding a free slot is not used when loading a room layout, as it was (still is) pretty sluggish for the user * Snap to grid worked incorrectly, did not pick closest grid position
* [server] Run "manager only" logic before creating main windowSimon Rettberg2016-11-024-155/+146Star
| | | | | | This prevents the window popping up for a split second when --manager-only is given and the machine it's running on is not configured as a manager.
* [server] Show IP address in room layout right after loading itSimon Rettberg2016-10-283-10/+21
|
* Fix compile warningsSimon Rettberg2016-10-281-1/+1
|
* [server] Initialize _wantsAttention to false in client.cppSimon Rettberg2016-10-281-0/+1
|
* Fix GUI translation: Don't create persistent objects on stack :/Simon Rettberg2016-10-261-4/+9
|
* [client] Create config dir before trying to create vnc password file insideSimon Rettberg2016-10-241-1/+0Star
|
* Merge branch 'master' of openslx.org:pvs2Simon Rettberg2016-10-202-20/+0Star
|\