Stu Kennedy

Results 18 issues of Stu Kennedy

I can run my app fine in "window" mode (or "chrome" mode) , I test it by opening the console and running some native commands from there. e.g. `Neutralino.os.showMessageBox('HI', 'THERE')`...

bug

# Bug report I'm following the Magic Link sveltekit example code and got it working (there's actually a deprecated `skHelper` in there, but other than that it works) I can...

bug

## Failing module - **GitHub**: - **npm**: ```js import ffmpeg from 'https://esm.sh/fluent-ffmpeg'; ``` ## Error message After running `deno run` I got this: ``` /* esm.sh - error */ throw...

deno

simply importing riot-router throws this error if the latest version of riot-route is installed ``` this.config.route is not a function ``` Setting riot-route to v3.0.2 fixes the issue

if I have a route ```js new Route({path: 'download/:code', tag: 'download'}), ``` and the corresponding tag ```html this.on('mount', () => console.log('code', opts.code)) this.on('update', () => console.log('code', opts.code)) ``` The update...

In the case where an action results in a new state that is undefined (e.g. passing an undefined payload to a payloadPassThrough), this causes redux to crash. This PR logs...

thinking that we should maybe return previous value or default if the payload is undefined seeings as it throws an error in Redux. What are your thoughts?

If I run the example:- ``` mtd --url http://www.sample-videos.com/video/mp4/720/big_buck_bunny_720p_1mb.mp4 ``` I get ``` Starting... Failure Error: File size could not be determined at MTDError (/usr/local/lib/node_modules/mt-downloader/.dist/Error.js:10:1) at MapObservable.size$.map.totalBytes (/usr/local/lib/node_modules/mt-downloader/.dist/Utils.js:135:38) at MapObservable.selector...

enhancement

It would be great to see how to make a function that could be called like this ``` js var ref = downloadFile({ url, file }) ``` where, if the...

there is a requirement to add a manifest to the serveStatic adapter method, the docs correctly shows that you need to import a manifest from the special __STATIC_CONTENT_MANIFEST module However,...