summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* noVNC 1.1.0v1.1.0Samuel Mannehed2019-04-092-2/+2
|
* Update generated JS files for translationsSamuel Mannehed2019-04-095-19/+170
|
* Update Dutch translationsSamuel Mannehed2019-04-091-89/+121
| | | | Co-authored-by: Arend Lapere <arend.lapere@gmail.com>
* Update Swedish translationsSamuel Mannehed2019-04-091-88/+120
|
* Allow autoscale() with zero height or widthSamuel Mannehed2019-04-021-11/+19
| | | | | | | Commit 6e7e6f9 stopped the function from running if width or height was zero, this commit reverts that change. This commit also makes the resulting canvas 0x0 if autoscale is called with zero. By adding this special case we can avoid division by zero in the calculations.
* Get rid of self-closing tagsPierre Ossman2019-04-022-75/+75
| | | | | This is a remnant of XHTML and not used in standard HTML. Get rid of them so that no-one mistakes our files for being XHTML compatible.
* Fix up errors and warnings in vnc_playback.htmlPierre Ossman2019-03-261-11/+6
| | | | | Remove the styling, as it isn't really needed, and fix some minor things that the w3c validator complains about.
* Validate HTML and CSS in TravisPierre Ossman2019-03-262-0/+50
|
* Add translations as a featureSamuel Mannehed2019-03-211-0/+1
|
* Merge pull request #1218 from samhed/htmlformatSamuel Mannehed2019-03-142-61/+51
|\ | | | | Some formatting fixes for HTML files
| * Remove trailing whitespaceSamuel Mannehed2019-03-141-1/+1
| |
| * Consistently end self closing tags with />Samuel Mannehed2019-03-142-42/+42
| | | | | | | | | | Even though this isn't strictly required by the standard its nice to be consistent.
| * Remove invalid HTML attributes from textareaSamuel Mannehed2019-03-141-2/+1
| |
| * img elements must have alt attributesSamuel Mannehed2019-03-141-4/+4
| |
| * Fix invalid input type 'input'Samuel Mannehed2019-03-141-2/+2
| |
| * Input type image is not allowed to have valuesSamuel Mannehed2019-03-141-2/+1
| |
| * Remove unnecessary type attributesSamuel Mannehed2019-03-142-2/+2
| |
| * Remove X-UA-Compatible meta tagSamuel Mannehed2019-03-142-8/+0
| | | | | | | | | | It's only required if we wanted support IE8, IE9 or older. We require at least IE11 at the moment.
| * Add default languageSamuel Mannehed2019-03-142-2/+2
|/
* Add check for bad values for Display.autoscale()Samuel Mannehed2019-03-081-0/+5
|
* Merge pull request #1204 from juanjoDiaz/small_improvementsSamuel Mannehed2019-03-0411-194/+163
|\ | | | | Small improvements
| * Remove callbacks from UI in favour of promisesJuanjo Diaz2019-02-273-62/+47
| |
| * Replace unnecessary function supportsCursorURIs by a constant variableJuanjo Diaz2019-02-272-22/+16
| |
| * Move support check from display to browserJuanjo Diaz2019-02-272-9/+11
| |
| * Convert DES into a classJuanjo Diaz2019-02-262-77/+71
| |
| * Use default argument for base64Juanjo Diaz2019-02-261-3/+1
| |
| * Remove unnecessary context from eventtargetJuanjo Diaz2019-02-261-1/+1
| |
| * Remove unnecessary constructor parameter from CursorJuanjo Diaz2019-02-261-1/+1
| |
| * Remove intermediate variable from mouseJuanjo Diaz2019-02-161-20/+16
| |
* | Add Russian translation (#1211)Dmitriy Shweew2019-02-274-2/+381
|/ | | By Dmitriy Shweew (shweew)
* Remove error handling in clientCutText()Pierre Ossman2019-02-151-5/+0
| | | | | | It is not necessary as Websock.flush() is guaranteed to succeed and give us some space. It also remove the call to _fail(), which was invalid at this place as clientCutText() is not a method on RFB.
* Throw correct Error objectPierre Ossman2019-02-151-1/+1
| | | | | | We've already defined the name Error as a logging function, so we need to be more explicit when we want to refer to the exception class.
* Merge branch 'slowdata' of https://github.com/CendioOssman/noVNCPierre Ossman2019-02-153-47/+48
|\
| * Send data one byte at a time in testsPierre Ossman2019-02-152-10/+15
| | | | | | | | | | This makes sure we don't have code assuming that everything is neatly packaged in a single WebSocket message.
| * Clean up RFB._rfb_auth_schema assignmentPierre Ossman2019-02-151-2/+1
| |
| * Fix security failure reason handling of slow dataPierre Ossman2019-02-151-32/+27
| | | | | | | | | | Things would break if the security result and security reason did not arrive in the same WebSocket message.
| * Fix version handshake to handle slow dataPierre Ossman2019-02-151-2/+2
| |
| * Use arrow function to avoid bindPierre Ossman2019-02-151-1/+3
|/
* Consume data properly in Hextile decoderPierre Ossman2019-02-141-0/+1
| | | | | | We accidentally removed the code updating the data index in 8a189a6, resulting in the decoder newer consuming any data. So the data would be parsed as the next rect, causing weird errors.
* Merge pull request #1190 from saucelabs/screen_backgroundSamuel Mannehed2019-01-212-1/+11
|\ | | | | Make the screen background customizable
| * Make the screen background cutomizableMykola Mokhnach2019-01-182-1/+11
| |
* | Fix naming of Korean translation filePierre Ossman2019-01-161-1/+1
| |
* | Update translation template filePierre Ossman2019-01-161-64/+76
| |
* | Fix copyright tag in translationsPierre Ossman2019-01-161-1/+1
|/
* Add Korean translationBaw_Appie2019-01-163-2/+292
|
* Merge pull request #1182 from novnc/scrollbarsfortouchSamuel Mannehed2019-01-142-20/+25
|\ | | | | Enable scrollbars for all touch devices aside from Android and iOS
| * Only disable scrollbars on Android and iOSscrollbarsfortouchSamuel Mannehed2019-01-092-3/+8
| | | | | | | | | | | | Previously scrollbars were disabled on all touch devices. This meant that they were disabled on Windows when touch was detected. Windows does in fact have useful scrollbars even in touch mode. Fixes Issue #1172
| * Move UI.isSafari into core/util/browser.jsSamuel Mannehed2019-01-092-7/+7
| | | | | | | | This is where the rest of these kinds of functions are.
| * Reorder browser and platform info functionsSamuel Mannehed2019-01-091-11/+11
| | | | | | | | | | Platform info functions grouped together and browser info functions grouped together.
* | Merge branch 'npm' of https://github.com/CendioOssman/noVNCPierre Ossman2019-01-114-40/+17
|\ \ | |/ |/|