Can electron-forge be used with Electron 3.0? - electron

I would like to use some Electron 3.0 new APIs in my electron-forge application, but I am not finding any information of which electron version is electron-forge supporting?
I am currently running electron-forge 5.2.2.
Can anyone please help?

Well it seems actually that electron-forge is installing its own version of electron as part of dependencies of electron-prebuilt-compile. So you can't actually upgrade yourself.

Related

How to use Electron with a specific version of Chromium?

I need make a project with Electron but I need to use Chromium version: 42.0.2289.1
Can I tell Electron to use a specific version of Chromium?

How to use old version of Flutter and Dart

I'm a new developer and I'm trying to work with an existing IOS application built with Flutter. Some of the pubspec.yaml files show:
version 1.0.2+1
environment sdk ">=2.3.0 <3.0.0
And then various dependencies of other apps.
If I use the latest version of flutter, the application doesn't build. It needs to be built with flutter v1.0.0. But when I install that specific version, flutter pub get doesn't get the rest of the dependencies.
I'm guessing that I'm doing something wrong, but I don't know what.
Please help!
Thank you,
Thomas

Unable to determine Electron version. Please specify an Electron version

I was trying to create executable file for electron app but faced this issue
Unable to determine Electron version. Please specify an Electron version
Though I have electron installed on my machine globally but still it was giving me error.
Install electron as dev-dependency to resolve this issue
npm install --save-dev electron
Resources
https://github.com/electron-userland/electron-packager/issues/617

Using ES6 on Electron app with io.js

I am writing cross-platform application with electron.
I want to be enable ES6 arrow-function feature in main process using like iojs --harmony_arrow_functions.
Electron already installed successfully on io.js 3.1.0 .
How I can do it with io.js?
If you go to the electron releases, in major/minor release notes you can see which version of nodejs it is using:
https://github.com/atom/electron/releases/tag/v0.36.0
Upgrade to Node 5.1.1.
I'm not totally sure which version of node arrow functions first became available but I can confirm that they are available in the latest version, 5.2.0.
Relatedly, to easily switch between versions of node I highly recommend using nvm:
https://github.com/creationix/nvm
That way you can easily switch to match updated versions of electron and you can automate it quite easily as well.
Electron was switched to nodejs, currently 5.1 see here - https://github.com/atom/electron/releases/tag/v0.36.0

Kivy on Qpython3 (Android)

How I can use the Kivy framework in Qpython3 (Python 3.2 for android) app?
I know that Qpython (Python 2.7 for android) app support this framework.
pip_console don't install kivy. I have an error, when I try to install it. Please help me.
Edit: Kivy now supports python3 on Android, though qpython would still have to include this (or a similar build process) to have kivy work in qpython3.
You can't right now, as kivy does not have a python3-supporting backend on android.
We're working towards adding one, at which point I quess qpython may look at adding support in qpython3.
From kivy documentation http://kivy.org/docs/installation/installation.html
NOTE: Currently, packaging only works with Python 2.7. We are working on Python 3.3+ support, but for now if you plan to distribute your package on any platform you should use Python 2.7.

Resources