Skip to content

Commit 2c5b888

Browse files
committed
Update for 4.9.2
1 parent 5bb6363 commit 2c5b888

File tree

64 files changed

+1073
-501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1073
-501
lines changed

Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Minimal makefile for Sphinx documentation
22
#
33

4-
# You can set these variables from the command line.
5-
SPHINXBUILD = sphinx-build
6-
SPHINXPROJ = Veyon
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
78
SOURCEDIR = .
89
BUILDDIR = _build
910

@@ -16,4 +17,4 @@ help:
1617
# Catch-all target: route all unknown targets to Sphinx using the new
1718
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
1819
%: Makefile
19-
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
279 Bytes
Loading

addons/internet-access-control.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Linux
4747

4848
For both operating systems, the backend configuration is identical. In general different modes are available. The mode selection depends on the network environment and the desired blocking behavior.
4949

50-
Block all outbound traffic for TCP ports
51-
This is the default mode and should work in most environments. In this mode the Veyon Service adds special rules to the firewall which block any traffic to the configured ports. Use this mode if blocking the TCP ports 80/443 and one or multiple custom ports (separated by space) is sufficient. To block all traffic use the second mode.
50+
Block all outbound traffic for TCP and UDP ports
51+
This is the default mode and should work in most environments. In this mode the Veyon Service adds special rules to the firewall which block any traffic to the configured ports. Use this mode if blocking the TCP and UDP ports 80/443 and one or multiple custom ports (separated by space) is sufficient. To block all traffic use the second mode.
5252

5353
Block all outbound traffic to non-local subnets
5454
In this mode, all network traffic directed to networks outside the local subnets is blocked. On Windows, the Veyon service temporarily changes the configuration of all firewall profiles (domain, private, public) to “ Outbound connections that do not match a rule are blocked”. If :guilabel:`Exceptions` are configured, appropriate rules are added to allow access to these networks, hosts or ports. This can be used, for example, to preserve access to the intranet and other internally hosted platforms. External websites can also be defined as exceptions here under certain circumstances, but the addresses of all servers/CDNs from which the website loads resources must then also be specified.

addons/network-discovery.rst

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Finally, the network object directory backend needs to be changed to *Network di
3737
:align: center
3838

3939
Change network object directory backend to Network Discovery
40-
40+
4141
Now you can start Veyon Master and should see the computers in your network running a Veyon Server. Depending on the size of the subnet or network range(s), the initial scan process might take a while (up to 1-2 minutes in the worst case).
4242

