Bump to Electron 12.0.5 with Chrome 89.0.4389.128

This commit is contained in:
Ronan Jouchet 2021-04-28 22:00:46 -04:00
parent 9330c8434f
commit a19ccd5fda
2 changed files with 2 additions and 17 deletions

View File

@ -1,20 +1,5 @@
# Nativefier
👋 dear users / contributors! Public service announcement!
Nativefier is maintained by YOU. It's reasonably sane to hack on nowadays,
it fits the use cases needed by the original author and the current maintainer,
so _we_ are not doing any active development.
But it's alive! It at least follows Electron releases with maintenance patches,
and if YOU use it and want to see juicy features & fixes, PR welcome!
Help welcome in particular on our [pinned issues](https://github.com/nativefier/nativefier/issues),
or any issue / feature that motivates you 🙂.
Thanks! Take care.
---
[![Build Status](https://github.com/nativefier/nativefier/workflows/ci/badge.svg)](https://github.com/nativefier/nativefier/actions?query=workflow%3Aci)
[![npm version](https://badge.fury.io/js/nativefier.svg)](https://www.npmjs.com/package/nativefier)

View File

@ -3,8 +3,8 @@ import * as path from 'path';
export const DEFAULT_APP_NAME = 'APP';
// Update both together, and update app / package.json / devDeps / electron
export const DEFAULT_ELECTRON_VERSION = '12.0.4';
export const DEFAULT_CHROME_VERSION = '89.0.4389.114';
export const DEFAULT_ELECTRON_VERSION = '12.0.5';
export const DEFAULT_CHROME_VERSION = '89.0.4389.128';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],