Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Release: v3.3.1 - Ledger Nano S Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tayvano committed Nov 27, 2016
1 parent 62f3bdd commit 58e77a5
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app/includes/header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="tagline">
<span style="max-width: 375px" translate="CX_Tagline">Open Source JavaScript Client-Side Ether Wallet Chrome Extension</span>
}
&middot; v3.3.0 &middot;
&middot; v3.3.1 &middot;
<span class="dropdown">
<a href="#" class="dropdown-toggle" ng-click="dropdown = !dropdown"> {{curLang}} <span class="caret"></span></a>
<ul class="dropdown-menu" ng-show="dropdown" style="display:none;" id="langDrop">
Expand Down
2 changes: 1 addition & 1 deletion chrome-extension/cx-wallet.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<div class="tagline">
<span style="max-width: 375px" translate="CX_Tagline">Open Source JavaScript Client-Side Ether Wallet Chrome Extension</span>

&middot; v3.3.0 &middot;
&middot; v3.3.1 &middot;
<span class="dropdown">
<a href="#" class="dropdown-toggle" ng-click="dropdown = !dropdown"> {{curLang}} <span class="caret"></span></a>
<ul class="dropdown-menu" ng-show="dropdown" style="display:none;" id="langDrop">
Expand Down
2 changes: 1 addition & 1 deletion chrome-extension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MyEtherWallet CX",
"version": "3.3.0",
"version": "3.3.1",
"manifest_version": 2,
"description": "MyEtherWallet Chrome Extension",
"homepage_url": "https://www.myetherwallet.com/",
Expand Down
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@



&middot; v3.3.0 &middot;
&middot; v3.3.1 &middot;
<span class="dropdown">
<a href="#" class="dropdown-toggle" ng-click="dropdown = !dropdown"> {{curLang}} <span class="caret"></span></a>
<ul class="dropdown-menu" ng-show="dropdown" style="display:none;" id="langDrop">
Expand Down
24 changes: 13 additions & 11 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ gulp build html styles js (staticJS) copy
bump-patch bumps v from 0.0.1 to 0.0.2
bump-minor bumps v from 0.1.0 to 0.2.0
gulp buildPush no version increase nor tags nor zips: build clean add commit push
gulp buildPrep html styles js copy clean bump-patch zip
gulp prepBump cleans and zips it up: clean bump-patch getV zip
add git add
commit git commit without v number
Expand Down Expand Up @@ -118,7 +119,6 @@ gulp.task( 'styles', function () {
})



// js: Browserify
var js_watchFolder = app + 'scripts/**/*.js'
var js_srcFile = app + 'scripts/main.js'
Expand Down Expand Up @@ -246,7 +246,7 @@ gulp.task('getVersion', function() {

// zips dist folder
gulp.task('zip', ['getVersion'], function() {
return gulp.src( dist + '**/**/*' )
gulp.src( dist + '**/**/*' )
.pipe( plumber ({ errorHandler: onError }))
.pipe( zip ( './dist-' + versionNum + '.zip' ))
.pipe( gulp.dest ( './releases/' ))
Expand Down Expand Up @@ -321,24 +321,26 @@ gulp.task('pushLive', ['getVersion'], function () {


// Watch Tasks
gulp.task('watchJS', function() { gulp.watch( js_watchFolder, ['js' ]) })
gulp.task('watchLess', function() { gulp.watch( less_watchFolder, ['styles']) })
gulp.task('watchPAGES', function() { gulp.watch( htmlFiles, ['html' ]) })
gulp.task('watchTPL', function() { gulp.watch( tplFiles, ['html' ]) })
gulp.task('watchCX', function() { gulp.watch( cxSrcFiles, ['copy' ]) })

gulp.task('watch', ['watchJS' , 'watchLess', 'watchPAGES', 'watchTPL', 'watchCX'])
gulp.task('watchJS', function() { gulp.watch( js_watchFolder, ['js' ]) })
gulp.task('watchLess', function() { gulp.watch( less_watchFolder, ['styles']) })
gulp.task('watchPAGES', function() { gulp.watch( htmlFiles, ['html' ]) })
gulp.task('watchTPL', function() { gulp.watch( tplFiles, ['html' ]) })
gulp.task('watchCX', function() { gulp.watch( cxSrcFiles, ['copy' ]) })

// Build
gulp.task('build', ['html', 'styles', 'js', 'copy'])
gulp.task('watch', ['watchJS' , 'watchLess', 'watchPAGES', 'watchTPL', 'watchCX'])

// Bump Version
gulp.task('bump-patch', function() { return bumpFunc( 'patch' ) })
gulp.task('bump-minor', function() { return bumpFunc( 'minor' ) })

// Build
gulp.task('build', ['html', 'styles', 'js', 'copy'])

// Prep for Release
gulp.task('prep', function(cb) { runSequence('clean', 'zip', cb); });

gulp.task('prepBump', function(cb) { runSequence('clean', 'bump-patch', 'zip', cb); });

// Build, Clean, Push (no v)
gulp.task('buildPush', function(cb) { runSequence('html', 'styles', 'js', 'copy', 'clean', 'add', 'commit', 'push', cb); });

Expand Down
Binary file added releases/chrome-extension-v3.3.1.zip
Binary file not shown.
Binary file added releases/dist-v3.3.1.zip
Binary file not shown.

0 comments on commit 58e77a5

Please sign in to comment.