Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing rdf type to custom parameter units #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions bundles/mod-mda-Combo.lv2/Combo.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ mda:Combo
lv2:minimum -100 ;
lv2:maximum 100 ;
units:unit [
a units:Unit ;
rdfs:label "Soft/Hard" ;
units:symbol "S <> H" ;
units:render "%f Sh"
Expand Down
2 changes: 2 additions & 0 deletions bundles/mod-mda-DX10.lv2/DX10.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ N.B. The carrier operator has a fixed coarse tuning ratio of 2.
lv2:minimum 0.0 ;
lv2:maximum 40.0 ;
units:unit [
a units:Unit ;
rdfs:label "ratio" ;
units:symbol "ratio" ;
units:render "%f" ;
Expand All @@ -115,6 +116,7 @@ N.B. The carrier operator has a fixed coarse tuning ratio of 2.
lv2:minimum 0.001 ;
lv2:maximum 0.750 ;
units:unit [
a units:Unit ;
rdfs:label "ratio" ;
units:symbol "ratio" ;
units:render "%f" ;
Expand Down
19 changes: 11 additions & 8 deletions bundles/mod-mda-Degrade.lv2/Degrade.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,10 @@ Modeled by MDA
lv2:minimum 4 ;
lv2:maximum 16 ;
units:unit [
rdfs:label "bits" ;
units:symbol "bit" ;
units:render "%f bits"
a units:Unit ;
rdfs:label "bits" ;
units:symbol "bit" ;
units:render "%f bits"
] ;
rdfs:comment """Bit depth (typically 8 or below for "telephone" quality)"""
] , [
Expand All @@ -85,9 +86,10 @@ Modeled by MDA
lv2:minimum 4800 ;
lv2:maximum 48000 ;
units:unit [
rdfs:label "ssh" ;
units:symbol "s_sh" ;
units:render "%f Hz"
a units:Unit ;
rdfs:label "ssh" ;
units:symbol "s_sh" ;
units:render "%f Hz"
] ;
rdfs:comment "Sample Rate (turn control to left or right for different sound characters)"
] , [
Expand Down Expand Up @@ -130,8 +132,9 @@ Modeled by MDA
lv2:minimum 0.0 ;
lv2:maximum 1.0 ;
units:unit [
rdfs:label "nonlin" ;
units:symbol "nonlin" ;
a units:Unit ;
rdfs:label "nonlin" ;
units:symbol "nonlin" ;
] ;
rdfs:comment """Additional harmonic distortion "thickening" (turn control to left or right for different sound characters)"""
] , [
Expand Down
1 change: 1 addition & 0 deletions bundles/mod-mda-Dynamics.lv2/Dynamics.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ mda:Dynamics
lv2:minimum -17.0 ;
lv2:maximum 0.5 ;
units:unit [
a units:Unit ;
rdfs:label "ratio" ;
units:symbol ":1" ;
units:render "%f" ;
Expand Down