Skip to content
Merged
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
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,32 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Import APP Certificates
uses: apple-actions/import-codesign-certs@v2
with:
keychain-password : ${{ secrets.MACOS_KEYCHAIN_PASS }}
p12-file-base64: ${{ secrets.MACOS_APP_DEV_P12 }}
p12-password: ${{ secrets.MACOS_APP_DEV_PASS }}

- name: Import INST Certificates
uses: apple-actions/import-codesign-certs@v2
with:
keychain-password : ${{ secrets.MACOS_KEYCHAIN_PASS }}
create-keychain : false
p12-file-base64: ${{ secrets.MACOS_INSTALLER_DEV_P12 }}
p12-password: ${{ secrets.MACOS_INSTALLER_DEV_PASS }}

- uses: distrho/dpf-makefile-action@v1
env:
MACOS_PKG_NAME: "WSTD-EQ"
MACOS_PKG_LICENSE_FILE: "${{ github.workspace }}/LICENSE"
MACOS_PKG_WELCOME_TXT: "${{ github.workspace }}/welcome.txt"
MACOS_APP_DEV_ID: ${{ secrets.MACOS_APP_DEV_ID }}
MACOS_INSTALLER_DEV_ID: ${{ secrets.MACOS_INSTALLER_DEV_ID }}
MACOS_NOTARIZATION_USER: ${{ secrets.MACOS_NOTARIZATION_USER }}
MACOS_NOTARIZATION_PASS: ${{ secrets.MACOS_NOTARIZATION_PASS }}
MACOS_NOTARIZATION_TEAM: ${{ secrets.MACOS_NOTARIZATION_TEAM }}
with:
target: ${{ matrix.target }}
hvcc: True
Expand Down
4 changes: 4 additions & 0 deletions WSTD_EQ.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
"midi_input": 0,
"midi_output": 0,
"version": "1, 0, 0",
"maker": "Wasted Audio",
"brand_id": "Wstd",
"brand_id_no_vst3": true,
"unique_id": "WsEQ",
"license": "GPL-3.0-or-later",
"homepage": "https://wasted.audio/software/wstd_eq",
"plugin_uri": "https://wasted.audio/software/wstd_eq",
Expand Down
7 changes: 7 additions & 0 deletions welcome.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@name@

Our characteristic 3-band EQ plugin that adds a little something to your sound. If you are looking for a neutral and transparent sounding EQ, then this plugin is not for you!

Its simple design encourages the user to listen and find their own sweet spots. Each band has ±15dB of adjustment range, with full mute on the far left. Further more, the mid band frequency is tuned to add extra resonance at its extremities. This adds some crunch and makes this band stand out just a little more.

Like all our other software this plugin is without DRM and Opensource.
Loading