Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Oli Ullmann
    3. Posts
    • Profile
    • Following 4
    • Followers 1
    • Topics 127
    • Posts 905
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Hi! 👋🏻🙌🏻

      @gonzalo
      Welcome! :-)

      posted in Blog Entries
      Oli UllmannO
      Oli Ullmann
    • RE: Retrigger LFO with transport

      @ustk
      Ha ha :-D
      I feel exactly the same way!

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Retrigger LFO with transport

      @ustk
      Can't you just enable TempoSync and ClockSync in the LFO? It works for me with an FX plug-in.

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Smooth transition trough preset changing. (No sound cut)

      @David-Healey
      Oh, okay, I misunderstood that. I thought he wanted to stop the audio engine to avoid crackling. But the crackling happens during preset/sample changes BECAUSE that's what stops the audio engine.

      My mistake...

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Smooth transition trough preset changing. (No sound cut)

      @Yannrog
      You could try this:

      BackgroundTask.killVoicesAndCall(var loadingFunction)
      
      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Cannot access HISE Store

      @alobassmann
      Maybe it is not online yet...

      posted in Bug Reports
      Oli UllmannO
      Oli Ullmann
    • RE: AAX Build on MacOS

      @Lindon
      I second that! :-)

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Oriental Drummer

      @David-Healey
      Looks like they are selling Plug-Ins and knives. :-)

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Ellipse Masking // Mask makes shape dark.

      @Chazrox
      @ustk

      And another one... 😁

      masks.png

      posted in Scripting
      Oli UllmannO
      Oli Ullmann
    • RE: --> Update w/ User Feature Requests! // NEW: Online KNOB BUILDER for HISE!! // Filmstrips, Radial Gradients, Render Bounds

      @Chazrox
      Yeah, it works great in general! :-) I just had some issues with it, as I mentioned, when I had a lot of UI elements...

      posted in Scripting
      Oli UllmannO
      Oli Ullmann
    • RE: --> Update w/ User Feature Requests! // NEW: Online KNOB BUILDER for HISE!! // Filmstrips, Radial Gradients, Render Bounds

      @David-Healey
      Oh, okay, yeah, I had a pretty big project (the one I sent you a while back) with a lot of UI elements, and I had to fake the shadows because otherwise it was causing performance issues...

      posted in Scripting
      Oli UllmannO
      Oli Ullmann
    • RE: --> Update w/ User Feature Requests! // NEW: Online KNOB BUILDER for HISE!! // Filmstrips, Radial Gradients, Render Bounds

      @Chazrox
      That sounds great! Thanks so much! :-) I'll give it a try this weekend.

      One thing immediately comes to mind:
      I’m not sure how the shadow is generated in your code. So far, however, generating shadows using LAF hasn’t been particularly efficient. Especially with sliders, which are constantly re-rendered when modulated, this can lead to performance issues when there are many elements in the user interface.

      That’s why it would be great if we could choose between two options:

      1. Real HISE shadow
      2. Fake shadow, created using a radial gradient, for example

      But I’m sure Sir @David-Healey also has a good idea for how to fake shadows... :-)

      I'm looking forward to trying out your tool! :-)

      P.S. This also applies to the inner glow, which I'm sure you're creating using the innerShadow as well...

      posted in Scripting
      Oli UllmannO
      Oli Ullmann
    • RE: Apple team ID, code sign but ask for security to open the plugin

      @ustk
      ha ha ha 😂

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Compiling VST files on Windows for macOS!!

      @Esaú_DFG
      You can use a virtual machine to compile for Windows on a Mac. I don't know if it works the other way around, but I think that would be the only way.

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Apple team ID, code sign but ask for security to open the plugin

      @dannytaurus
      Thanks for the info! :-)

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Apple team ID, code sign but ask for security to open the plugin

      @ustk
      I see. Your command looks a little different from mine. I'll try it next time. Maybe it'll work for me then, too. Thanks a lot! :-)

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Apple team ID, code sign but ask for security to open the plugin

      @ustk
      What do you mean by “new codesign process”? The new notary tool?

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Apple team ID, code sign but ask for security to open the plugin

      @Yannrog
      I'm not familiar with the new notary tool. I use the commands I showed you above:

      // AU Component (Sign)
      codesign -s "Developer ID Application: YOUR NAME (YOUR CODE)" "/Users/YOUR_USERNAME/Desktop/YOUR_PLUGIN.component" --timestamp
      
      // VST3 (Sign)
      codesign -s "Developer ID Application: YOUR NAME (YOUR CODE)" "/Users/YOUR_USERNAME/Desktop/YOUR_PLUGIN.vst3" --timestamp
      
      // Installer (Sign)
      codesign --deep --force --options runtime --sign "Developer ID Application: YOUR NAME (YOUR CODE)" "/Users/YOUR_USERNAME/Desktop/YOUR_INSTALLER.pkg"
      
      // Installer (Notarization)
      xcrun notarytool submit --apple-id "YOUR_MAIL_ADRESS" --password "YOUR_PASSWORD"  --team-id "YOUR_CODE" --wait "/Users/YOUR_USERNAME/Desktop/YOUR_INSTALLER.pkg"
      
      // Installer (Staple)
      xcrun stapler staple "/Users/YOUR_USERNAME/Desktop/YOUR_INSTALLER.pkg"
      
      

      First, as mentioned, you'll need to remove the signature using this:

      codesign --remove-signature "/Users/YOU_USERNAME/Desktop/YOUR_PLUG-IN.vst3"
      codesign --remove-signature "/Users/YOU_USERNAME/Desktop/YOUR_PLUG-IN.component"
      
      
      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Apple team ID, code sign but ask for security to open the plugin

      @Yannrog
      I had the same problem with the automatic code signing performed by HISE / xCode. My solution is to first remove the signature after compiling, and then manually run the signing process again before notarizing and stapling.

      The command to remove the signature is as follows:

      codesign --remove-signature "/Users/YOU_USERNAME/Desktop/YOUR_PLUG-IN.vst3"
      codesign --remove-signature "/Users/YOU_USERNAME/Desktop/YOUR_PLUG-IN.component"
      

      For this as well, your plug-in must be on the desktop, or you'll need to adjust the command.

      posted in General Questions
      Oli UllmannO
      Oli Ullmann
    • RE: Couple of handy (free) Mac apps for checking code signs and notarisation

      @David-Healey
      Ah, I see. Thanks. :-)

      posted in General Questions
      Oli UllmannO
      Oli Ullmann