From: vincent@cubedesigners.com Date: Thu, 21 Jan 2021 09:46:15 +0000 (+0000) Subject: wip #4216 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=22349a35ab806ff9415c65e516200bf4ff7938b1;p=cubeextranet.git wip #4216 --- diff --git a/inc/ws/Controlleur/class.ws.maintenance.php b/inc/ws/Controlleur/class.ws.maintenance.php index 0f4b60492..c45f815d8 100644 --- a/inc/ws/Controlleur/class.ws.maintenance.php +++ b/inc/ws/Controlleur/class.ws.maintenance.php @@ -1407,9 +1407,11 @@ class wsMaintenance if ($platform === 'windows') { $p = 'windows-x32'; $exe = 'workshop'; + $version='0.50.2'; } else if ($platform === 'mac') { $p = 'mac-x64'; $exe = 'Fluidbook Workshop'; + $version='0.50.2'; } $path = ROOT . '/desktop'; @@ -1423,7 +1425,7 @@ class wsMaintenance $cl->setArg('uncompressed-folder'); $cl->setArg('title', 'Fluidbook Workshop'); $cl->setArg('output-dir', $outpath); - $cl->setArg('nw-version', '0.50.2'); + $cl->setArg('nw-version', $version); $cl->setArg('sdk-build'); $cl->setArg('main', 'index.html'); $cl->setArg('package-json'); @@ -1466,6 +1468,12 @@ class wsMaintenance //CubeIT_Util_Zip::archive($appContainer, $appPath . '.zip'); } } + + public static function themeParams(){ + $parent=new wsTheme(); + $t=new wsThemeParametres($parent); + $t->generateV3Form(false); + } }