Skip to content

Commit

Permalink
new version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xtonwallet committed Mar 31, 2023
1 parent 9da183d commit 7daeb3b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [v2.0.10](https://github.com/xtonwallet/web-extension/compare/v2.0.9...v2.0.10)
## [v2.1.0](https://github.com/xtonwallet/web-extension/compare/v2.0.10...v2.1.0)

### Commits

- TON connect 2.0 [`64bb2c2`](https://github.com/xtonwallet/web-extension/commit/64bb2c245506953d5e413a1dfa08a667ecce8a71)
- * min chrome version [`e810811`](https://github.com/xtonwallet/web-extension/commit/e81081117b7bf3dcd832bc97701522858206d638)
- new version 2.0.10 [`b1326b9`](https://github.com/xtonwallet/web-extension/commit/b1326b96740be2611e077ffd17b266df4bef3fc1)

## [v2.0.10](https://github.com/xtonwallet/web-extension/compare/v2.0.9...v2.0.10) - 2023-01-11

### Commits

Expand Down
10 changes: 10 additions & 0 deletions gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ gulp.task('manifest:firefox', function () {
.pipe(gulp.dest('./builds/firefox', { overwrite: true }));
});

gulp.task('manifest:opera', function () {
return gulp.src('./builds/opera/manifest.json')
.pipe(jsoneditor(function (json) {
delete json.short_name;
return json;
}))
.pipe(gulp.dest('./builds/opera', { overwrite: true }));
});

gulp.task('optimize:images', function () {
return gulp.src('./builds/**/images/**', { base: './builds/' })
.pipe(imagemin())
Expand All @@ -110,6 +119,7 @@ gulp.task('copy',
gulp.parallel(...copyTaskNames),
'manifest:firefox',
'manifest:chrome',
'manifest:opera',
)
);

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"homepage_url": "https://xtonwallet.com/",
"version": "2.0.10",
"version": "2.1.0",
"name": "__MSG_extName__",
"short_name": "__MSG_extShortName__",
"description": "__MSG_extDescription__",
Expand Down

0 comments on commit 7daeb3b

Please sign in to comment.