Vitalius Kuchalskis
Vitalius Kuchalskis
> Try to remove `node_modules`, `platforms`, `plugins` and run `npm i && npx cordova prepare` I'm using cordova `10.0.0` with cordova-electron `2.0.0` on Linux. When the plugin gets loaded it...
Now I can't fetch the plugin anymore: ``` Discovered plugin "cordova-plugin-file". Adding it to the project Failed to fetch plugin git+https://github.com/zorn-v/cordova-plugin-file.git#electron via registry. Probably this is either a connection problem,...
I've figured out that fetch was failing because I've upgraded nodejs to `v15.5.0`. After downgrading it back to `v14.12.0` it started working again. So I've managed to add the new...
Yeah, the test does work! Thank you and happy holidays! ;)
> I don't think this is feasible. The native APIs expects an actual file URL of some sort, you can't just simply pass through HTML data for it to load....
> If you have multiple pages, you constantly have to unload/re-initialise Cordova plugins, in addition to any of your app assets. Yeah, but in some cases I think it might...
I think you didn't really get me right. I meant connecting to IMAP server using an email, username and a password. ie: ``` { user: "foo", email: "[email protected]", password: "123456879"...
Well the email address is not used for authentication. It's used to specify which emails you want to fetch when you're using aliases and save these emails for multiple addresses...
Also I wonder if it's possible to write mid files streaming chunks of event data instead of writing the whole file at once. This way you could save up some...
I've figured this one out. Managed to make a working POC where midi events can be recorded and saved to a `.mid` file and then played back. Now I'm reworking...