Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ function(sono_add_custom_plugin_target target_name product_name formats is_instr
endfunction()

# most of the targets
sono_add_custom_plugin_target(SonoBus AmunsonAudio "${FormatsToBuild}" FALSE "NBus")
sono_add_custom_plugin_target(SonoBus Co-Labs "${FormatsToBuild}" FALSE "NBus")

# Mobile targets
#sono_add_custom_plugin_target(SonoBusMobile "AUv3 Standalone" FALSE "NBus")
Expand Down
2 changes: 1 addition & 1 deletion Source/AutoUpdater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void LatestVersionCheckerAndUpdater::run()
if (showAlertWindows)
AlertWindow::showMessageBoxAsync (AlertWindow::InfoIcon,
"No New Version Available",
"Your SonoBus version is up to date.");
"Your Co-Labs version is up to date.");
return;
}

Expand Down
Binary file added installer/win/Output/CoLabsSetup_x64.exe
Binary file not shown.
48 changes: 48 additions & 0 deletions installer/win/win64_setup.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
[Setup]
AppName=Co-Labs
AppVersion=1.0
WizardStyle=modern
DefaultDirName={autopf}\AmunsonAudio
DefaultGroupName=AmunsonAudio
UninstallDisplayIcon={app}\Co-Labs.exe
Compression=lzma2
SolidCompression=yes
OutputBaseFilename=CoLabsSetup_x64
ArchitecturesAllowed=x64
ArchitecturesInstallIn64BitMode=x64

[Files]
Source: "..\..\build\SonoBus_artefacts\Release\Standalone\Co-Labs.exe"; DestDir: "{app}";
Source: "..\..\build\SonoBus_artefacts\Release\VST3\Co-Labs.vst3\Contents\x86_64-win\Co-Labs.vst3"; DestDir: "{app}"; Check: InstallVSTFile;

[Icons]
Name: "{group}\Co-Labs"; Filename: "{app}\Co-Labs.exe"

[Code]
var
InstallVSTCheckBox: TNewCheckBox;

procedure InitializeWizard;
var
LabelFolder: TLabel;
MainPage: TWizardPage;
begin
MainPage := CreateCustomPage(wpWelcome, '', '');
LabelFolder := TLabel.Create(MainPage);
LabelFolder.Parent := MainPage.Surface;
LabelFolder.Top := 48;
LabelFolder.Left := 15;
LabelFolder.Caption := 'Installer will install standalone version of Co-Labs app. Check checkbox below to install in VST3 format.'

InstallVSTCheckBox := TNewCheckBox.Create(MainPage);
InstallVSTCheckBox.Parent := MainPage.Surface;
InstallVSTCheckBox.Top := LabelFolder.Top + LabelFolder.Height + 8;
InstallVSTCheckBox.Left := LabelFolder.Left;
InstallVSTCheckBox.Width := LabelFolder.Width;
InstallVSTCheckBox.Caption := 'Install also in VST3 format';
end;

function InstallVSTFile: Boolean;
begin
Result := InstallVSTCheckBox.Checked;
end;