From d4c0b35dd9b755a3e88cebf19db99019111dfef2 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 13 Feb 2024 13:40:32 -0800 Subject: [PATCH] add logic to support isolation URLs bump kasm for bugfix on touch devices --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- root/kasminit | 11 +++++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 287cd43..65602d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:12-buster as wwwstage -ARG KASMWEB_RELEASE="75d4f9c57c1a0e99f045270006376f75be44f609" +ARG KASMWEB_RELEASE="54b9bac920267e902af3c9dfca4c0f64cff92f41" RUN \ echo "**** build clientside ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index d52dfc7..ed8d4b0 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -2,7 +2,7 @@ FROM node:12-buster as wwwstage -ARG KASMWEB_RELEASE="75d4f9c57c1a0e99f045270006376f75be44f609" +ARG KASMWEB_RELEASE="54b9bac920267e902af3c9dfca4c0f64cff92f41" RUN \ echo "**** install build deps ****" && \ diff --git a/root/kasminit b/root/kasminit index 316a9aa..65e1cd7 100755 --- a/root/kasminit +++ b/root/kasminit @@ -26,6 +26,17 @@ if [ ! -z ${HW3D+x} ]; then KASMVNC_HW3D="-hw3d" fi +# Go URL translation +if [ ! -z ${KASM_URL+x} ]; then + export BRAVE_CLI=$KASM_URL + export CHROME_CLI=$KASM_URL + export EDGE_CLI=$KASM_URL + export FIREFOX_CLI=$KASM_URL + export OPERA_CLI=$KASM_URL + export TOR_CLI=$KASM_URL + export VIVALDI_CLI=$KASM_URL +fi + ## Directory setup for home folder ## # Create folders for upload/download mkdir -p $HOME/Desktop $HOME/Downloads