Kevin Van Lierde

Results 152 comments of Kevin Van Lierde

@BrainMaestro thanks, that was it.. However, isn't it a reasonable expectation that this would be handled by `cghooks update` automatically? If I'm not mistaken `composer update` & `npm update` would...

Potential temp fix: Set screen resolution to Full HD (1920x1080), work with GTK Radiant, then revert. This should already at least tell you whether it's only the resolution or there's...

@tsouchlarakis this looks like an *allowed filetypes* issue. Could you try renaming 1 file to `FontAwesome.xml` and try again? If this works, I'll make sure to output `.xml` files in...

That's not a workable solution.. I think if it is distributed with `.xml` it will also appear as the library name in Drawio, which is not desirable. I'll have to...

I've added a note to the desktop install instructions. Tested on Linux with latest Draw.io desktop, it does show up after changing file type in the file open dialog from...

Don't think you can, using the ES6 export aliases. The workaround is: ```js /** * @alias diff.applyDiff **/ export const apply = applyDiff ``` See https://jsdoc.app/tags-alias.html

Knockout's dist already ships with a UMD wrapper, and already exports an object, see [cdnjs debug build](https://cdnjs.cloudflare.com/ajax/libs/knockout/3.5.1/knockout-latest.debug.js) `@types/` is usually added before `` ships with official types within its package...

[The lead maintainer's commit activity](https://github.com/mbest) may give you some insight.

Use [Handlebars](https://handlebarsjs.com) for such a task, sth. like this (not tested) ```js // in HTML: var viewModel = { observableUserString: ko.observable("{{status.percent}}%, {{status.completion}}") status: ko.observable({ percent: 50, completion: 100 }) }...

I've hit the same issue in the past using Knockout, but it is generally known to be slow in loops. The way you explain it doesn't make 100% clear that...