From a19ccd5fdaa99e793bf97feba86a74928f036115 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Wed, 28 Apr 2021 22:00:46 -0400 Subject: [PATCH] Bump to Electron 12.0.5 with Chrome 89.0.4389.128 --- README.md | 15 --------------- src/constants.ts | 4 ++-- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 7c4d958..1da3703 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/src/constants.ts b/src/constants.ts index ff2170e..0731309 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -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],