raygit83

Results 9 comments of raygit83

Hi roskelld, > I'm no expert on regex, but I tested this out and it works. > > ``` > // headers - fix link anchor tag regex > {regex:...

Here are the changes required to facilitate IE11 support: 1. Add a polyfill for Object.assign(), e.g. right before ```this.init()``` on the bottom of CMS.js: ```"function"!=typeof Object.assign&&(Object.assign=function(n,t){"use strict";if(null==n)throw new TypeError("Cannot convert...

So, here's am minimal code example that implements an eyedropper that shows the pixel color under the mouse cursor. The code works fine unless we embed that view in a...

Hey @scheffle, great work. Thanks for the quick update. I think the implementation for CMovieBitmap is missing and perhaps some other views or controls we're not using currently (?). Two...

@scheffle alright, awesome. I'll look out for the final integration of CMultiFrameBitmap and file a new issue regarding the backOffset. Thanks again!

Any news on this? I know AAX/Pro Tools distinguishes between more automation states than VST3, but wouldn't it be feasible to use IAutomationState::setAutomationState() in order to implement this feature?

Hi @donjajo, Thanks for your response. And yes, locking the file during r/w accesses isn't enough to ensure integrity, consider the following example: 1. Two clients perform a read access...

Hi James, Yes, a mutex will be required. It seems that PHP has a built-in mutex class these days, see here: https://www.php.net/manual/en/class.syncmutex.php , but I don't know how reliable it...

> Thank you for your insights! > > What about creating something like mutex? Blocking each session till one other has finished r/w operation? Do you think this would have...