Navigation

    Forum

    • Register
    • Login
    • Search
    • Categories
    • Tags
    1. Home
    2. d.healey
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by d.healey

    • d.healey

      setNumAllowedDownloads not found
      Scripting Forum • • d.healey  

      2
      0
      Votes
      2
      Posts
      15
      Views

      d.healey

      Solved it. This was missing in the source ADD_API_METHOD_1(setNumAllowedDownloads); I'll make a pull request.
    • d.healey

      External sample map = slow downloads
      Bug Reports • download sample map slow speed • • d.healey  

      1
      0
      Votes
      1
      Posts
      17
      Views

      No one has replied

    • d.healey

      Server controller abort bug
      Bug Reports • download server abort • • d.healey  

      1
      0
      Votes
      1
      Posts
      14
      Views

      No one has replied

    • d.healey

      Setting server headers for downloads
      Scripting Forum • • d.healey  

      1
      0
      Votes
      1
      Posts
      17
      Views

      No one has replied

    • d.healey

      CPU usage during compilation
      General Questions • • d.healey  

      21
      0
      Votes
      21
      Posts
      71
      Views

      d.healey

      I just tried lld, seems it might be a bit faster at linking but I'd need to do some proper benchmarks to know for certain. In case anyone else (or future Dave) is thinking of using lld (or gold) for linking here is what you need to do: Put the following in the Extra Linker Flags box in Projucer For lld: -fuse-ld=lld For gold: -fuse-ld=gold -Wl,--threads -Wl,--thread-count=6 With either of these linkers you need to compile using Clang instead of GCC. So the make command will look something like: make CXX=clang++ CONFIG=Release -j 6
    • d.healey

      NUM_API_FUNCTION_SLOTS
      C++ Development • • d.healey  

      9
      0
      Votes
      9
      Posts
      50
      Views

      d.healey

      @Christoph-Hart Excellent, thank you
    • d.healey

      Midi learn panel invert column size
      General Questions • • d.healey  

      12
      0
      Votes
      12
      Posts
      69
      Views

      ustk

      @d-healey Thanks! Not yet, I was waiting for all the mods in order not to make 18 pull requests...
    • d.healey

      Screwy fonts
      Bug Reports • gui hise interface font • • d.healey  

      11
      0
      Votes
      11
      Posts
      71
      Views

      gorangrooves

      @d-healey Yes, there is a bug with fonts being set to "default" not showing. This is something I reported a little while back. You need to specify the font for each text bit.
    • d.healey

      Codesigning - Windows
      General Questions • windows codesign microsoft • • d.healey  

      20
      0
      Votes
      20
      Posts
      109
      Views

      Lindon

      @Christoph-Hart thanks - Yes the politics is pretty stinky.... hey ho...
    • d.healey

      Custom workspace = slow HISE
      General Questions • • d.healey  

      21
      0
      Votes
      21
      Posts
      104
      Views

      d.healey

      @Christoph-Hart I've narrowed it down. When I remove the API browser from my custom workspace everything works normally.
    • d.healey

      Changed MAX_SAMPLER_PITCH logic breaks HISE
      Bug Reports • • d.healey  

      12
      0
      Votes
      12
      Posts
      49
      Views

      d.healey

      @Christoph-Hart Those are the best!
    • d.healey

      Get data from Woocommerce via server api
      Scripting Forum • server api authentication woocommerce • • d.healey  

      58
      0
      Votes
      58
      Posts
      249
      Views

      dustbro

      @d-healey said in Get data from Woocommerce via server api: display all of the products available on my site that can be loaded as an expansion I can't wait to buy this from you
    • d.healey

      Images from server
      Scripting Forum • server images • • d.healey  

      64
      0
      Votes
      64
      Posts
      257
      Views

      d.healey

      @DanH how does one go about this in Xcode? YouTube
    • d.healey

      Custom look and feel component ID
      Scripting Forum • laf look and feel • • d.healey  

      43
      0
      Votes
      43
      Posts
      225
      Views

      Christoph Hart

      Alright, it might be possible that I've fixed this already lol...
    • d.healey

      LFO's gone rogue!
      Scripting Forum • • d.healey  

      5
      0
      Votes
      5
      Posts
      36
      Views

      d.healey

      I've added the Modulator.getType() function now, works perfectly. I've pushed my latest changes to my feature branch. This is up to date with the latest commits in @Christoph-Hart's scriptnode branch which means that it will be easy for him to merge my pull request There is one breaking change in my branch. I added an additional parameter to the FileSystem.browse function. The fourth parameter is now a boolean that you can use to specify if you want to browse for directories rather than files.
    • d.healey

      Arp direction doesn't work
      Bug Reports • • d.healey  

      11
      0
      Votes
      11
      Posts
      109
      Views

      UD AUDIO

      Thank you! I don't know why it didn't work but now it does
    • d.healey

      FIleSystem browse directory
      Scripting Forum • directory browse filesystem folder • • d.healey  

      7
      1
      Votes
      7
      Posts
      47
      Views

      Casey Kolb

      @d-healey Amazing! I should pull request the createDirectory() function as well.
    • d.healey

      LFO seems (partly) broken
      Bug Reports • lfo frequency • • d.healey  

      4
      0
      Votes
      4
      Posts
      49
      Views

      d.healey

      I made a video showing the comparison:
    • d.healey

      Propagate artificial midi notes
      Scripting Forum • midi artificial event note • • d.healey  

      9
      1
      Votes
      9
      Posts
      51
      Views

      Christoph Hart

      Yes thats correct. Sibling midi processors will not process generated events. I don‘t remember the exact reason but there were some issues with recursion protection so I deactivated it.
    • d.healey

      CC to velocity
      Scripting Forum • velocity controller • • d.healey  

      9
      0
      Votes
      9
      Posts
      49
      Views

      d.healey

      Yep the delay technique works, thanks! Now I just need to fine tune it.