From 5c862a6e91a555569503832b7734bbcabc092ccc Mon Sep 17 00:00:00 2001 From: Sorob Raissi Date: Sat, 1 Jun 2024 20:21:59 -0700 Subject: [PATCH] HBAI-247 Fix incorrect app shortcut (#53) --- README.md | 6 +++--- backends/main.py | 2 +- inno-setup-config.iss | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 690f6b0..30b9fa1 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ Launch the desktop app locally, then navigate your browser to any web app that s - ✅ Search: Using a vector database and Llama Index to make semantic or similarity queries - ✅ Build custom bots from a mix of LLM's, software configs and prompt configs - ✅ Chats: Save/Retrieve chat message history - - - - ❌ Auto Agents - ❌ Teams of Agents - ❌ Multi-Chat - ❌ Long-term memory across conversations - ❌ Production/Cloud ready: This project is currently under active development, there may be bugs + + + ## Getting Started diff --git a/backends/main.py b/backends/main.py index 28919af..6c03200 100644 --- a/backends/main.py +++ b/backends/main.py @@ -27,7 +27,7 @@ server_info = None -api_version = "0.5.3" +api_version = "0.6.0" SERVER_PORT = 8008 # Display where the admin can use the web UI openbrew_studio_url = "https://studio.openbrewai.com" diff --git a/inno-setup-config.iss b/inno-setup-config.iss index 53b09ea..e63d942 100644 --- a/inno-setup-config.iss +++ b/inno-setup-config.iss @@ -2,11 +2,11 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Obrew Server" -#define MyAppVersion "0.5.0" +#define MyAppVersion "0.6.0" #define MyAppPublisher "OpenBrew Ai" #define MyAppURL "https://www.openbrewai.com/" #define MyAppExeName "Obrew-Server.exe" -#define MySetupExeName "ObrewServer.Setup.exe" +#define MySetupExeName "ObrewServer.WIN.Setup.exe" [Setup] ; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. @@ -24,7 +24,7 @@ DisableProgramGroupPage=yes ; Uncomment the following line to run in non administrative install mode (install for current user only.) ;PrivilegesRequired=lowest OutputDir=C:\Project Files\brain-dump-ai\backend-homebrew-ai\installer -OutputBaseFilename=ObrewServer.Setup +OutputBaseFilename=ObrewServer.WIN.Setup Compression=lzma SolidCompression=yes WizardStyle=modern @@ -41,8 +41,8 @@ Source: "C:\Project Files\brain-dump-ai\backend-homebrew-ai\output\Obrew-Server\ ; NOTE: Don't use "Flags: ignoreversion" on any shared system files [Icons] -Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MySetupExeName}" -Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MySetupExeName}"; Tasks: desktopicon +Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" +Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon [Run] Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent