mirror of
https://gitlab.com/virt-viewer/virt-viewer.git
synced 2025-01-03 01:17:46 +03:00
Typo fixes
- "allow to" -> "allow one to" - "arguemnt" -> "argument" - "bewteen" -> "between" - "conncetion" -> "connection" - "connnect" -> "connect" - "differantiate" -> "differentiate" - "fo" -> "to" - "non-existant" -> "non-existent" - "prefered" -> "preferred" - "quiting" -> "quitting" - "reseting" -> "resetting" - "seemless" -> "seamless" - "unconditionnaly" -> "unconditionally" Thanks to codespell. Signed-off-by: Pino Toscano <ptoscano@redhat.com>
This commit is contained in:
parent
10b111c39b
commit
6b7c11fc27
8
NEWS
8
NEWS
@ -143,7 +143,7 @@
|
||||
- Enable connecting to SPICE over UNIX socket
|
||||
- Fix warnings with newer GCCs
|
||||
- Allow controlling zoom level with keypad
|
||||
- Don't close app during seemless migration
|
||||
- Don't close app during seamless migration
|
||||
- Don't show toolbar in kiosk mode
|
||||
- Re-show auth dialog in kiosk mode
|
||||
- Don't show error when cancelling auth
|
||||
@ -178,7 +178,7 @@
|
||||
- Require glib2 >= 2.38
|
||||
- Require gtk3 >= 3.10
|
||||
- Require libvirt-glib >= 0.1.8
|
||||
- Increase minimum window size fo 320x200 instead of 50x50
|
||||
- Increase minimum window size to 320x200 instead of 50x50
|
||||
- Remove use of GSLice
|
||||
- Don't show usbredir button if not connected yet
|
||||
- Only compute monitor mapping in full screen
|
||||
@ -254,7 +254,7 @@
|
||||
- Require address in remote viewer connect dialog
|
||||
- Automatically retry VNC connection after auth failure
|
||||
- Drop GTK2 support for Windows builds
|
||||
- Enable keepalives on libvirt conncetion
|
||||
- Enable keepalives on libvirt connection
|
||||
- Allow resize of window to arbitrary size
|
||||
- Fix thread safety handling event callbacks
|
||||
- Avoid deprecation warnings with newer glib
|
||||
@ -405,7 +405,7 @@
|
||||
- Fix misc memory leaks
|
||||
- Fix build with newer glibc and -O0
|
||||
- Improve automatic fullscreen Spice configuration
|
||||
- Avoid crash when quiting application
|
||||
- Avoid crash when quitting application
|
||||
- Rebuild display men whenever a window is added/removed
|
||||
- Number displays starting from 1 instead of 0
|
||||
- Add support for handling multiple monitors with Spice
|
||||
|
@ -29,7 +29,7 @@ monitors, it will enable only guest display #1 and display it on
|
||||
monitor #2.
|
||||
|
||||
A2. When connecting to guest 6485b... on a client with 1 monitor,
|
||||
the "1:2" mapping refers to a non-existant monitor and will thus
|
||||
the "1:2" mapping refers to a non-existent monitor and will thus
|
||||
be ignored (C4). Because there are no valid display mappings
|
||||
specified, the configuration will be considered invalid (B13).
|
||||
The guest will then be displayed according to the default
|
||||
|
@ -54,7 +54,7 @@ Start with the windows maximized to fullscreen.
|
||||
If supported, the remote display will be reconfigured to match the physical
|
||||
client monitor configuration, by enabling or disabling extra monitors as
|
||||
necessary. This is currently implemented by the Spice backend only and
|
||||
can be disabled by the C<--auto-resize> arguemnt.
|
||||
can be disabled by the C<--auto-resize> argument.
|
||||
|
||||
To specify which client monitors are used in fullscreen mode, see the
|
||||
CONFIGURATION section below.
|
||||
@ -283,7 +283,7 @@ Key binding for zooming out and reducing client window size. (see L<HOTKEY> for
|
||||
|
||||
=item C<zoom-reset> (hotkey string)
|
||||
|
||||
Key binding for reseting zoom and client window size. (see L<HOTKEY> for description of expected string)
|
||||
Key binding for resetting zoom and client window size. (see L<HOTKEY> for description of expected string)
|
||||
|
||||
=item C<smartcard-insert> (hotkey string)
|
||||
|
||||
@ -379,13 +379,13 @@ GUID of the oVirt virtual machine to connect to.
|
||||
=item C<jsessionid> (string)
|
||||
|
||||
Value to set the 'jsessionid' cookie to. With oVirt 3.6, setting this
|
||||
authentication cookie to a valid value will allow to interact with the oVirt
|
||||
authentication cookie to a valid value will allow one to interact with the oVirt
|
||||
REST API without being asked for credentials.
|
||||
|
||||
=item C<sso-token> (string)
|
||||
|
||||
Value to set the 'Authorization' header to. With oVirt 4.0 or newer, setting
|
||||
this authentication header to a valid value will allow to interact with the
|
||||
this authentication header to a valid value will allow one to interact with the
|
||||
oVirt REST API without being asked for credentials.
|
||||
|
||||
=item C<ca> (string)
|
||||
|
@ -147,7 +147,7 @@ struct _VirtViewerAppPrivate {
|
||||
gboolean connected;
|
||||
gboolean cancelled;
|
||||
char *unixsock;
|
||||
char *guri; /* prefered over ghost:gport */
|
||||
char *guri; /* preferred over ghost:gport */
|
||||
char *ghost;
|
||||
char *gport;
|
||||
char *gtlsport;
|
||||
@ -3122,7 +3122,7 @@ virt_viewer_app_set_fullscreen(VirtViewerApp *self, gboolean fullscreen)
|
||||
.fullscreen = fullscreen,
|
||||
};
|
||||
|
||||
/* we iterate unconditionnaly, even if it was set before to update new windows */
|
||||
/* we iterate unconditionally, even if it was set before to update new windows */
|
||||
priv->fullscreen = fullscreen;
|
||||
g_list_foreach(priv->windows, fullscreen_cb, &options);
|
||||
|
||||
|
@ -752,7 +752,7 @@ virt_viewer_session_spice_main_channel_event(SpiceChannel *channel,
|
||||
/* The username is firstly pre-filled with the username of the current
|
||||
* user and in case where some authentication error happened, the
|
||||
* username entry will be prefilled with the last username used.
|
||||
* Unfortunately, we don't have a clear way to differantiate bewteen
|
||||
* Unfortunately, we don't have a clear way to differentiate between
|
||||
* invalid username and invalid password. So, in both cases the username
|
||||
* entry will be pre-filled with the username used in the previous attempt. */
|
||||
if (username_required) {
|
||||
|
@ -1240,7 +1240,7 @@ virt_viewer_window_change_cd(VirtViewerWindow *self G_GNUC_UNUSED)
|
||||
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
|
||||
GTK_MESSAGE_ERROR,
|
||||
GTK_BUTTONS_CLOSE,
|
||||
_("Unable to connnect to oVirt"));
|
||||
_("Unable to connect to oVirt"));
|
||||
|
||||
g_signal_connect(dialog, "response", G_CALLBACK(iso_dialog_response), NULL);
|
||||
gtk_widget_show_all(dialog);
|
||||
|
Loading…
Reference in New Issue
Block a user