diff options
author | Richard <q@1bpm.net> | 2025-04-16 01:04:34 +0100 |
---|---|---|
committer | Richard <q@1bpm.net> | 2025-04-16 01:04:34 +0100 |
commit | bda3a99797df33f8bff48960318b14a0d81c52a3 (patch) | |
tree | ef28024823751abd4cbcb73093bb18b338628161 /site/app/twirl/transform.js | |
parent | 9fbf91db06a6d4f4b5cd8bb45389a731bb86bf22 (diff) | |
download | apps.csound.1bpm.net-bda3a99797df33f8bff48960318b14a0d81c52a3.tar.gz apps.csound.1bpm.net-bda3a99797df33f8bff48960318b14a0d81c52a3.tar.bz2 apps.csound.1bpm.net-bda3a99797df33f8bff48960318b14a0d81c52a3.zip |
Diffstat (limited to 'site/app/twirl/transform.js')
-rw-r--r-- | site/app/twirl/transform.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/site/app/twirl/transform.js b/site/app/twirl/transform.js index 1feff51..2d89d8c 100644 --- a/site/app/twirl/transform.js +++ b/site/app/twirl/transform.js @@ -1011,11 +1011,11 @@ twirl.transform.Transform = function(options) { }
}
groupParameters = [
- {name: "Apply mode", channel: "applymode", absolutechannel: true, description: "Apply mode", automatable: true, options: ["Replace", "Mix", "Modulate", "Demodulate", "Filter"], dfault: 0, conditions: pdef.conditions},
+ {name: "Apply mode", channel: "applymode", absolutechannel: true, description: "Apply mode", automatable: true, options: ["Replace", "Mix", "Modulate", "Demodulate", "Filter mix"], dfault: 0, conditions: pdef.conditions},
{name: "Dry mix", description: "Original signal amplitude", channel: "applymodedry", absolutechannel: true, conditions: conditionsMix, min: 0, max: 1, dfault: 1},
{name: "Wet mix", description: "Transformed signal amplitude", channel: "applymodewet", absolutechannel: true, conditions: conditionsMix, min: 0, max: 1, dfault: 1},
- {name: "Minimum frequency", description: "Minimum frequency to transform", channel: "applymodedry", absolutechannel: true, conditions: conditionsFilter, min: 20, max: 44100, dfault: 500},
- {name: "Maximum frequency", description: "Maximum frequency to transform", channel: "applymodedry", absolutechannel: true, conditions: conditionsFilter, min: 20, max: 44100, dfault: 2000}
+ {name: "Minimum frequency", description: "Minimum frequency to transform", channel: "applymodehpf", absolutechannel: true, conditions: conditionsFilter, min: 20, max: 22000, dfault: 500},
+ {name: "Maximum frequency", description: "Maximum frequency to transform", channel: "applymodelpf", absolutechannel: true, conditions: conditionsFilter, min: 20, max: 22000, dfault: 2000}
];
} else if (pdef.presetgroup == "pvanal") {
@@ -1195,7 +1195,7 @@ twirl.transform.TreeView = function(options) { var dp = items[k].added.split("-");
var added = new Date(dp[0], dp[1] - 1, dp[2]);
if (Math.round((new Date() - added) / (1000 * 60 * 60 * 24)) <= 14) {
- x.html(name + " <p style=\"display:inline;color:#ff2222;\"> [new]</p>");
+ content = name + " <p style=\"display:inline;color:#ff2222;\"> [new]</p>";
}
}
li.html(content).css("cursor", "pointer").click(function() {
|