diff --git a/greenkeeper.json b/greenkeeper.json index 50295f32..3e5b77aa 100644 --- a/greenkeeper.json +++ b/greenkeeper.json @@ -3,7 +3,6 @@ "default": { "packages": [ "package.json", - "packages/default.gbtheme/package.json", "packages/default.gbui/package.json" ] } diff --git a/packages/basic.gblib/services/GBVMService.ts b/packages/basic.gblib/services/GBVMService.ts index 92de1a1d..6bb30003 100644 --- a/packages/basic.gblib/services/GBVMService.ts +++ b/packages/basic.gblib/services/GBVMService.ts @@ -518,7 +518,7 @@ export class GBVMService extends GBService { code = ji.default(code, ' '); await fs.writeFile(jsfile, code); - GBLogEx.info(min, `Code reloaded: ${path.basename(filename)}.`); + } private async executeTasks(min, tasks) { diff --git a/packages/basic.gblib/services/ImageProcessingServices.ts b/packages/basic.gblib/services/ImageProcessingServices.ts index 10a21fbf..1ec32baf 100644 --- a/packages/basic.gblib/services/ImageProcessingServices.ts +++ b/packages/basic.gblib/services/ImageProcessingServices.ts @@ -107,6 +107,8 @@ export class ImageProcessingServices { public async getImageFromPrompt({ pid, prompt }) { const { min, user, params } = await DialogKeywords.getProcessInfo(pid); + GBLogEx.info(min, `DALL-E: ${prompt}.`); + const azureOpenAIKey = await min.core.getParam(min.instance, 'Azure Open AI Key', null, true); const azureOpenAIEndpoint = await min.core.getParam(min.instance, 'Azure Open AI Endpoint', null, true); const azureOpenAIVersion = await (min.core as any)['getParam'](min.instance, 'Azure Open AI Version', null, true); diff --git a/packages/basic.gblib/services/KeywordsExpressions.ts b/packages/basic.gblib/services/KeywordsExpressions.ts index 896fa9ae..f12090de 100644 --- a/packages/basic.gblib/services/KeywordsExpressions.ts +++ b/packages/basic.gblib/services/KeywordsExpressions.ts @@ -490,10 +490,10 @@ export class KeywordsExpressions { ]; keywords[i++] = [ - /\s*(PLAY)(\s*)(.*)/gim, + /\s*(SHOW IMAGE)(\s*)(.*)/gim, ($0, $1, $2, $3, $4) => { const params = this.getParams($3, ['file']); - return `await sys.play({pid: pid, ${params}})`; + return `await sys.showImage({pid: pid, ${params}})`; } ]; diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index 8c17cbfd..6f924e01 100644 --- a/packages/basic.gblib/services/SystemKeywords.ts +++ b/packages/basic.gblib/services/SystemKeywords.ts @@ -2861,10 +2861,13 @@ export class SystemKeywords { return item; } - public async play({ pid, file }) { + public async showImage({ pid, file }) { const { min, user, params, step } = await DialogKeywords.getProcessInfo(pid); - await min.kbService.playUrl(min, min.conversationalService, step, file?.url ? file.url : file); + const url = file?.url ? file.url : file; + GBLog.info(`PLAY IMAGE: ${url}.`); + + await min.kbService.showImage(min, min.conversationalService, step, url); await this.setMemoryContext({ pid, erase: true }); } diff --git a/packages/core.gbapp/services/GBDeployer.ts b/packages/core.gbapp/services/GBDeployer.ts index 3f989630..6ca48a4b 100644 --- a/packages/core.gbapp/services/GBDeployer.ts +++ b/packages/core.gbapp/services/GBDeployer.ts @@ -602,7 +602,7 @@ export class GBDeployer implements IGBDeployer { const gbai = GBUtil.getGBAIPath(min.instance.botId); if (download) { - if (packageType === 'gbkb') { + if (packageType === '.gbkb' || packageType === '.gbtheme') { await this.cleanupPackage(min.instance, packageName); } diff --git a/packages/core.gbapp/services/GBMinService.ts b/packages/core.gbapp/services/GBMinService.ts index 6e6c4204..dfde0b60 100644 --- a/packages/core.gbapp/services/GBMinService.ts +++ b/packages/core.gbapp/services/GBMinService.ts @@ -298,7 +298,6 @@ export class GBMinService { await GBVMService.loadConnections(min); - // Install per bot deployed packages. let packagePath = urlJoin(`work`, GBUtil.getGBAIPath(min.botId, 'gbdialog')); @@ -312,8 +311,8 @@ export class GBMinService { packagePath = urlJoin(`work`, GBUtil.getGBAIPath(min.botId, 'gbtheme')); if (await GBUtil.exists(packagePath)) { await this.deployer['deployPackage2'](min, user, packagePath); - } - else { + await this.watchPackages(min, 'gbtheme'); + } else { await this.deployer['deployPackage2'](min, user, path.join('work', 'default.gbai', 'default.gbtheme')); } @@ -688,7 +687,7 @@ export class GBMinService { if (instance === null) { instance = await this.core.loadInstanceByActivationCode(botId); } - GBLogEx.info(instance.instanceId, `Client requested instance for: ${botId}.`); + GBLogEx.info(instance.instanceId, `New user: ${req.body?.user?.id}.`); if (instance !== null) { // Gets the webchat token, speech token and theme. @@ -727,8 +726,8 @@ export class GBMinService { config['domain'] = `http://localhost:${GBConfigService.get('PORT')}/directline/${botId}`; } else { const webchatTokenContainer = await this.getWebchatToken(instance); - (config['conversationId'] = webchatTokenContainer.conversationId), - (config['webchatToken'] = webchatTokenContainer.token); + config['conversationId'] = webchatTokenContainer.conversationId; + config['webchatToken'] = webchatTokenContainer.token; } res.send(JSON.stringify(config)); @@ -1219,7 +1218,7 @@ export class GBMinService { const context = adapter['createContext'](req); context['_activity'] = context.activity.body; await handler(context); - + // Return status res.status(200); @@ -1774,6 +1773,7 @@ export class GBMinService { try { const workFolder = path.join('work', packagePath); await this.deployer.deployPackage2(min, null, workFolder, true); + GBLogEx.info(min, `Deployed: ${path.basename(workFolder)}.`); } catch (error) { GBLogEx.error(min, `Error deploying package: ${GBUtil.toYAML(error)}`); } finally { diff --git a/packages/core.gbapp/services/router/bridge.ts b/packages/core.gbapp/services/router/bridge.ts index 782db5a9..68d793fc 100644 --- a/packages/core.gbapp/services/router/bridge.ts +++ b/packages/core.gbapp/services/router/bridge.ts @@ -45,7 +45,9 @@ export const getRouter = ( }; console.log('Created conversation with conversationId: ' + conversationId); - const activity = createConversationUpdateActivity(serviceUrl, conversationId); + const userId = req.body.user.id; + + const activity = createConversationUpdateActivity(serviceUrl, conversationId, userId); fetch(botUrl, { method: 'POST', body: JSON.stringify(activity), @@ -362,7 +364,7 @@ const createMessageActivity = ( return obj; }; -const createConversationUpdateActivity = (serviceUrl: string, conversationId: string): IConversationUpdateActivity => { +const createConversationUpdateActivity = (serviceUrl: string, conversationId: string, userId: any): IConversationUpdateActivity => { const activity: IConversationUpdateActivity = { type: 'conversationUpdate', channelId: 'api', @@ -371,7 +373,7 @@ const createConversationUpdateActivity = (serviceUrl: string, conversationId: st id: uuidv4.v4(), membersAdded: [], membersRemoved: [], - from: { id: 'bot', name: 'bot' } + from: { id: userId, name: 'webbot' } }; return activity; diff --git a/packages/default.gbtheme/css/App.css b/packages/default.gbtheme/css/App.css deleted file mode 100644 index 5fa8a7c5..00000000 --- a/packages/default.gbtheme/css/App.css +++ /dev/null @@ -1,171 +0,0 @@ -body { - background-color: #dadada !important; -} - -.loader { - opacity: 1 !important; - filter: opacity(100%); -} - - -.gb-quality-button-yes { - width: 54px; - text-decoration: none; - text-transform: uppercase; - background-color: green; - color: white; - padding: 2px; - cursor: pointer; - transition: 0.9s; - transition-delay: 0.3s; - border: none; -} - -.gb-quality-button-no { - width: 54px; - text-decoration: none; - text-transform: uppercase; - background-color: red; - color: white; - padding: 2px; - cursor: pointer; - transition: 0.9s; - transition-delay: 0.3s; - border: none; -} - -.gb-markdown-player-quality { - background-color: #f5e4a8; - padding: 4px; - position: absolute; - bottom: 14px; - left: -9px; - width: 100%; - border-radius: 5px; - color: #52514e; - border: 1px solid #b2a46e; - text-align: center; -} - -.media-player { - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important; -} - -.media-player-container { - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; -} - -.media-player-link { - cursor: pointer !important; -} - -.gb-bullet-player { - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important; - background: white; - height: 95%; - overflow-y: scroll; -} - -.gb-bullet-player-item { - cursor: pointer; -} - -.gb-image-player-outter-div {} - -.gb-image-player-img {} - -.gb-bullet-player-outter-div {} - -.gb-video-player-wrapper { - width: 100%; - height: 100%; -} - -.gb-video-react-player { - - position: relative; - left: 50%; - transform: translateX(-50%); -} - -body { - display: flex; -} - -.App { - min-height: 100vh; -} - -.App .body { - display: flex; - flex-direction: row; -} - -.body { - flex-basis: 12em; - /* Default value of the element before distribuing the remaing space */ - flex-grow: 0; - /* Defined the ability to groe */ - flex-shrink: 0; - /* Defines the ability to shrink */ - max-width: 12em; - order: -1; -} - -body { - margin: 0; - overflow: hidden; -} - -.media-player-container { - overflow: auto; - max-height: 90%; - font-family: "Open Sans", sans-serif; - background: white; -} - -.media-player-scroll { - height: 1500px; -} - -@media screen and (max-width: 1000px) { - .media-player-scroll h1 { - font-size: 15px; - } - .media-player-scroll p { - font-size: 12px; - } - .media-player-scroll li { - font-size: 12px; - } -} - -@media screen and (max-width: 451px) { - .media-player { - position: relative; - zoom: 90%; - height: 94% !important; - width: 95% !important; - background-repeat: no-repeat; - margin-top: 10px; - margin-left: 10px; - margin-right: -40px; - } - .gb-markdown-player-quality { - bottom: -1px; - left: -3px; - } -} - -@media screen and (min-width: 451px) { - .media-player { - position: relative; - zoom: 90%; - height: 100% !important; - width: 95% !important; - background-repeat: no-repeat; - margin-top: 10px; - margin-left: 20px; - margin-right: -40px; - } -} \ No newline at end of file diff --git a/packages/default.gbtheme/css/ChatPane.css b/packages/default.gbtheme/css/ChatPane.css deleted file mode 100644 index 42ad5bc5..00000000 --- a/packages/default.gbtheme/css/ChatPane.css +++ /dev/null @@ -1,47 +0,0 @@ -.webchat > div { - height: 100%; - width: 100%; -} - -.webchat { - background-color: white !important; - left: 57%; - right: 0%; - top: 0; - bottom: 0; - overflow: auto !important; -} - -@media screen and (max-width: 1000px) { - .webchat { - display: inline-block !important; - width: 96% !important; - height: 57% !important; - font-family: 'Open Sans', sans-serif; - font-size: 14px; - left: 50%; - top: 41%; - - position: absolute; - margin-left: -48%; - } -} - -@media screen and (min-width: 1000px) { - .webchat { - display: inline-block !important; - width: 50% !important; - font-family: 'Open Sans', sans-serif; - font-size: 14px; - top: 1% !important; - - height: 96%; - position: absolute; - right: 0; - margin-left: -8%; - position: absolute; - top: 0; - bottom: 0; - border-bottom: 4px solid #4f4f4f; - } -} diff --git a/packages/default.gbtheme/css/Content.css b/packages/default.gbtheme/css/Content.css deleted file mode 100644 index 987a3986..00000000 --- a/packages/default.gbtheme/css/Content.css +++ /dev/null @@ -1,18 +0,0 @@ -.body .container { padding: 1em;width: 100%;height: 100% } - -.body .ms-Breadcrumb { - margin-bottom: 1em; - margin-top: 0; -} - -.body .selection { - height: calc(100vh - 16.5em); - overflow-x: auto; -} - -.body .selection .selection-item { - display: flex; - padding: 0.5em; -} - -.body .selection .selection-item .name { margin-left: 1em; } diff --git a/packages/default.gbtheme/css/Footer.css b/packages/default.gbtheme/css/Footer.css deleted file mode 100644 index 3033d6d4..00000000 --- a/packages/default.gbtheme/css/Footer.css +++ /dev/null @@ -1,8 +0,0 @@ -.footer { - align-items: center; - background-color: #450a64; - display: flex; - justify-content: center; -} - -.footer-container { color: white; } \ No newline at end of file diff --git a/packages/default.gbtheme/css/GifPlayer.css b/packages/default.gbtheme/css/GifPlayer.css deleted file mode 100644 index 90ce88f4..00000000 --- a/packages/default.gbtheme/css/GifPlayer.css +++ /dev/null @@ -1,31 +0,0 @@ -@media screen and (max-width: 1000px) { - .player { - width: 93% !important; - height: 26% !important; - border: 7px solid #6c6c6c; - position: absolute; - top: 9%; - left: 50%; - margin-left: -48%; - background: url("../../../../Archive/ProjectKBot.gbai/ProjectKBot.gbtheme/images/general-bot-background.jpg"), WHITE; - background-repeat: no-repeat; - background-size: contain; - background-position: center; - } -} - -@media screen and (min-width: 1000px) { - .player { - display: inline-block; - width: 46% !important; - height: 81% !important; - border: 7px solid #6c6c6c; - background: url("../../../../Archive/ProjectKBot.gbai/ProjectKBot.gbtheme/images/general-bot-background.jpg"), WHITE; - background-repeat: no-repeat; - background-size: contain; - background-position: center; - position: absolute; - left: 1%; - top: 15%; - } -} \ No newline at end of file diff --git a/packages/default.gbtheme/css/MediaPlayer.css b/packages/default.gbtheme/css/MediaPlayer.css deleted file mode 100644 index a193c839..00000000 --- a/packages/default.gbtheme/css/MediaPlayer.css +++ /dev/null @@ -1,7 +0,0 @@ -.media { - margin-top: 20px; - height: 280px !important; - width: 200px !important; - - } - diff --git a/packages/default.gbtheme/css/NavBar.css b/packages/default.gbtheme/css/NavBar.css deleted file mode 100644 index 6aa3d64e..00000000 --- a/packages/default.gbtheme/css/NavBar.css +++ /dev/null @@ -1,22 +0,0 @@ -.NavBar { - align-items: center; - display: flex; - justify-content: space-between; - padding: 0.2em 0.5em; - border-bottom-width: 1px; - color:black; - height: 100%; -} - -/* -.logo { - padding-top: 4em; -} -*/ - -.NavBar .searchbox { width: 20em; } - -.NavBar .searchbox .ms-SearchBox { - background-color: white; - margin-bottom: 0; -} diff --git a/packages/default.gbtheme/css/SidebarMenu.css b/packages/default.gbtheme/css/SidebarMenu.css deleted file mode 100644 index 1cb82998..00000000 --- a/packages/default.gbtheme/css/SidebarMenu.css +++ /dev/null @@ -1,206 +0,0 @@ -.ms-Nav { - background: #222; - color: white; - margin-top: 20px; -} - -.ms-Nav-link { - color: white !important; - background-color: #222222 !important; -} - -.ms-Nav-link a:active { - border-right: 2px solid white; -} - -.ms-Nav-compositeLink .ms-Nav-chevronButton.ms-Nav-chevronButton--link { - background: #222222 !important; -} - -.ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton, -.ms-Nav-compositeLink.is-selected a { - padding-left: 70px !important; -} - -html[dir="ltr"] .ms-Nav-compositeLink.is-selected .ms-Nav-chevronButton:after, -html[dir="ltr"] .ms-Nav-compositeLink.is-selected a:after { - border-left: none !important; -} - -@media screen and (max-width: 419px) { - .sidebar { - display: inline-block !important; - background-color: green !important; - height: 8%; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - } - - .titleSideBarMenu { - display: none; - } - - .iconMenu { - color: #d1d1d1; - font-size: 13px; - display: inline; - margin-right: 20px; - } - .iconMenu:hover { - color: white; - } - - .IconsMenu { - position: absolute; - top: 50%; - margin-top: -23px; - height: 22px; - width: 300px; - left: 50%; - margin-left: -150px; - text-align: center; - font-family: "Open Sans", sans-serif; - } - - .iconText { - cursor: pointer; - } -} - -@media screen and (min-width: 520px) and (max-width:1000px) { - .titleSideBarMenu { - display: none; - } - .sidebar { - display: inline-block !important; - background-color: green !important; - height: 8%; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - background-image: url("../../../../Archive/ProjectKBot.gbai/ProjectKBot.gbtheme/images/bot-logo.png"); - background-position: 2px 2px; - background-repeat: no-repeat; - background-size: contain; - } - .IconsMenu { - position: absolute; - top: 50%; - margin-top: -11px; - height: 22px; - width: 416px; - left: 100px !important; - margin-left: 0px !important; - text-align: center; - font-family: "Open Sans", sans-serif; - } - .iconMenu { - color: #d1d1d1; - } - .iconMenu:hover { - color: white; - } -} - -@media screen and (min-width: 420px) and (max-width: 1000px) { - .sidebar { - display: inline-block !important; - background-color: green !important; - height: 8%; - width: 100% !important; - position: absolute; - top: 0; - left: 0; - } - .titleSideBarMenu { - display: none; - } - - .iconMenu { - color: #d1d1d1; - font-size: 14px; - display: inline; - margin-right: 20px; - } - .iconMenu:hover { - color: white; - } - - .IconsMenu { - position: absolute; - top: 50%; - margin-top: -11px; - height: 22px; - width: 416px; - left: 50%; - margin-left: -208px; - text-align: center; - font-family: "Open Sans", sans-serif; - } - - .iconText { - cursor: pointer; - } -} - - -@media screen and (min-width: 1000px) { - .sidebar { - display: inline-block !important; - background-color: green !important; - height: 13%; - position: absolute; - top: 1%; - left: 1%; - width: 46% !important; - border-right: 14px solid #19baee !important; - } - - .titleSideBarMenu { - color: white; - text-align: center; - margin-top: 10px; - } - - .iconMenu { - color: #d1d1d1; - font-size: 14px; - text-align: center; - margin-right: 20px; - margin-left: 20px; - } - .iconMenu:hover { - color: white; - } - - .IconsMenu { - width: 520px; - display: inline-flex; - position: absolute; - left: 50%; - margin-left: -249px; - bottom: 10px; - height: 22px; - font-family: "Open Sans", sans-serif; - } - - .iconText { - cursor: pointer; - } -} - -@media screen and (max-height: 684px) { - .titleSideBarMenu { - display: none; - } -} - - - -.iconText:hover { - cursor: pointer; - -} \ No newline at end of file diff --git a/packages/default.gbtheme/css/index.css b/packages/default.gbtheme/css/index.css deleted file mode 100644 index a0f01045..00000000 --- a/packages/default.gbtheme/css/index.css +++ /dev/null @@ -1,41 +0,0 @@ -body { - font-family: 'Open Sans', sans-serif; - font-size: 14px; - margin: 0; - padding: 0; -} - - - -/** Main Layout rules */ - -.App { min-height: 100vh; } - -.App { - display: flex; - flex: 1; - flex-direction: column; -} - -.App .body { - display: flex; - flex: 1; - flex-direction: row; -} - -.body .sidebar { order: -1; } - -.body .content { flex: 1; } - -.body .sidebar { - flex: 0 0 12em; - max-width: 12em; -} - -.App .header { height: 4em; } - -.App .footer { height: 4em; } - -/** Text */ - -.text-red { color: red; } \ No newline at end of file diff --git a/packages/default.gbtheme/css/webchat-style.json b/packages/default.gbtheme/css/webchat-style.json deleted file mode 100644 index a731280a..00000000 --- a/packages/default.gbtheme/css/webchat-style.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "accent": "Red", - "avatarSize": 40, - - "backgroundColor": "White", - - "bubbleBackground": "White", - "bubbleBorder": "solid 1px #E6E6E6", - "bubbleBorderRadius": 2, - "bubbleFromUserBackground": "White", - "bubbleFromUserBorder": "solid 1px #E6E6E6", - "bubbleFromUserBorderRadius": 2, - "bubbleFromUserTextColor": "Black", - "bubbleImageHeight": 240, - "bubbleMaxWidth": 480, - "bubbleMinHeight": 40, - "bubbleMinWidth": 250, - "bubbleTextColor": "Black", - - "hideSendBox": false, - - "microphoneButtonColorOnDictate": "#F33", - - "paddingRegular": 10, - "paddingWide": 20, - - "sendBoxButtonColor": "#999", - "sendBoxButtonColorOnDisabled": "#CCC", - "sendBoxButtonColorOnFocus": "#333", - "sendBoxButtonColorOnHover": "#333", - - "sendBoxHeight": 40, - - "showSpokenText": false, - - "suggestedActionBackground": "White", - "suggestedActionBorder": "solid 2px", - "suggestedActionBorderRadius": 0, - "suggestedActionDisabledBackground": "White", - "suggestedActionDisabledBorder": "solid 2px #E6E6E6", - "suggestedActionHeight": 40, - "transcriptOverlayButtonBackground": "rgba(0, 0, 0, .6)", - "transcriptOverlayButtonBackgroundOnFocus": "rgba(0, 0, 0, .8)", - "transcriptOverlayButtonBackgroundOnHover": "rgba(0, 0, 0, .8)", - "transcriptOverlayButtonColor": "White", - "transcriptOverlayButtonColorOnFocus": "White", - "transcriptOverlayButtonColorOnHover": "White", - - "videoHeight": 270 -} diff --git a/packages/default.gbtheme/images/bot-logo-chat.png b/packages/default.gbtheme/images/bot-logo-chat.png deleted file mode 100644 index eff66af3..00000000 Binary files a/packages/default.gbtheme/images/bot-logo-chat.png and /dev/null differ diff --git a/packages/default.gbtheme/images/bot-logo.png b/packages/default.gbtheme/images/bot-logo.png deleted file mode 100644 index 68f43a6c..00000000 Binary files a/packages/default.gbtheme/images/bot-logo.png and /dev/null differ diff --git a/packages/default.gbtheme/images/bot-tv-on.png b/packages/default.gbtheme/images/bot-tv-on.png deleted file mode 100644 index 3dc4d075..00000000 Binary files a/packages/default.gbtheme/images/bot-tv-on.png and /dev/null differ diff --git a/packages/default.gbtheme/images/bot-tv-on2.png b/packages/default.gbtheme/images/bot-tv-on2.png deleted file mode 100644 index 3feffa66..00000000 Binary files a/packages/default.gbtheme/images/bot-tv-on2.png and /dev/null differ diff --git a/packages/default.gbtheme/images/bot-tv.png b/packages/default.gbtheme/images/bot-tv.png deleted file mode 100644 index ddb76e8c..00000000 Binary files a/packages/default.gbtheme/images/bot-tv.png and /dev/null differ diff --git a/packages/default.gbtheme/images/chat-background.png b/packages/default.gbtheme/images/chat-background.png deleted file mode 100644 index df3a0645..00000000 Binary files a/packages/default.gbtheme/images/chat-background.png and /dev/null differ diff --git a/packages/default.gbtheme/images/chat-header-logo.png b/packages/default.gbtheme/images/chat-header-logo.png deleted file mode 100644 index 60a4b6cb..00000000 Binary files a/packages/default.gbtheme/images/chat-header-logo.png and /dev/null differ diff --git a/packages/default.gbtheme/images/chat-header.png b/packages/default.gbtheme/images/chat-header.png deleted file mode 100644 index 12375d90..00000000 Binary files a/packages/default.gbtheme/images/chat-header.png and /dev/null differ diff --git a/packages/default.gbtheme/images/general-bot-background.jpg b/packages/default.gbtheme/images/general-bot-background.jpg deleted file mode 100644 index 1dfb7e6d..00000000 Binary files a/packages/default.gbtheme/images/general-bot-background.jpg and /dev/null differ diff --git a/packages/default.gbtheme/images/logo-Pragmatismo.png b/packages/default.gbtheme/images/logo-Pragmatismo.png deleted file mode 100644 index 27c055cf..00000000 Binary files a/packages/default.gbtheme/images/logo-Pragmatismo.png and /dev/null differ diff --git a/packages/default.gbtheme/images/logo.jpg b/packages/default.gbtheme/images/logo.jpg deleted file mode 100644 index 80af5455..00000000 Binary files a/packages/default.gbtheme/images/logo.jpg and /dev/null differ diff --git a/packages/default.gbtheme/images/logo.png b/packages/default.gbtheme/images/logo.png deleted file mode 100644 index 8677bb92..00000000 Binary files a/packages/default.gbtheme/images/logo.png and /dev/null differ diff --git a/packages/default.gbtheme/images/pragmatismo-logo.png b/packages/default.gbtheme/images/pragmatismo-logo.png deleted file mode 100644 index af20dea8..00000000 Binary files a/packages/default.gbtheme/images/pragmatismo-logo.png and /dev/null differ diff --git a/packages/default.gbtheme/images/pragmatismo-powered-by.png b/packages/default.gbtheme/images/pragmatismo-powered-by.png deleted file mode 100644 index ed6242f4..00000000 Binary files a/packages/default.gbtheme/images/pragmatismo-powered-by.png and /dev/null differ diff --git a/packages/default.gbtheme/images/projector-background.jpg b/packages/default.gbtheme/images/projector-background.jpg deleted file mode 100644 index 8b70a5de..00000000 Binary files a/packages/default.gbtheme/images/projector-background.jpg and /dev/null differ diff --git a/packages/default.gbtheme/images/projetor_tela.png b/packages/default.gbtheme/images/projetor_tela.png deleted file mode 100644 index b984ff5a..00000000 Binary files a/packages/default.gbtheme/images/projetor_tela.png and /dev/null differ diff --git a/packages/default.gbtheme/images/screen.png b/packages/default.gbtheme/images/screen.png deleted file mode 100644 index 7ecac2d8..00000000 Binary files a/packages/default.gbtheme/images/screen.png and /dev/null differ diff --git a/packages/default.gbtheme/images/tela-01.png b/packages/default.gbtheme/images/tela-01.png deleted file mode 100644 index 2b596533..00000000 Binary files a/packages/default.gbtheme/images/tela-01.png and /dev/null differ diff --git a/packages/default.gbtheme/package.json b/packages/default.gbtheme/package.json deleted file mode 100644 index 729a0ad9..00000000 --- a/packages/default.gbtheme/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": "1.0.0", - "description": "Default General Bots theme.", - "authors": "pragmatismo.io", - "license": "AGPL-3.0" - -} \ No newline at end of file diff --git a/packages/default.gbui/public/index.html b/packages/default.gbui/public/index.html index 193958a5..4fda8073 100644 --- a/packages/default.gbui/public/index.html +++ b/packages/default.gbui/public/index.html @@ -31,32 +31,15 @@ --> - +
- - - - - - - - - - - + + -