-
Notifications
You must be signed in to change notification settings - Fork 21
/
installer.iss
35 lines (31 loc) · 1.87 KB
/
installer.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[Setup]
AppName=Ollama Copilot
AppVerName=Ollama Copilot v1.0.6
AppPublisher=TAGENIGMA LLC
AppPublisherURL=https://tagenigma.com
AppSupportURL=https://tagenigma.com
AppUpdatesURL=https://tagenigma.com
DefaultDirName={localappdata}\TAGENIGMA\OllamaCopilot
DefaultGroupName=TAGENIGMA\Ollama Copilot
OutputBaseFilename=OllamaCopilotSetup_v1.0.6
SetupIconFile=favicon.ico
UninstallDisplayIcon=favicon.ico
Compression=lzma
SolidCompression=yes
InfoBeforeFile=eula.txt
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Files]
Source: "bin\Release\*"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; Excludes: "*.pdb;*.history"; CopyMode: alwaysoverwrite
Source: "Pyttsx3Server.py"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; CopyMode: alwaysoverwrite
Source: "start_whisper_server.sh"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; CopyMode: alwaysoverwrite
Source: "StartPyttsx3Server.cmd"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; CopyMode: alwaysoverwrite
Source: "StartTesseractOCRServer.cmd"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; CopyMode: alwaysoverwrite
Source: "TesseractOCRServer.py"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; CopyMode: alwaysoverwrite
Source: "WhisperServer.py"; DestDir: "{localappdata}\TAGENIGMA\OllamaCopilot"; CopyMode: alwaysoverwrite
[Icons]
Name: "{group}\Ollama Copilot"; Filename: "{localappdata}\TAGENIGMA\OllamaCopilot\WinForm_Ollama_Copilot.exe"; WorkingDir: "{app}";
Name: "{commondesktop}\Ollama Copilot"; Filename: "{localappdata}\TAGENIGMA\OllamaCopilot\WinForm_Ollama_Copilot.exe"; WorkingDir: "{app}";
Name: "{group}\Uninstall Ollama Copilot"; Filename: "{uninstallexe}"
[Run]
Filename: "{localappdata}\TAGENIGMA\OllamaCopilot\WinForm_Ollama_Copilot.exe"; Description: "Launch Ollama Copilot"; Flags: shellexec postinstall skipifsilent runascurrentuser; WorkingDir: "{localappdata}\TAGENIGMA\OllamaCopilot"