IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an
email to Administrator. User accounts are meant only to access repo
and report issues and/or generate pull requests.
This is a purpose-specific Git hosting for
BaseALT
projects. Thank you for your understanding!
Только зарегистрированные пользователи имеют доступ к сервису!
Для получения аккаунта, обратитесь к администратору.
instead of using the babel-shim (which is not production-ready),
create a bundle app.js file with node-es6-module-transpiler in the
dh_auto_build step
this way, we only need to ship 1 js file instead of many
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
novnc changed quiet a bit, so we have to update
the Makefile, add a line to the debian rules file, and
to adjust the install file
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
adds the new rebased patches, based on current novnc master
notable changes:
* (most of) our code is in an es6 module, opposed to patching the ui.js
* removed our sendkeys menu in favor of the novnc one
* you can now enter fullscreen from a popup console
* when a vm resizes its resolution, the canvas should also rescale in
the console tab
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
we do not want to have the html for novnc in the pve-manager package,
so we have it in the novnc-pve package as a template, which we will
load using Template::Toolkit
the changes are copied from NoVncIndex.pm from pve-manager/PVE/
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
it already was in the comment but i forgot it:
some browsers need an even size,
so we do Floor(x/2)*2
but if we have an uneven height, we get a window
that is a pixel too small, resulting in a scrollbar
so we have to add 1 first (like with the width)
Floor((x+1)/2)*2
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
this patch makes the bar white (instead of a blue gradient),
yellow in warning state, and red in error state
this also makes the buttons blue like our "Create VM"
Button
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
on ie11, the 'clip' setting will always be parsed to true
(because of weird calls to some functions which try to get
the clip setting at the wrong time, but only in ie11)
so instead of initSetting, we forceSetting the clip to false
if clip is true, it gets in the way of resizing
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
The display glitch bug has finally be fixed
c802d93189
We can now bump to last version, which improve performance.
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
They are performances improvements and fullscreen button support
changelog: only display fullscreen button is resize=scale is defined
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>