ngld
ngld
Hm... this is kind of goes against what I intended when I implemented `common.js`. The dev docs explicitly mention that you're not supposed to bundle `common.min.js` and instead load the...
This might be an issue with the way I implemented Chromium's popup rendering (to clarify: this isn't used to render popups, instead it's used by the default `` widget). IIRC...
The next OverlayPlugin update already contains [a mechanism which overlays can use to talk to each other](https://github.com/ngld/OverlayPlugin/blob/024a1f7b36f1c9f7a91dfccb46f7129ddf08bce3/OverlayPlugin.Core/EventSources/MiniParseEventSource.cs#L189-L211). The `broadcast` handler raises a `BroadcastMessage` event each time it is called. You...
Sorry for taking so long... I don't like adding `Effects` as a supported property since unlike the other fields, it's not a primitive type. However, the new parser for 6.0...
Currently, no. I needed a sane place to store the CEF files and `AppData` seemed like a good choice since it's the default location for plugins and usually writable. You...
I generally only update the references when I need something that's not available in the old version. If I require a too recent version, it can cause ACT to disable...
Using `JObject`s sounds like a good solution. The default presets are already read through `Newtonsoft.Json`, I'd have to modify the code that parses the JSON data but then I could...
I'm not sure since I haven't had to deal with high DPI issues, yet. I think ACT itself isn't DPI aware. Have you tried experimenting with the DPI related compatibility...
I don't think I can really fix this. ACT itself isn't DPI aware and if I started to mess with that, it's very likely I'd break something else. The only...
Right now the translations are handled by .NET. The only way to change the language would be to override the system language for the whole process which I'd like to...