Skip to content

Commit

Permalink
Update to noVNC 1.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
CendioOssman committed Jun 18, 2024
1 parent aadb7c6 commit 2a09a3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noVNC
Submodule noVNC updated 80 files
+0 −1 .eslintignore
+0 −54 .eslintrc
+5 −5 .github/workflows/deploy.yml
+4 −4 .github/workflows/lint.yml
+2 −2 .github/workflows/test.yml
+2 −2 .github/workflows/translate.yml
+0 −3 README.md
+21 −11 app/locale/el.json
+2 −8 app/locale/fr.json
+0 −4 app/locale/it.json
+15 −7 app/locale/ja.json
+2 −1 app/locale/sv.json
+24 −24 app/locale/zh_CN.json
+38 −11 app/localization.js
+2 −2 app/styles/base.css
+4 −4 app/styles/input.css
+16 −20 app/ui.js
+72 −8 app/webutil.js
+178 −0 core/crypto/aes.js
+34 −0 core/crypto/bigint.js
+90 −0 core/crypto/crypto.js
+68 −4 core/crypto/des.js
+55 −0 core/crypto/dh.js
+8 −5 core/crypto/md5.js
+132 −0 core/crypto/rsa.js
+12 −22 core/decoders/hextile.js
+111 −106 core/decoders/jpeg.js
+22 −29 core/decoders/raw.js
+70 −8 core/decoders/tight.js
+1 −1 core/decoders/zrle.js
+2 −3 core/deflator.js
+13 −10 core/display.js
+1 −0 core/encodings.js
+1 −2 core/inflator.js
+22 −13 core/input/keyboard.js
+1 −1 core/input/util.js
+46 −301 core/ra2.js
+250 −374 core/rfb.js
+3 −1 core/util/cursor.js
+70 −58 core/websock.js
+0 −6 docs/API-internal.md
+3 −3 docs/novnc_proxy.1
+102 −0 eslint.config.mjs
+3 −10 package.json
+0 −5 po/.eslintrc
+169 −93 po/el.po
+119 −80 po/ja.po
+80 −75 po/noVNC.pot
+7 −5 po/po2js
+26 −16 po/sv.po
+66 −66 po/zh_CN.po
+2 −2 snap/snapcraft.yaml
+0 −15 tests/.eslintrc
+10 −6 tests/fake.websocket.js
+4 −1 tests/playback-ui.js
+6 −13 tests/playback.js
+0 −1 tests/test.browser.js
+18 −9 tests/test.copyrect.js
+0 −1 tests/test.deflator.js
+7 −11 tests/test.display.js
+2 −0 tests/test.helper.js
+19 −9 tests/test.hextile.js
+0 −1 tests/test.inflator.js
+0 −1 tests/test.int.js
+21 −17 tests/test.jpeg.js
+48 −0 tests/test.keyboard.js
+120 −35 tests/test.localization.js
+0 −357 tests/test.ra2.js
+57 −32 tests/test.raw.js
+1,218 −322 tests/test.rfb.js
+12 −4 tests/test.rre.js
+125 −37 tests/test.tight.js
+10 −9 tests/test.tightpng.js
+253 −177 tests/test.websock.js
+32 −8 tests/test.webutil.js
+37 −17 tests/test.zrle.js
+0 −8 utils/.eslintrc
+1 −1 utils/convert.js
+38 −18 utils/novnc_proxy
+2 −9 vnc_lite.html

0 comments on commit 2a09a3d

Please sign in to comment.