View | Details | Raw Unified | Return to bug 251241 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-1 / +2 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	novnc
3
PORTNAME=	novnc
4
PORTVERSION=	1.2.0
4
PORTVERSION=	1.2.0
5
PORTREVISION=	1
5
CATEGORIES=	www
6
CATEGORIES=	www
6
7
7
MAINTAINER=	dpetrov67@gmail.com
8
MAINTAINER=	dpetrov67@gmail.com
Lines 22-28 Link Here
22
post-extract:
23
post-extract:
23
	@cd ${WRKSRC} && ${RM} .gitignore .gitmodules .travis.yml .eslintignore
24
	@cd ${WRKSRC} && ${RM} .gitignore .gitmodules .travis.yml .eslintignore
24
	@cd ${WRKSRC} && ${RM} -R .github
25
	@cd ${WRKSRC} && ${RM} -R .github
25
	@cd ${WRKSRC} && ${FIND} ${WRKSRC} -name '.eslintrc' -delete
26
	@${FIND} ${WRKSRC} -name '.eslintrc' -delete
26
27
27
do-install:
28
do-install:
28
	${MKDIR} ${STAGEDIR}${TARGET_DIR}
29
	${MKDIR} ${STAGEDIR}${TARGET_DIR}
(-)files/patch-core_decoders_tight.js (+11 lines)
Line 0 Link Here
1
--- core/decoders/tight.js.orig	2020-07-14 08:16:52 UTC
2
+++ core/decoders/tight.js
3
@@ -56,7 +56,7 @@ export default class TightDecoder {
4
         } else if (this._ctl === 0x0A) {
5
             ret = this._pngRect(x, y, width, height,
6
                                 sock, display, depth);
7
-        } else if ((this._ctl & 0x80) == 0) {
8
+        } else if ((this._ctl & 0x08) == 0) {
9
             ret = this._basicRect(this._ctl, x, y, width, height,
10
                                   sock, display, depth);
11
         } else {

Return to bug 251241