Skip to content

Commit

Permalink
Prepare Beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
david-c14 committed Sep 6, 2018
1 parent 2e8cd7c commit f02d99a
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 94 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
SLUG = SubmarineUtility

# Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
VERSION = 0.6.0Beta
VERSION = 0.6.0Beta2

# FLAGS will be passed to both the C and C++ compiler
FLAGS +=
Expand Down
84 changes: 0 additions & 84 deletions src/ME.txt

This file was deleted.

3 changes: 0 additions & 3 deletions src/ModBrowser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,3 @@ struct Blank5 : ModuleWidget {
};

Model *modelModBrowser = Model::create<Module, ModBrowserWidget>("Submarine (Utilities)", "ModBrowser", "Module Browser", UTILITY_TAG);
Model *modelBlank2 = Model::create<Module, Blank2>("Submarine (Utilities)", "Blank2", "2U Blanking Plate", BLANK_TAG);
Model *modelBlank3 = Model::create<Module, Blank3>("Submarine (Utilities)", "Blank3", "3U Blanking Plate", BLANK_TAG);
Model *modelBlank5 = Model::create<Module, Blank5>("Submarine (Utilities)", "Blank5", "5U Blanking Plate", BLANK_TAG);
3 changes: 0 additions & 3 deletions src/SubmarineUtility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ void init(rack::Plugin *p) {

// Add all Models defined throughout the plugin
p->addModel(modelModBrowser);
p->addModel(modelBlank2);
p->addModel(modelBlank3);
p->addModel(modelBlank5);

// Any other plugin initialization may go here.
// As an alternative, consider lazy-loading assets and lookup tables when your module is created to reduce startup times of Rack.
Expand Down
3 changes: 0 additions & 3 deletions src/SubmarineUtility.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ extern Plugin *plugin;

// Forward-declare each Model, defined in each module source file
extern Model *modelModBrowser;
extern Model *modelBlank2;
extern Model *modelBlank3;
extern Model *modelBlank5;

0 comments on commit f02d99a

Please sign in to comment.