Skip to content

Commit

Permalink
HBAI-247 Fix incorrect app shortcut (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
dieharders authored Jun 2, 2024
1 parent bb64baa commit 5c862a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<!-- - ❌ Cloud platform (subscription, host your infra with us) -->
<!-- - ❌ Enterprise service (subscription & paid support, bring your own infra) -->
<!-- - ❌ UI generation -->
- ❌ 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
<!-- - ❌ Cloud platform (subscription, host your infra with us) -->
<!-- - ❌ Enterprise service (subscription & paid support, bring your own infra) -->
<!-- - ❌ UI generation -->

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion backends/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions inno-setup-config.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 5c862a6

Please sign in to comment.