From bda3a99797df33f8bff48960318b14a0d81c52a3 Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 16 Apr 2025 01:04:34 +0100 Subject: remove .pyc files --- site/app/twirl/transform.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'site/app/twirl/transform.js') 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 + "

  [new]

"); + content = name + "

  [new]

"; } } li.html(content).css("cursor", "pointer").click(function() { -- cgit v1.2.3