This repository has been archived by the owner on Dec 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 468af3f
Showing
18 changed files
with
2,895 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*~ | ||
/build | ||
/dist | ||
/plugin.dylib | ||
/plugin.dll | ||
/plugin.so | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
- The VCV plugin template used was provided under CC-0. | ||
|
||
--- | ||
|
||
Copyright 2019, Joshua A. Cearley | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# If RACK_DIR is not defined when calling the Makefile, default to two directories above | ||
RACK_DIR ?= ../.. | ||
|
||
# Must follow the format in the Naming section of | ||
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html | ||
SLUG = Skylights | ||
|
||
# Must follow the format in the Versioning section of | ||
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html | ||
VERSION = 0.6.0 | ||
|
||
# FLAGS will be passed to both the C and C++ compiler | ||
FLAGS += | ||
CFLAGS += | ||
CXXFLAGS += | ||
|
||
# Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path. | ||
# Static libraries are fine. | ||
LDFLAGS += | ||
|
||
# Add .cpp and .c files to the build | ||
SOURCES += $(wildcard src/*.cc) | ||
|
||
# Add files to the ZIP package when running `make dist` | ||
# The compiled plugin is automatically added. | ||
DISTRIBUTABLES += $(wildcard LICENSE*) res | ||
|
||
# Include the VCV Rack plugin Makefile framework | ||
include $(RACK_DIR)/plugin.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
* Modules | ||
|
||
** What Note? | ||
The =What Note?= is a CV tuner with a digital display. It shows the | ||
semitone, octave, cents and absolute voltage of the signal which | ||
enters its port. | ||
|
||
* Licenses | ||
Skylights itself is available under the BSD license. | ||
|
||
Skylights is based on the Rack plugin template, which was provided under CC-0. |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.