From 699b5698ddc7c643b8b23de69e3535158997792a Mon Sep 17 00:00:00 2001 From: Richard Woodbury Date: Wed, 13 May 2015 00:07:41 -0400 Subject: [PATCH] Set minimum Chrome version to 42. It would seem there's an ABI change in version 43 of the SDK, which prevents PNaCl from loading on Chrome 41. Setting the minimum Chrome version should prevent older browsers from updating or installing. --- src/manifest.json.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manifest.json.template b/src/manifest.json.template index 7c82a1c..d4e6b11 100644 --- a/src/manifest.json.template +++ b/src/manifest.json.template @@ -1,10 +1,10 @@ { "manifest_version": 2, - "minimum_chrome_version": "31", + "minimum_chrome_version": "42", "name": "${NAME}", "description": "${DESCRIPTION}", "offline_enabled": true, - "version": "0.2.10.${BUILD_NUM}", + "version": "0.2.11.${BUILD_NUM}", "app": { "background": { "scripts": ["background.js"]