mirror of
https://codeberg.org/armin/justasample.git
synced 2026-09-01 04:10:48 +02:00
init
This commit is contained in:
commit
d21bc831e1
178 changed files with 24136 additions and 0 deletions
10
Releases/Linux/install-dependencies.sh
Normal file
10
Releases/Linux/install-dependencies.sh
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y ninja-build \
|
||||
libasound2-dev libjack-jackd2-dev \
|
||||
ladspa-sdk \
|
||||
libcurl4-openssl-dev \
|
||||
libfreetype-dev libfontconfig1-dev \
|
||||
libx11-dev libxcomposite-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev \
|
||||
libwebkit2gtk-4.1-dev \
|
||||
libglu1-mesa-dev mesa-common-dev
|
||||
BIN
Releases/Windows/icon.ico
Normal file
BIN
Releases/Windows/icon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 111 KiB |
66
Releases/Windows/installer_setup.iss
Normal file
66
Releases/Windows/installer_setup.iss
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
; Script generated by the Inno Setup Script Wizard.
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "Just a Sample"
|
||||
#define MyAppPublisher "Binyamin Friedman"
|
||||
#define MyAppURL "https://github.com/BOBONA/Just-a-Sample/"
|
||||
#define MyAppRepo "https://github.com/BOBONA/Just-a-Sample/"
|
||||
|
||||
[Setup]
|
||||
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
|
||||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||
AppId={{9D8B78BA-8ABA-44F6-8473-1FFFF2D87F29}
|
||||
AppName={#MyAppName}
|
||||
AppVersion={#MyAppVersion}
|
||||
VersionInfoVersion={#MyAppVersion}
|
||||
;AppVerName={#MyAppName} {#MyAppVersion}
|
||||
AppReadmeFile={#MyAppRepo}
|
||||
AppPublisher={#MyAppPublisher}
|
||||
AppPublisherURL={#MyAppURL}
|
||||
AppSupportURL={#MyAppURL}
|
||||
AppUpdatesURL={#MyAppURL}
|
||||
DefaultDirName={commoncf64}\VST3\{#MyAppName}
|
||||
DefaultGroupName={#MyAppName}
|
||||
OutputBaseFilename=Install Just a Sample
|
||||
AllowNoIcons=yes
|
||||
LicenseFile={#SourceDir}\LICENSE
|
||||
; Uncomment the following line to run in non administrative install mode (install for current user only.)
|
||||
;PrivilegesRequired=lowest
|
||||
;PrivilegesRequiredOverridesAllowed=dialog
|
||||
Compression=none
|
||||
SolidCompression=no
|
||||
CreateUninstallRegKey=yes
|
||||
WizardStyle=modern
|
||||
SetupIconFile=icon.ico
|
||||
UninstallDisplayIcon={uninstallexe}
|
||||
UninstallFilesDir={app}
|
||||
WizardImageFile=plugin_full.bmp
|
||||
DisableWelcomePage=no
|
||||
DisableReadyPage=yes
|
||||
|
||||
[Languages]
|
||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||
|
||||
[Files]
|
||||
Source: "{#SourceDir}\out\build\windows\JustASample_artefacts\Release\VST3\Just a Sample.vst3\*"; DestDir: "{app}\Just a Sample.vst3"; Flags: ignoreversion recursesubdirs
|
||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||
|
||||
[Run]
|
||||
Filename: "attrib"; Parameters: "+S +R ""{app}\Just a Sample.vst3"""; Flags: runhidden
|
||||
Filename: "attrib"; Parameters: "+S +H ""{app}\Just a Sample.vst3\desktop.ini"""; Flags: runhidden
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
|
||||
|
||||
[Messages]
|
||||
WelcomeLabel1=Welcome to [name]
|
||||
WelcomeLabel2=This will install [name] onto your computer. Just a Sample is a single .vst3 file, to be used through your DAW of choice.
|
||||
LicenseLabel=Just a Sample is open-source and uses the MIT license agreement.
|
||||
LicenseLabel3=Please read the following license agreement. You must accept the terms of this agreement before continuing with the installation.
|
||||
SelectDirDesc=Where should [name] be installed? If you don't know what this is, press next.
|
||||
SelectDirLabel3=We will install [name] into the default folder.
|
||||
FinishedHeadingLabel=Installation Completed
|
||||
FinishedLabelNoIcons=Just a Sample has been installed on your computer. Make sure to include its path in your DAW's search list if necessary.
|
||||
FinishedLabel=Just a Sample has been installed on your computer. Make sure to include its path in your DAW's search list if necessary.
|
||||
ClickFinish=Click Finish to exit.
|
||||
|
||||
BIN
Releases/Windows/plugin_full.bmp
Normal file
BIN
Releases/Windows/plugin_full.bmp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.7 MiB |
14
Releases/macOS/dmg_settings.py
Normal file
14
Releases/macOS/dmg_settings.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
volume_name = "Install Just a Sample"
|
||||
icon = "Releases/macOS/icon.icns"
|
||||
format = "UDBZ"
|
||||
|
||||
window_rect = ((0, 0), (600, 380))
|
||||
background = "#fdf6c3"
|
||||
icon_size = 200
|
||||
text_size = 16
|
||||
|
||||
files = ["dmg_root/Just a Sample.pkg"]
|
||||
|
||||
icon_locations = {"Just a Sample.pkg": (300, 0)}
|
||||
|
||||
hide_extensions = ["Just a Sample.pkg"]
|
||||
BIN
Releases/macOS/icon.icns
Normal file
BIN
Releases/macOS/icon.icns
Normal file
Binary file not shown.
BIN
Releases/macOS/icon.png
Normal file
BIN
Releases/macOS/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 105 KiB |
BIN
Releases/macOS/installer_icon.png
Normal file
BIN
Releases/macOS/installer_icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 284 KiB |
Loading…
Add table
Add a link
Reference in a new issue