The definitive feature request & bug fix roadmap
-
BUG/Feature
Develop branch.
Adding an expansion doesn't work if you haven't set up the necessary thingies in the project preferences. It just creates and empty xml file. It would be better if either it did nothing or it gave the user some information to say why it wasn't working.
-
Develop Feature Request & Bug Report
Added functionality to further customize the look of the AudioWaveform component. Stuff like playhead color, maybe a selection of multiple ways of drawing the actual waveforms (see Ableton waveform display f.e.), gradient colors for the waveform, etc. LAF?
(EDIT: The gradient I found out how to do in the sourcecode... thanks to @Casey-Kolb... I also can see where the playhead is drawn, so... but the issue with disappearing playhead on compilation goes beyond my knowledge... )
It would be nice if I could also get rid of the rectangle that surrounds the component. No matter what I do, these lines always stay there.
Also, the playhead is missing in the compiled plugin. See https://forum.hise.audio/topic/3599/audiowaveform-lines-don-t-appear-in-plugin/11?_=1627122129127
-
Feature request: LAF obj.group
New Component Specific Properties: obj.group: "any string"
At the moment you can summarise for example knobs like this
if (obj.text == "Q" ||obj.text == "Decay ms" || obj.text == "Attack ms" || obj.text == "Hold ms" || obj.text == "Sustain db" || obj.text == "Release ms"|| obj.text == "Pan" || obj.text == "L Time ms" || obj.text == "R Time ms" || obj.text == "Random" ){ g. do something };
It would be clearer if you could assign a slider, button, panel etc. to a group.
For example obj.group = "gain"Now you only have to write
if (obj.group == "gain" ){ g. do something };
And all sliders in the group get this appearance
-
@MikeB You can do this already, you just need to use some string manipulation with the control's text property. Take a look at this example and see how I'm adding a group name to the text property but still display the knob's text on screen without the group name.
HiseSnippet 1231.3ocwWtzaiTDD.tmjLKXCNrqD+.Z7Iav1X67.jrhhyC6kn7xabHBoPzp1yzy3lLt6QyzSRLqVo7SgeFbBsheFbJ23JW3LT87vdLq2fiWPYNX6t5pp4qqp6pK2wSXP88EdHsLmNzkhz9X8tC4x96zmv3n81Eosr9gDeI0CGIZ6gtDeepIRSawmqDnkYIT3yer41DGB2fNVDBclfYPOfMfIGKsSy8YNNsIlzSYCRo8pM2yPv2Q3HB.dVTuJxkXbIwldDQo1B5HsmzxjIEdckDI0GzYag4vt8EWyiz+LlOqmCUMnFpK3nHwnc5ybL6jrV8QHsk5LdkuXzJ+S0OjYxFIebD3ogSfGaQ5Xf1BShzRSfTs2ERsENlJG7NvSKEdKEg2yz6Z3wbkimQw1GouGGRNVDHrmFqHcQKzaQ8cDfFbYkAjKos8fAirnv5UqVBuV0pEajKatrPv2Whuh3gcHV3Mvs31LNshgGEVZO2Qzi3D41CDhK2ha1lRcJTrAXIneEOpMSsOoc.2PxD7B4M8HWehPR7F10gYR8xWBakLocIrn2OTLW1WkKKFdTuUB7NAgUHvKrQiwxkzajwSo9YE+fd9ROF2tvHQLtI8lisJjub9h3u.WqzXscnbaY+hw9K5SlEdJ1Z6IBbqAN3y1.WtVwHUUO1U7oxn8kEh9xGVtlI9bl7a8Yzu8bBnusisqXAGYZ43vb8oEHQ4qj3CkadrkE3JHHsF9yCW5WQ.+bjva.wg8iTSbYrOjHjQ50HwodB0t1BibPI74jyqeA9Kw0KgS90ESF6lFzW2mIGQscEUheKGlMmZdJDIJnBGgtt5EJ2V6BHEQNekPuCjUu53WXIXD7QdCXGKDhyWrgxkYecwFIacvB9QBI8XdghYeU1LYecV7+bJKqoNm5ffmvwg5M0oUEi7tOCKvCFzi5UBGFbGoHbBcxR.OY1JAXDctLkhB9dbl7XWZ73wEIpMkhDn3C1P4hmDSHnpLrXwxwEKhN3gXfS9.884hd0PgvGWz81e8OuaSzLab8IMdir+9Cv3Ulv3nmY13UeeLdsIL9tW7y+xC.60mv3excieaSz2t2tDIQUlNNE.oEWpmjox9Z6RuBtyKpncF8co9WJEtg4nAtBtJgok4eMKcy3kZylCGMn4KZpNLgz9D8npUk2RJgKIQWyLk8Go1s62rOkY2WlVBkSfcgpqxNfR73paI7g8dmoVdcDtAtp29V8DWQUw1Yl05oY86mFq4RX8af8yOhjtRJRuyNEouIgzkSHcWpAY3iHpqlNn1OEpHyIQsd4cB7.m+3g5ZoPsY57+aLhQ8oIndB0gR7eLgc8Tvday6E1tAvMlPGf+GC6a2XGzdovLvgHmrmSUy0wS.2BMQycpF339L4vzMe+.ZDs5TaDcp2wLi39L8NLoQ+oy6BSgWn34+27F2VeN8VVVTC4XXWRu82Mu8v+.P4DQfDZR8PBzqJrqS+nfAcgtkLn.IbN0AdQ5ZKntHKZbU0XUjoKzOV3f+BdhmrlZrV7j0RlDMfX3IdoQzkYp+3vGFJAXhG9elx.+4MXLdz0955UqTEM.1p9RCCUnnLv9zso9bXyJygMqNG1r1bXy5ygMe0bXyWeu1npRrUfTLH5XBHnSqvtIzzZEVFIbGI5uAgv3IiB
-
@d-healey
That looks good - SubString is of course a solution - ingenious
Thanks David -
This post is deleted! -
Feature Request LFO phase knob should be in degrees not percentage.
-
This post is deleted! -
This post is deleted! -
@d-healey
Thank You David
by the way i Corrected the Develop Branch Procedure i posted to Compile on Big Sur
Check the ipp installation! -
Feature request Add group parameter to the
isNoteNumberMapped
function to check if a note is mapped within a particular group. This could be an array to check multiple groups or -1 to check all groups (current behaviour). -
Really strange bug
UI table connected to global velocity modulator.
UI knob connected to DefaultValue of global CC modulator.Triggered velocity is displayed by line in table when pressing a key (as expected). Moving the knob resets the line on the table (not expected).
HiseSnippet 1581.3oc6XssaSbDFdV6rAhgPAJsphpptBUj.IZj2.jDnHgyYrfDrxZB8NzjcGaOJ6Ny1cGGvEgDOEbcutOEbeuoOJ7Fj9OyrdODuJDVAsUk5q77eZ9m+ie1ch3tj3XdDxXltiBIHiyZ5LhIFr5.LkgZuFx3LlB7d9DAIVfVYTHNNl3gLLpuoT.iYlBo97t6uB1GybIYjPnc4TWxinATQF0NsdH02eCrGoKMHmz2pUaWNaUtOeH3L0MahBwt6i6S1FKEqlIxX508nBdji.CNCxXpU3dibFveNSK+tzXJ3nxC1HGvPZxav88jdr76nUGP885L9QGi.i1IKDTWGBtj4VTOZJ8rPw4ULrxzHe7vn1w4d1Uz8Lx4dSocuKX53FQCEYbzoo1LAIpGFRA4cKsrHi2ZtJGDfIlK.uOYiH3PpBWaglMug0sa175+TugLWAkyr3rs4BxiYW65MdYiYZ7pFVGkUudkxSdMQbeeRTorkY8niSwqwFFrGI5FVGf8GRREDd9EiuSexhut5WcNA4r1Lp3wgjjyYY.6Rx.njvFjKpk3gfqHTYhYSxDckMHHJXiSap9tMR4746E7vBrpLFkZk5ZqbtDq33S8HQJybJyGx36MgU1tE5IsWSZHHyl3WfuFRhDTYHwXMxAPGmtLYFy0Hw6K3gvEsJOHjyjuBiS8dc8Wjdg+laqQY29Ma8bpmX.xvz32giCHz9CDxSuANENNj0FL0WYtKwm6REir1h6MzGCoMYrMyKN+68om4Enym2KVpUrXjLMOsRPT.0yymzgGSkkQ4myDKHgNzeED0zzdtlfjr7Ij.b1U71m0JdXudzWnxP8n9AwBvuZG.yePFWz7IwDKORO7PegU79fc7or8Idc4J4SCKuNWXY7E8fVEBMWTOBIqIwFlyEAi3fVQI+yAYM08rqJ0mOlcVQxzIcLaCeNVPY86RSRfegYdREhf14hfsFzJozQWmzv7gjQ6wwQdn85Od96LS644cnTbpfDjQ8vCO7xEoNeBYkvBxKDYB+GuUSUUwViYX9xYaXYcE35dpLhck6ZYeq4ZdCEw0nwg93QO1UfOfrsZB.vuG1OlnE3Q7mCJBztYhFOfpOaO+hZBqNLVvC1LBGNf5FWT6jf5xggDHZCqoJxdEeXWCXtcfvGGX0btEti5yRK0bw6zbQasXc4866SfR5intLkBaIXLhuzgzDgZlcItPkeNORDMjjxcCnuvQVKeDi0Y8wIjIX.y9hDY2z7oLVm4kyAVX1FuJqp7d0x2rdOUywDKUfUai6TyuuStjOggr6J+hE41CFz0MJOHfOfkfMKcIXoifOgt6EL6PEtCJ2eqUh+Jmo+I1eSfTLq4585AUCYN6Tla7yUE+P0bkSqckKatoOeOreV.DlF.dEQii36RXmM41JU.6iA.3edRA.FdhA.ZTuXDo9IaieInnl5e.Pde7qu+xIRMweT6H+.fkVax5pFoK8UNa4X.dutKLWTCIIGs1rC.DNRkxprVi3R2iHKhKVvkbmJar1XHWGMFT4Bo7YpYRyTxo+o6yUO9R1xWgWNBU1KOyn50jo7d8Sa4Dv4hAE6qnsJfnHGXxOIgkJOft9mmCn2gOTBYaKL.3DPrYBIUGXBnKIYedrbocMYdWeto7rLx3PXdpCRvWILskmMRXZOlY9m64zO2yX5.CzU+Re0i8qUmsdJ.9xZSBLpex107i6Cu5a93OtWi8qK.OKNjGWvvNj.ZW.FbbdhRHTQjeQgYqXCBNpTVu69a.OxR0wAKFFoJIWNfOjIJTBVuRSPKBcJm7+mc+zmT3hUb4T5TZGZPnOYcXfpO7ClSlRmLYbL0hE7awY7vAbF0Me0vNDnQse+bycUanJ4wsrP.+phLJWp0NDeBNek8Oz5QPEINp3ZrIiKUG4iwIL28MlZ20R1kZ8uJH+I3K91DzOpgLpeHT5yP8B99wniTBXojnhPOjBLdwKzOV.KAr9kQb0+WC1GGV46VF9m+ek6mIqb+63NBvtQ7m4pwCJa1OshB7tYp+y7YL2Rd1J8+Qzzro5+Ayi9LWWY39GsQnx0Y9JnyMqfN2pB5b6JnyBUPmEqfNKcr5H2bu7PAOP2JBD5rtdxhw5L4XFUUO5ufCUvrE�
-
BUG!
ScriptWatchTable doesn't show Objects
Before : Work
Now: Not Working
-
@sakorada Works here (latest develop branch).
Oh I figured out why it's not working for you. You're declaring your objects as vars, probably not a good idea anyway, use const or reg.
-
@d-healey I just noticed :D , Thank you
-
Feature Request
Addenabled
property to button and slider LAF functions.Well it turns out it's really easy to implement so I did it myself, pull request incoming :)
-
BUG
Simple Reverb FX is sending a mono signal out - even when you put a stereo signal in...
-
BUG Can't drag more than 1493 samples from system file browser to mapping editor (Dragging from the internal HISE file browser works fine).Seems to just be an issue with one particular set of samples I had.
-
BUG Green loop overlay is displayed in wave editor even when
Enable Loop Playback
is disabled.This thread's such a mess, isn't it time to get a proper bug tracker set up?
-
BUG
Global Time Variant Modulator => Instant crash when enabling
Invert
whenUseTable
is already enabled and vice-versa