HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. DanH
    • Profile
    • Following 1
    • Followers 4
    • Topics 403
    • Posts 3,687
    • Groups 1

    DanH

    @DanH

    Artist / Producer / International DJ / Developer

    DC Breaks
    DHPlugins

    London Town

    740
    Reputation
    385
    Profile views
    3.7k
    Posts
    4
    Followers
    1
    Following
    Joined
    Last Online
    Website dhplugins.com/store/
    Location London

    DanH Unfollow Follow
    Beta Testers

    Best posts made by DanH

    • RE: How can I make Vocal Remover Plugin

      @DabDab @Fortune arguing in a forum is totally pointless guys, and I'm sure the rest of us would prefer not to read any of it. Everyone be nice and civil towards eachother please and we can all carry on making super plugins... :)

      posted in General Questions
      DanHD
      DanH
    • Customer Feedback Lols :D

      Thought I'd leave these here in case anyone also wants to post hilarious customer interactions to make us all laugh πŸ˜†
      Screenshot 2022-12-28 at 16.52.13.png

      followed by:

      Screenshot 2022-12-28 at 16.53.48.png

      posted in General Questions
      DanHD
      DanH
    • RE: The big bug tier list

      @Christoph-Hart HISE_NUM_STANDALONE_OUTPUTS Error // Channel Amount Mismatch on every start

      https://github.com/christophhart/HISE/issues/692

      This one has been driving me nuts πŸ˜†

      Appreciate it doesn't happen for everyone but I have to re-set my midi controller in the Hise settings every time I open Hise!

      posted in Bug Reports
      DanHD
      DanH
    • RE: The big bug tier list

      @Christoph-Hart

      Scriptnode Notch Filter has the incorrect display graph (shows Bandpass) and neither it or the bandpass filter graph respond to Q value changes. Currently impossible to use either with an External Filter Slot on the user interface...

      https://github.com/christophhart/HISE/issues/703

      posted in Bug Reports
      DanHD
      DanH
    • RE: The definitive feature request & bug fix roadmap

      Feature Request: Draggable ADHSR Envelope (like the curve EQ and Tables etc)

      posted in Feature Requests
      DanHD
      DanH
    • RE: The definitive feature request & bug fix roadmap

      @jupe 'bitchbend' πŸ˜‚

      posted in Feature Requests
      DanHD
      DanH
    • RE: Thank you Christoph

      @obolig it's a good post. Had a similar experience and after some digging back in 2020 I came across HISE (not so much digging required these days!).... It was instantly intuitive and the members on this forum more or less taught me how to script. Many thanks for putting it together @Christoph-Hart

      posted in Blog Entries
      DanHD
      DanH
    • New Plug-In Released - MOD-EQ-1

      For anyone interested I released a new effect plug-in this week... The MOD-EQ-1

      Check it out here:

      https://dhplugins.com/mod-eq-1/

      posted in Blog Entries
      DanHD
      DanH
    • How’s everyone’s Sunday going?!

      πŸ‘‹πŸ»πŸ˜… have a good one!

      posted in General Questions
      DanHD
      DanH
    • Automation subfolders in DAW

      Would be really nice to be able to use folders / sub menus in the automation menu for our plugins... as below

      52sd5u.gif

      posted in Feature Requests
      DanHD
      DanH

    Latest posts made by DanH

    • RE: License Manager (Wordpress) Deactivation help

      @Dan-Korneff Sequoia. I can activate fine, even deactivate - but it sets activations to zero because I'm not doing it right...

      posted in Scripting
      DanHD
      DanH
    • RE: Hise can't save hr file with hxi metadata.

      @It_Used have you tried using a different sample install method? I don't use hr archives. I make my own using Whitebox Packages (OSX) and InnoSetup (Windows). There's lots of info about them both on the forum. Maybe you use them already, how do you plan to distribute your plugins without them?

      posted in Bug Reports
      DanHD
      DanH
    • RE: License Manager (Wordpress) Deactivation help

      @It_Used why not create a new Forum post?

      posted in Scripting
      DanHD
      DanH
    • RE: License Manager (Wordpress) Deactivation help

      @Christoph-Hart Thanks. I'm getting an instant failure (status 0), I don't think the server call is being sent, Hise stops it before that point. Would you mind glancing over the code please?

      function deactivateLicense(licenseKey)
          {
              Console.print("DEACTIVATING... " + licenseKey);
      
              // Get token
              var token = LicenseManager.getActivationToken();
              if (token != "")
                  Console.print("Using token: " + token);
              else
                  Console.print("No token found.");
      
              // Build URL
              var url = "https://dhplugins.com/wp-json/lmfwc/v2/licenses/deactivate/" + licenseKey;
              if (token != "")
                  url += "?token=" + token;
      
              Console.print("Final URL: " + url);
      
      // Set Authorization header (HISE requires this BEFORE the call)
      Server.setHttpHeader("Authorization: Basic myBase64Encoded String");
      
      Server.callWithGET(url, {}, function(status, response)
      {
          Console.print("---- SERVER RESPONSE ----");
          Console.print("Status: " + status);
          if (response == undefined)
              Console.print("Response undefined. Check network or timeout.");
          else
              Console.print("Raw response object: " + response);
      
          if (response != undefined && response.success)
          {
              Console.print("Deactivation successful!");
              Activation.showSuccess("DEACTIVATION SUCCESSFUL");
              GlobalMute.setBypassed(0);
              LicenseManager.deleteLicenseFile();
          }
          else
          {
              var msg = (response != undefined && response.message != undefined)
                        ? response.message
                        : "DEACTIVATION FAILED. PLEASE CONTACT SUPPORT.";
              Activation.showError(msg);
              Activation.resetControls();
              Console.print("Deactivation failed: " + msg);
          }
      });
      
          }
      
      posted in Scripting
      DanHD
      DanH
    • RE: License Manager (Wordpress) Deactivation help

      Trying to bash through this with their tech support and ChatGBT πŸ€¦β™‚

      Does anyone know if HISE supports sending custom headers β€” apparently not all HISE builds can send an Authorization header in Server.callWithGET().

      posted in Scripting
      DanHD
      DanH
    • RE: Table -> Disable deletion by right-clicking

      @DanH said in Table -> Disable deletion by right-clicking:

      No, nor me. Having curve nodes would be much more up-to-date. Is there anyone here who could write a new table which can interface with the existing Hise modules (LFO / ShapeFX)? For $$....

      Seriously though, can anyone help with this?!

      posted in General Questions
      DanHD
      DanH
    • RE: Table -> Disable deletion by right-clicking

      @dannytaurus said in Table -> Disable deletion by right-clicking:

      right-click-to-change-curve behaviour - I'm not sure I like that very much either.

      No, nor me. Having curve nodes would be much more up-to-date. Is there anyone here who could write a new table which can interface with the existing Hise modules (LFO / ShapeFX)? For $$....

      posted in General Questions
      DanHD
      DanH
    • RE: Matrix Modulation Feedback

      @Oli-Ullmann something else curious - the value amount shown in the Matrix Module bar isn't the amount set on the UI slider or the 'Value' slider in the module itself.

      Screenshot 2025-10-30 at 20.54.01.png

      posted in General Questions
      DanHD
      DanH
    • RE: Parametric EQ - Limit the amount of nodes?

      @ustk you're good at those πŸ˜†

      posted in General Questions
      DanHD
      DanH
    • RE: Parametric EQ - Limit the amount of nodes?

      @ustk I seem to remember being able to edit the data field but can't find an example. I did it in the source code. Do you want a fixed amount always visible or allow the user to add a max of x?

      posted in General Questions
      DanHD
      DanH