My new plugin/app, Rhapsody, is finally released into the wild!
 
Best posts made by d.healey
- 
I released my project!posted in General Questions
- 
Export toolposted in General QuestionsI'm currently building an app which I hope will allow batch exporting of HISE projects, auto notarization on Mac, and auto-generating installers. So far I have the basics working on GNUx. I need to finish the interface and add the batch handling, but that shouldn't be too difficult, then I'll tackle the other platforms. This app should make it much easier for everyone (and especially beginners) to export their projects from HISE and build installers. This is what it looks like so far (it's an ugly work in progress).  
- 
HISE Bootcamp - Full Course for Beginnersposted in General Questionshttps://youtu.be/7i1vdOz3PSI?si=ZdTWoSeg_gNx4EFY The AudioDevSchool site that I've been putting together for the last few months is finally ready! For the initial launch I'm starting with a single course that I'm calling The HISE Bootcamp. The course is 100% free and is designed for beginners, although there's probably stuff in there that more experienced users will also find useful. The videos walk you through the process of building two simple plugins with HISE (a sample library and a scriptnode effect). We then move on to building HISE from source and compiling our projects. Along the way we'll cover a bunch of subjects from basic things like finding your way around the HISE UI to more advanced concepts like Ad-Hoc codesigning for testing your plugins on MacOS. Here's the link to the course: HISE Bootcamp. Feel free to share it with anyone you think would find it useful. Please let me know if you run into any issues with the website or any of the course material - there's usually something that goes wrong on launch day! 
- 
Time to update Visual Studio?posted in General QuestionsIt's becoming hard to find VS2017, I can no longer see the community edition at Microsoft's website, only a pro version trial. @Christoph-Hart Is it possible to bring HISE into the new decade and add a VS 2022 export option? I know we can already use VS 2022 with a bit of fiddling around, but it's not straightforward and requires additional steps for every export. 
- 
Show and Tell: Grid based layout systemposted in ScriptingJust wanted to share something I'm working on. It was briefly discussed last month here. It's a grid based layout system, inspired by html and other layout languages. The idea is you define your components once in a JSON type format, pass it to the layout engine, and it will do the rest. It can layout components in a vertical or horizontal stack, or use a flexible grid. If no dimensions are passed components will stretch to fill the available space. Dimensions can be passed either as numbers or percentages relative to the parent/column/row. By default components are centred horizontally and vertically within each grid cell but you can specify their alignment (top/bottom/left/right). For stacks components butt against each other, I have plans to add some alignment options here as well though as well as margins/gutters. If you want to add multiple controls you can define one control and specify a number of clones, and they will be created and positioned automatically. I think it will make it easier for me to transfer layouts between projects as well as quickly build complex projects. I have a lot more functionality planned.  
- 
Universal HISE Downloader/Installerposted in General QuestionsA couple of years ago I proposed making a general purpose downloader/installer app. In the time since I've created a downloader/installer for my own libraries and it works really well. I thought I'd see about adapting it to be an option for more developers. I'm currently prototyping some things but before I get too deep with it I want to know if any of you would actually use it. Unlike other similar apps (Pulse, Conduct, etc) what I'm creating is decentralized. Your customers will log into the app using the account they have on your website and downloads will be served from your servers. The app will of course be free software. The app is more limited in scope than those other options. I don't intend to include an integrated shop and I don't plan support for non-HISE formats - but who knows what the future will bring. The benefits for you is it's very cheap (you don't need to pay a middle-man), you don't have to develop your own downloader, new customers will discover your products when exploring other plugins available through the app, it's HISE focused and will support expansions and additional presets, etc.. The app supports serial keys to limit access to downloads. It does not (and cannot) provide any DRM but you can include this in your plugins if you wish. It can integrate with any website, you just need to setup some endpoints and make sure they return the correct data. If you're using a Wordpress/WooCommerce site I can (for a fee) supply you with a Wordpress plugin that will integrate seamlessly with the app - this is the plugin I'm using on my own site. So is this something any of you would use? If so I'll continue developing, if not then I won't bother, I don't want to be the only one using it :) Here's a preview of where I'm at with it.  
- 
Preset browser additionsposted in General QuestionsI've made a few additions to the preset browser which some of you might find useful. These are available in my fork and I've also opened a pull request for Christoph to merge them into the main source. Nothing I've done should break anything although I've made the favourite icon in the preset column take the text colour instead of the highlight colour which may be important to you. Really I'd like this to take the itemColour2property but haven't figured out how to do it yet.Added Data properties to: - Show/hide the Add, Rename, Delete buttons
- Change the bounds (x, y, w, h) of the search bar
- Add vertical padding to the rows of each column. Fav icon in preset column is not affected.
- Apply vertical offset to y position of edit buttons, so you can move them up. The list box is adjusted accordingly.
- Apply offset to bounds (x, y, w, h) of the list boxes, so you can make them shorter, longer, fatter, thinner, etc.
 Also - Fixed a bug where selecting or deselecting an item in the expansion column didn't clear the other columns correctly.
- Use column area instead of list area for painting the column background - this might have the effect of visually shifting the edit buttons down slightly (they are actually in the same place but will look lower) you can counteract this with the edit button vertical offset property I added.
 
Latest posts made by d.healey
- 
RE: Query multiple TOKENS? || Please advise!posted in Scripting@Chazrox said in Query multiple TOKENS? || Please advise!: Ended up doing this. Works: Use regex. https://docs.hise.dev/scripting/scripting-api/engine/index.html#matchesregex 
- 
RE: Need Help Structuring My Sample-Based VST (3-Sampler Instrument)posted in General Questions@ILIAM Yeah that could work, it's really up to you, there is no one size fits all solution here. Just go with what you think your project needs. 
- 
RE: Need Help Structuring My Sample-Based VST (3-Sampler Instrument)posted in General Questions@ILIAM said in Need Help Structuring My Sample-Based VST (3-Sampler Instrument): Should I give each sampler its own Filter Envelope, or would it be better to place everything inside a single container and just use one shared Filter Envelope for all three samplers If you want all samplers to be affected by it then use a container, if you need individual control then go with the separate option. 
- 
RE: drawAnalyserPath but only some of itposted in Scripting@iamlamprey But won't that affect the sound as well as the visual? 
- 
RE: drawAnalyserPath but only some of itposted in Scripting// Tweak as needed const dsb = Synth.getDisplayBufferSource("parametricEq0"); inline function setEqProperties() { local props = { "BufferLength": 4096, "WindowType": "Blackman Harris", "DecibelRange": [-90.0, 18.0], "UsePeakDecay": false, "UseDecibelScale": true, "YGamma": 0.2, "Decay": 0.6, "UseLogarithmicFreqAxis": true }; local dp = dsb.getDisplayBuffer(0); dp.setRingBufferProperties(props); }
- 
RE: Hise crash after create new snex file (MAC)posted in Bug Reports@Taihongcraft have you compiled the latest version of HISE from the develop branch? 
- 
RE: Help creating a simple keyswitch between two samplersposted in General Questions@lijas90 use midi muters instead of bypassing the samplers. I put a video about this on Patreon recently I think 
- 
RE: Disable Shift-Click Knob Text Boxposted in Scripting@ILIAM Yes, but you'll need to modify it to access the mods. Probably a for loop rather than for in. 
