Skip to content

Commit 056e631

Browse files
committed
processes: rework categories
1 parent 3e83ba7 commit 056e631

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ avnd_score_plugin_add(
3737
matrix/matrixModel.cpp
3838
matrix/matrixUi.hpp
3939
TARGET matrix
40-
MAIN_CLASS matrix
40+
MAIN_CLASS Matrix
4141
NAMESPACE spat
4242
)
4343

GBAP/GBAPModel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class GBAP
1616
{
1717
public:
1818
halp_meta(name, "GBAP")
19-
halp_meta(category, "Control/Spatialization")
19+
halp_meta(category, "Spatialization")
2020
halp_meta(c_name, "GBAP")
2121
halp_meta(uuid, "81DB0C30-175B-422E-8C5F-87569D50548E")
2222
halp_meta(

MultiCursor/MultiCursorModel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class MultiCursorManager
1616
public:
1717
halp_meta(name, "Multi-Cursor Manager")
1818
halp_meta(c_name, "multicursormanager")
19-
halp_meta(category, "Control/Spatialization")
19+
halp_meta(category, "Spatialization")
2020
halp_meta(description, "Can generate a position table")
2121
halp_meta(manual_url, "https://ossia.io/score-docs/processes/multicursor.html")
2222
halp_meta(author, "Ahmed El Moudden, Société des Arts Technologiques")

Nodes/NodesModel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Nodes
2020
{
2121
public:
2222
halp_meta(name, "Nodes")
23-
halp_meta(category, "Control/Spatialization")
23+
halp_meta(category, "Spatialization")
2424
halp_meta(c_name, "Nodes")
2525
halp_meta(uuid, "9e7f5d2a-b3c4-4e8a-9f1d-6a2b3c4d5e6f")
2626
halp_meta(author, "ossia score")

PathGenerator/PathGeneratorModel.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class PathGenerator {
1919
public:
2020
halp_meta(name, "PathGenerator")
2121
halp_meta(c_name, "pathgenerator")
22-
halp_meta(category, "Control/Spatialization")
22+
halp_meta(category, "Spatialization")
2323
halp_meta(description, "This process generates points that move dynamically along a given trajectory.")
2424
halp_meta(manual_url, "https://ossia.io/score-docs/processes/pathgenerator.html")
2525
halp_meta(author, "Ahmed El Moudden, Société des Arts Technologiques")

matrix/matrixModel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace spat
44
{
55

6-
void matrix::operator()(halp::tick t)
6+
void Matrix::operator()(halp::tick t)
77
{
88
// Update the output audio channel count if this changed
99
int out_channels = inputs.outs.value + inputs.offs.value;

matrix/matrixModel.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
namespace spat
1010
{
1111

12-
class matrix
12+
class Matrix
1313
{
1414
public:
15-
halp_meta(name, "matrix")
15+
halp_meta(name, "Matrix spatialization")
1616
halp_meta(category, "Audio/Spatialization")
1717
halp_meta(c_name, "matrix")
1818
halp_meta(uuid, "359C787C-E600-48E5-A6E6-AA83E94FCDF4")

0 commit comments

Comments
 (0)