Skip to content

Commit daa5878

Browse files
committed
objects: adjust categories a bit
1 parent fb09a52 commit daa5878

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/Advanced/Synth/Wavecycle.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ struct Wavecycle
1515
public:
1616
halp_meta(name, "Wavecycle")
1717
halp_meta(c_name, "wavecycle")
18-
halp_meta(category, "Audio/Generator")
18+
halp_meta(category, "Audio/Generators")
1919
halp_meta(description, "Generate audio cycles from hand-drawn waveshapes")
2020
halp_meta(manual_url, "https://ossia.io/score-docs/processes/wavecycle.html")
2121
halp_meta(author, "Jean-Michaël Celerier")

examples/Advanced/Utilities/TimecodeSynchronizer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct TimecodeSynchronizer
1818
{
1919
halp_meta(name, "Timecode Synchronizer")
2020
halp_meta(c_name, "smooth_timecode_synchronizer")
21-
halp_meta(category, "Control/Timing")
21+
halp_meta(category, "Timing/Control")
2222
halp_meta(author, "Jean-Michaël Celerier")
2323
halp_meta(
2424
description,

examples/Gpu/ArrayToBuffer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ struct ArrayToBuffer
1414
public:
1515
halp_meta(name, "Array to buffer")
1616
halp_meta(c_name, "avnd_arraytobuffer")
17-
halp_meta(category, "Visuals")
17+
halp_meta(category, "Visuals/Utilities")
1818
halp_meta(description, "CPU buffer -> GPU buffer")
1919
halp_meta(manual_url, "https://ossia.io/score-docs/processes/array_to_buffer.html")
2020
halp_meta(author, "ossia score")

examples/Gpu/BufferToArray.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ struct BufferToArray
1313
public:
1414
halp_meta(name, "Buffer to array")
1515
halp_meta(c_name, "avnd_buffertoarray")
16-
halp_meta(category, "Visuals")
16+
halp_meta(category, "Visuals/Utilities")
1717
halp_meta(description, "GPU buffer -> CPU buffer")
1818
halp_meta(manual_url, "https://ossia.io/score-docs/processes/buffer_to_array.html")
1919
halp_meta(author, "ossia score")

examples/Midi/MidiSyncInput.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ struct MIDISyncIn
2626
{
2727
halp_meta(name, "MIDI Sync In")
2828
halp_meta(c_name, "midi_sync_input")
29-
halp_meta(category, "Midi/Timing")
29+
halp_meta(category, "Timing/Midi")
3030
halp_meta(author, "ossia team")
3131
halp_meta(description, "Extract timecode from MIDI Time Code messages")
3232
halp_meta(manual_url, "https://ossia.io/score-docs/processes/midi-timecode-input.html")

examples/Raw/TimingSplitter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ struct TimingSplitter
99
static consteval auto name() { return "Beat metronome"; }
1010
static consteval auto c_name() { return "avnd_timing_splitter"; }
1111
static consteval auto author() { return "Jean-Michaël Celerier"; }
12-
static consteval auto category() { return "Control/Timing"; }
12+
static consteval auto category() { return "Timing/Control"; }
1313
static consteval auto manual_url()
1414
{
1515
return "https://ossia.io/score-docs/processes/"

0 commit comments

Comments
 (0)