Encrypt default to off, TODO updates.
This commit is contained in:
parent
8db09746b7
commit
208c832b28
|
@ -1,8 +1,5 @@
|
||||||
Short Term:
|
Short Term:
|
||||||
|
|
||||||
- Proper Javascript namespacing for Canvas and RFB (using function for
|
|
||||||
true local variables and functions).
|
|
||||||
|
|
||||||
- Timing delta between frames in proxy record log, for playback
|
- Timing delta between frames in proxy record log, for playback
|
||||||
support (for demo and test).
|
support (for demo and test).
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ load: function(target) {
|
||||||
html += ' onmouseout="DefaultControls.canvasFocus();">';
|
html += ' onmouseout="DefaultControls.canvasFocus();">';
|
||||||
html += ' <ul>';
|
html += ' <ul>';
|
||||||
html += ' <li><input id="VNC_encrypt"';
|
html += ' <li><input id="VNC_encrypt"';
|
||||||
html += ' type="checkbox" checked> Encrypt</li>';
|
html += ' type="checkbox"> Encrypt</li>';
|
||||||
html += ' <li><input id="VNC_base64"';
|
html += ' <li><input id="VNC_base64"';
|
||||||
html += ' type="checkbox" checked> Base64 Encode</li>';
|
html += ' type="checkbox" checked> Base64 Encode</li>';
|
||||||
html += ' <li><input id="VNC_true_color"';
|
html += ' <li><input id="VNC_true_color"';
|
||||||
|
@ -112,7 +112,7 @@ load: function(target) {
|
||||||
DC.initSetting('host', '');
|
DC.initSetting('host', '');
|
||||||
DC.initSetting('port', '');
|
DC.initSetting('port', '');
|
||||||
DC.initSetting('password', '');
|
DC.initSetting('password', '');
|
||||||
DC.initSetting('encrypt', true);
|
DC.initSetting('encrypt', false);
|
||||||
DC.initSetting('base64', true);
|
DC.initSetting('base64', true);
|
||||||
DC.initSetting('true_color', true);
|
DC.initSetting('true_color', true);
|
||||||
DC.initSetting('cursor', true);
|
DC.initSetting('cursor', true);
|
||||||
|
|
Loading…
Reference in New Issue