Merge pull request #492 from MetaMask/FixChromeBuild

Fix chrome build
feature/default_network_editable
Dan Finlay 8 years ago committed by GitHub
commit 7a8d049732
  1. 7
      CHANGELOG.md
  2. 6
      app/manifest.json
  3. 3
      gulpfile.js

@ -3,12 +3,15 @@
## Current Master ## Current Master
- Fix bug where web3 would sometimes not be injected in time for the application. - Fix bug where web3 would sometimes not be injected in time for the application.
- Fixed bug where sometimes when opening the plugin, it would not fully open until closing and re-opening.
- Got most functionality working within Firefox.
## 2.7.0 2016-07-21
- Added a Warning screen about storing ETH - Added a Warning screen about storing ETH
- Add buy Button! - Add buy Button!
- MetaMask now throws descriptive errors when apps try to use synchronous web3 methods. - MetaMask now throws descriptive errors when apps try to use synchronous web3 methods.
- Removed firefox-specific line in manifest. - Removed firefox-specific line in manifest.
- Got most functionality working within Firefox.
- Fixed bug where sometimes when opening the plugin, it would not fully open until closing and re-opening.
## 2.6.2 2016-07-20 ## 2.6.2 2016-07-20

@ -1,9 +1,9 @@
{ {
"name": "__MSG_appName__", "name": "MetaMask",
"short_name": "Metamask", "short_name": "Metamask",
"version": "2.6.2", "version": "2.7.0",
"manifest_version": 2, "manifest_version": 2,
"description": "__MSG_appDescription__", "description": "Ethereum Browser Extension",
"icons": { "icons": {
"16": "images/icon-16.png", "16": "images/icon-16.png",
"128": "images/icon-128.png" "128": "images/icon-128.png"

@ -63,7 +63,6 @@ gulp.task('copy:chrome', gulp.series(
copyTask({ copyTask({
source: './dist/firefox', source: './dist/firefox',
destination: './dist/chrome', destination: './dist/chrome',
pattern: '**/*'
}), 'manifest:cleanup')) }), 'manifest:cleanup'))
gulp.task('copy', gulp.series(gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root'), 'copy:chrome')) gulp.task('copy', gulp.series(gulp.parallel('copy:locales','copy:images','copy:fonts','copy:reload','copy:root'), 'copy:chrome'))
gulp.task('copy:watch', function(){ gulp.task('copy:watch', function(){
@ -104,7 +103,7 @@ gulp.task('build:js:background', bundleTask({ watch: false, filename: 'backgroun
gulp.task('build:js:popup', bundleTask({ watch: false, filename: 'popup.js' })) gulp.task('build:js:popup', bundleTask({ watch: false, filename: 'popup.js' }))
gulp.task('build:js', gulp.parallel('build:js:inpage','build:js:contentscript','build:js:background','build:js:popup')) gulp.task('build:js', gulp.parallel('build:js:inpage','build:js:contentscript','build:js:background','build:js:popup'))
// clean dist/firefox // clean dist
gulp.task('clean', function clean() { gulp.task('clean', function clean() {

Loading…
Cancel
Save