4343
Options
@@ -118,6 +118,19 @@ The same substring extraction is possible for computer names as well (except for
118118

119119
Please refer to the `Wikipedia article on regular expressions <https://en.wikipedia.org/wiki/Regular_expression>`_ for more information on the concept, syntax and available pattern options.
120120

121+
Advanced settings
122+
-----------------
123+
124+
In the :guilabel:`Advanced` view mode several options for fine-tuning the behavior are available:
125+
126+
Property for generating persistent network object IDs
127+
Per default Veyon calculates unique internal IDs for each network object based on multiple information such as hostname, computer name etc. These IDs are used when saving and loading custom computer positions in Veyon Master. In order to use fixed positions for computers based on their host or computer name (especially if the computer name is configured to equal e.g. the user name), you can choose the corresponding option.
128+
129+
Data retrieval timeout
130+
This setting influences the maximum time Network Discovery waits to obtain the computer name via DNS or to query certain session-related characteristics from a remote computer.
131+
132+
**Default:** *5000 ms*
133+
121134
Command line interface
122135
----------------------
123136

admin/reference.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,13 +186,18 @@ Autostart
186186

187187
.. _RefSessions:
188188

189-
.. index:: Sessions, Session settings, Terminal server, Remote desktop server, RDP, Single session mode, Multi session mode
189+
.. index:: Sessions, Session settings, Terminal server, Remote desktop server, RDP, Local session mode, Active session mode, Multi session mode
190190

191-
Single session mode (create server instance for local/physical session only)
191+
Local session mode (single server instance for primary local session)
192192
Choose this option for single-user scenarios, i.e. each user is working locally on a dedicated computer. In this mode the Veyon Service will always start exactly one server instance for the primary session of the computer, e.g. the console session on Windows.
193193

194194
**Default:** *enabled*
195195

196+
Active session mode (single server instance for active local or remote session)
197+
Choose this option if you always want to view or access the active session, no matter if it's a local or remote session or the session type changes in inbetween. If e.g. a local session is being taken over via Remote Desktop, the Veyon Server instance is restarted inside the remote session and switches back to the local session as soon as the remote session is terminated.
198+
199+
**Default:** *disabled*
200+
196201
.. _RefMultiSessionMode:
197202

198203
Multi session mode (for terminal and remote desktop servers)

build-manuals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import subprocess
66
import gettext
77

8-
version = '4.9.1'
8+
version = '4.9.2'
99

1010
builds = [
1111
{ 'language': 'de', 'paper': 'a4paper', 'babel': 'ngerman' },

conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222

2323
# General information about the project.
2424
project = 'Veyon'
25-
copyright = '2017-2024, Veyon Solutions'
25+
copyright = '2017-2025, Veyon Solutions'
2626
author = 'Veyon Community'
2727

2828
title = os.getenv('TITLE', 'Veyon Documentation')
29-
version = os.getenv('VERSION', '4.9.1')
29+
version = os.getenv('VERSION', '4.9.2')
3030
# The full version, including alpha/beta/rc tags.
3131
release = version
3232

33-
language = os.getenv('LANGUAGE', None)
33+
language = os.getenv('LANGUAGE', 'en')
3434
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
3535
pygments_style = 'sphinx'
3636
todo_include_todos = False

index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Online documentation
1616
PDF download
1717
------------
1818

19-
* `Veyon Administrator Manual PDF <https://github.com/veyon/docs/releases/download/v4.9.1/veyon-admin-manual-en_4.9.1.pdf>`_
20-
* `Veyon User Manual PDF <https://github.com/veyon/docs/releases/download/v4.9.1/veyon-user-manual-en_4.9.1.pdf>`_
19+
* `Veyon Administrator Manual PDF <https://github.com/veyon/docs/releases/download/v4.9.2/veyon-admin-manual-en_4.9.2.pdf>`_
20+
* `Veyon User Manual PDF <https://github.com/veyon/docs/releases/download/v4.9.2/veyon-user-manual-en_4.9.2.pdf>`_
2121

2222
Other languages
2323
---------------

locale/ca_ES/LC_MESSAGES/index.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2017-2024, Veyon Solutions
2+
# Copyright (C) 2017-2025, Veyon Solutions
33
# This file is distributed under the same license as the Veyon package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -9,9 +9,9 @@
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
12-
"Project-Id-Version: Veyon 4.9.0\n"
12+
"Project-Id-Version: Veyon 4.9.2\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-11 09:33+0100\n"
14+
"POT-Creation-Date: 2025-02-07 14:17+0100\n"
1515
"PO-Revision-Date: 2019-03-21 09:30+0000\n"
1616
"Last-Translator: Joan Montané, 2021\n"
1717
"Language-Team: Catalan (Spain) (https://app.transifex.com/veyon-solutions/teams/65452/ca_ES/)\n"
@@ -32,14 +32,14 @@ msgstr "Baixada en PDF"
3232

3333
msgid ""
3434
"`Veyon Administrator Manual PDF "
35-
"<https://github.com/veyon/docs/releases/download/v4.9.1/veyon-admin-manual-"
36-
"en_4.9.1.pdf>`_"
35+
"<https://github.com/veyon/docs/releases/download/v4.9.2/veyon-admin-manual-"
36+
"en_4.9.2.pdf>`_"
3737
msgstr ""
3838

3939
msgid ""
4040
"`Veyon User Manual PDF "
41-
"<https://github.com/veyon/docs/releases/download/v4.9.1/veyon-user-manual-"
42-
"en_4.9.1.pdf>`_"
41+
"<https://github.com/veyon/docs/releases/download/v4.9.2/veyon-user-manual-"
42+
"en_4.9.2.pdf>`_"
4343
msgstr ""
4444

4545
msgid "Other languages"

locale/cs/LC_MESSAGES/index.po

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2017-2024, Veyon Solutions
2+
# Copyright (C) 2017-2025, Veyon Solutions
33
# This file is distributed under the same license as the Veyon package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
77
# Pavel Borecki <[email protected]>, 2019
8-
# Tobias Junghans, 2024
8+
# Tobias Junghans, 2025
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
13-
"Project-Id-Version: Veyon 4.9.0\n"
13+
"Project-Id-Version: Veyon 4.9.2\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-12-11 09:33+0100\n"
15+
"POT-Creation-Date: 2025-02-07 14:17+0100\n"
1616
"PO-Revision-Date: 2019-03-21 09:30+0000\n"
17-
"Last-Translator: Tobias Junghans, 2024\n"
17+
"Last-Translator: Tobias Junghans, 2025\n"
1818
"Language-Team: Czech (https://app.transifex.com/veyon-solutions/teams/65452/cs/)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=UTF-8\n"
@@ -33,21 +33,21 @@ msgstr "Stažení v PDF"
3333

3434
msgid ""
3535
"`Veyon Administrator Manual PDF "
36-
"<https://github.com/veyon/docs/releases/download/v4.9.1/veyon-admin-manual-"
37-
"en_4.9.1.pdf>`_"
36+
"<https://github.com/veyon/docs/releases/download/v4.9.2/veyon-admin-manual-"
37+
"en_4.9.2.pdf>`_"
3838
msgstr ""
3939
"`Příručka pro správu Veyon v "
40-
"PDF<https://github.com/veyon/docs/releases/download/v4.9.1/veyon-admin-"
41-
"manual-cs_4.9.1.pdf>`_"
40+
"PDF<https://github.com/veyon/docs/releases/download/v4.9.2/veyon-admin-"
41+
"manual-cs_4.9.2.pdf>`_"
4242

4343
msgid ""
4444
"`Veyon User Manual PDF "
45-
"<https://github.com/veyon/docs/releases/download/v4.9.1/veyon-user-manual-"
46-
"en_4.9.1.pdf>`_"
45+
"<https://github.com/veyon/docs/releases/download/v4.9.2/veyon-user-manual-"
46+
"en_4.9.2.pdf>`_"
4747
msgstr ""
4848
"`Uživatelská příručka k Veyon v PDF "
49-
"<https://github.com/veyon/docs/releases/download/v4.9.1/veyon-user-manual-"
50-
"cs_4.9.1.pdf>`_"
49+
"<https://github.com/veyon/docs/releases/download/v4.9.2/veyon-user-manual-"
50+
"cs_4.9.2.pdf>`_"
5151

5252
msgid "Other languages"
5353
msgstr ""

0 commit comments

Comments
 (0)