sqwk
sqwk
Currently the path to the html file is hardcoded into `platform/electron_app.html`. Can this be extracted to let users take care of their own window opening logic? Are apps with multiple...
Not sure if you want to convert to TS, but if you do …
Allow excluded keywords like this: `foo: -bar`. This would be useful especially for something like tags where we user entry like this is entirely possible: `tags: this, that, -notThis` {...
Negated text snippets are currently extracted and parsed into the `exclude` object. To preserve the sort order somehow, could they also be included in the `offsets` object? Probably, with an...
`storage.bind()` doesn't work inside a factory, I assume because there is no scope. Passing an object doesn't work either: ``` app.factory('someFactory', function(storage) { var settings = { foo: 'bar', lorem:...
Instead of encoding with ffmpeg, does anyone have an example for a gstreamer pipeline, preferably using webM instead of H.264?
Refactored to Typescript to automatically create an up to date definitions file. (See #20) Also indirectly solves #143, which I also got when using the project as is with a...
When bundling definitions for two classes (in separate files) that extend one another, the output definition file ends up with duplicate identifiers: ``` export declare class SomeClass { } export...
I am checking if new elements have been been added to the DOM to call refresh(): ``` const solutionList = document.getElementById('solution-list'); if (solutionList != null) { const observer = new...
Is there an option to extract the full license text for packages automatically? (Since licenses often ask you to include the license in full.)