Skip to content

Commit

Permalink
Set minimum Chrome version to 42.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rpwoodbu committed May 13, 2015
1 parent 4b1b762 commit 699b569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/manifest.json.template
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down

0 comments on commit 699b569

Please sign in to comment.