Commit Graph

986 Commits

Author SHA1 Message Date
Drew Faubion 5c140a7a53 Add downloads viewer 2020-06-25 09:59:08 -07:00
Eric Swanson 7b98e5ec55 Try to close Coyote on window close 2019-09-09 12:36:03 -07:00
Richard Klafter 277e524337 Merge branch 'master' of github.com:zincio/noVNC 2019-07-08 10:30:59 -07:00
Richard Klafter e7f1ee4112 disconnect if idle 2019-07-08 10:30:55 -07:00
Eric Swanson 4e21d1e1b6 Fix 2019-05-14 23:29:58 -07:00
Eric Swanson 0384de485d Fixes 2019-05-14 23:27:48 -07:00
Eric Swanson 48f6acdc19 Update script to allow closing explicitly 2019-05-14 23:23:16 -07:00
Doug Feigelson 5f625452b0 tired 2018-06-08 00:55:49 -07:00
Doug Feigelson c892d74e0f style 2018-06-08 00:54:41 -07:00
Doug Feigelson 4378eca2e8 style 2018-06-08 00:51:49 -07:00
Doug Feigelson 313f94b915 add vncurl 2018-06-08 00:46:02 -07:00
Eric Swanson 905cac3877 Native VNC creds 2018-05-15 16:23:10 -07:00
Eric Swanson 06a686eb79 VNC fixes 2018-01-10 11:32:01 -08:00
Eric Swanson 9b8d86db25 Hack to hide the URL in local storage 2018-01-10 11:30:09 -08:00
Eric Swanson 168ffd5123 Hide creds on connection 2017-09-06 14:32:41 -07:00
Eric Swanson 49031257f2 Work with mouse on touchscreens 2017-08-30 14:30:20 -07:00
Eric Swanson b067030242 Nit for DL link 2017-05-30 16:21:31 -07:00
Eric Swanson eb68f29712 Add downloaded file link 2017-05-30 16:09:56 -07:00
Richard Klafter 03d7d370ee cache bust 2017-05-23 11:28:25 -07:00
Richard Klafter 8223d27a98 css style update 2017-05-22 16:38:00 -07:00
Richard Klafter a200aded4f better vnc viewer page 2017-05-22 16:32:26 -07:00
Richard Klafter 797136d033 better copy paste 2017-05-22 15:45:11 -07:00
Eric Swanson 42a33ba0c4 Redirect to session expired page on PriceYak
After 12 hours, we'll redirect to the session expired page.
2016-12-05 12:09:10 -08:00
Richard Klafter 684d39baeb copy 2016-07-28 12:17:38 -07:00
Richard Klafter 5615c57290 made copy paste better? 2016-07-18 17:48:18 -07:00
Richard Klafter 0542fcd450 remove some dump vnc options 2016-07-18 15:12:20 -07:00
Eric Swanson b895279aab Disable TrueColor 2016-07-12 14:14:21 -07:00
Solly Ross da82b3426c Release 0.6.1
Fixes version number mismatch (also adds more detailed instructions
for releasing).

Fixes #628
2016-07-04 15:29:00 -04:00
Solly Ross 5230ab6764 Release 0.6.0
This bumps the release version to 0.6.0
2016-07-01 15:42:14 -04:00
Solly Ross 67685d0700 Fix missing mistyped setTimeout handler in UI
This commit fixes a mistyped setTimeout handler that would result
in the desired function not getting called (due to a missing set
of parentheses).  It also removes some uncessary anonymous functions,
and just passes the function objects directly to setTimeout.
2016-07-01 15:42:14 -04:00
Joel Martin 15e733f533 Clarify that utils/launch.sh is MPL-2.0
Also, note in the top-level license file that the default noVNC
license for files that are not explicitly marked or mentioned in
the LICENSE.txt file are by default MPL-2.0 licensed.
2016-06-13 10:22:43 -05:00
samhed b2cdd55859 Proper error handling for tight filters
Don't throw an exception when we encounter an unsupported tight
subencoding.
2016-06-10 17:15:42 +02:00
samhed 3daa86cbae Update vnc_auto after the screen namechange
Commit 553864e858 changed the name of
noVNC_screen to noVNC_container, vnc_auto.html was not updated
accordingly. Fixes #621
2016-06-08 16:02:37 +02:00
samhed 5fd3f88e50 Merge branch 'ui-cleanup' of https://github.com/kanaka/noVNC 2016-06-03 10:46:05 +02:00
Samuel ae11605141 Split the setDesktopSize function (#618)
In order to follow the surrounding coding-standards, the
setDesktopSize client message is split from the public function which
now is called requestDesktopSize().
2016-06-02 22:37:52 +02:00
Samuel Mannehed a1dbbcc1a7 Consistent closing tags for void elements 2016-05-27 16:14:25 +02:00
Samuel Mannehed 3f2c25a60f Use a consistent naming convention for elements
* Element names we use "_" as word-delimiter, not "-"
* Element names use less camel-case
* Element names end with the type
* Element names always start with noVNC_
2016-05-27 16:14:25 +02:00
Samuel Mannehed 682fd02be6 Change the names of settings-elements
This change was made in order to make it easier to distinguish
settings-elements from other elements. One example of the problem
that was solved is the two elements "noVNC_clip" and
"noVNC_clipboard" where the first is the setting for clipping mode.
That element was now renamed to "noVNC_setting_clip".
2016-05-27 16:12:32 +02:00
samhed a20a898765 Timeouts should always use anonymous functions
While you CAN pass functions in strings, it is not the correct way
of doing it. The browsers are just being nice.
2016-05-27 16:12:31 +02:00
samhed 4d26f58e0d Change name of clipboard functions
There were a high risk of confusion between clipboard functions and
clipping functions.
2016-05-27 16:11:47 +02:00
samhed 95dd60011c Group together related functions and add dividers
Dividers between the different parts of the UI has been added in
order to easier get an overview.
2016-05-12 16:56:50 +02:00
samhed afcf031a68 Send the xvp keys from anonymous functions 2016-05-12 16:56:50 +02:00
samhed fdf21468d3 Renamed and moved keyboard and mouse functions 2016-05-12 16:56:50 +02:00
samhed 9e45354efc Renamed and moved updateXvpButton 2016-05-12 16:56:50 +02:00
samhed ab81ddf5d4 Move the connect and disconnect functions 2016-05-12 16:56:50 +02:00
samhed e00698fef8 Clarify comments and variable names for viewDrag 2016-05-12 16:56:50 +02:00
samhed cd611a5326 Renamed showExtraKeys to toggleExtraKeys 2016-05-12 16:56:50 +02:00
samhed 4e471b5b55 Moved and split the popupStatus function
Now if popupStatus is called twice it will refresh the duration of
the popup. If you want to wait 1.5 seconds and close the popup you
can click the popup itself.
2016-05-12 16:56:50 +02:00
samhed 45c70c9e23 Moved and changed order of the setting-functions 2016-05-12 16:56:50 +02:00
samhed 0bd2cbacaa Remove whitespace from function definitions 2016-05-12 16:56:50 +02:00