Skip to content

Commit

Permalink
Add screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
kmturley committed Jul 7, 2024
1 parent 9ab41ba commit 76b7b0c
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 20 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

Common methods package shared across StudioRack CLI, app and website for handling installing DAW VST plugin dependencies.

![StudioRack Core](/screenshot.jpg)

## Features

- admin - Standalone script for running plugin installations with admin privileges
- api - Helper methods for getting data via web requests
- config- Reading and writing configuration settings
Expand All @@ -13,6 +17,8 @@ Common methods package shared across StudioRack CLI, app and website for handlin
- tool - Utilities and tools for validating plugins
- utils - Other helper methods and string utilities

## Installation

To install the common package, run the command:

npm install @studiorack/core
Expand Down
Binary file added screenshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 20 additions & 20 deletions tests/plugin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,6 @@ const PLUGIN: PluginVersion = {
tags: ['Effect', 'Delay', 'Vocoder'],
date: '2020-12-20T08:00:00.000Z',
files: {
audio: {
name: 'mda.flac',
size: 127392,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.flac',
},
image: {
name: 'mda.jpg',
size: 104156,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.jpg',
},
linux: {
name: 'mda-linux.zip',
size: 70938,
Expand All @@ -73,6 +63,16 @@ const PLUGIN: PluginVersion = {
size: 1247768,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda-win.zip',
},
audio: {
name: 'mda.flac',
size: 127392,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.flac',
},
image: {
name: 'mda.jpg',
size: 104156,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.jpg',
},
},
license: 'gpl-3.0',
id: 'studiorack/mda',
Expand All @@ -86,16 +86,6 @@ const PLUGIN_LOCAL: PluginVersionLocal = {
tags: ['Effect', 'Delay', 'Vocoder'],
date: '2020-12-20T08:00:00.000Z',
files: {
audio: {
name: 'mda.flac',
size: 127392,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.flac',
},
image: {
name: 'mda.jpg',
size: 104156,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.jpg',
},
linux: {
name: 'mda-linux.zip',
size: 70938,
Expand All @@ -111,6 +101,16 @@ const PLUGIN_LOCAL: PluginVersionLocal = {
size: 1247768,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda-win.zip',
},
audio: {
name: 'mda.flac',
size: 127392,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.flac',
},
image: {
name: 'mda.jpg',
size: 104156,
url: 'https://github.com/studiorack/mda/releases/download/v1.0.4/mda.jpg',
},
},
license: 'gpl-3.0',
id: 'studiorack/mda',
Expand Down

0 comments on commit 76b7b0c

Please sign in to comment.