taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit fd307958478dbfe3d9b22efb469234f4c0539713
parent ef15d701380a69c81343be519895d80d680effde
Author: tg(x) <*@tg-x.net>
Date:   Fri, 21 Oct 2016 21:28:18 +0200

manifest: author, icons, stable name

Diffstat:
Mgulpfile.js | 2+-
Mmanifest.json | 16+++++++++++++---
2 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/gulpfile.js b/gulpfile.js @@ -236,7 +236,7 @@ gulp.task("compile-prod", ["clean"], function () { gulp.task("manifest-stable", ["clean"], function () { return gulp.src("manifest.json") .pipe(jsonTransform((data) => { - data.name = "GNU Taler Wallet (stable)"; + data.name = "GNU Taler Wallet"; return data; }, 2)) .pipe(gulp.dest("build/ext/")); diff --git a/manifest.json b/manifest.json @@ -1,7 +1,9 @@ { - "description": "Privacy preserving and transparent payments", "manifest_version": 2, + "name": "GNU Taler Wallet (git)", + "description": "Privacy preserving and transparent payments", + "author": "GNU Taler Developers", "version": "0.6.22", "version_name": "0.1.2", @@ -15,6 +17,11 @@ } }, + "icons": { + "32": "img/icon.png", + "128": "img/logo.png" + }, + "permissions": [ "storage", "tabs", @@ -25,7 +32,9 @@ ], "browser_action": { - "default_icon": "img/icon.png", + "default_icon": { + "32": "img/icon.png" + }, "default_title": "Taler", "default_popup": "popup/popup.html" }, @@ -48,6 +57,7 @@ ], "background": { - "page": "background/background.html" + "page": "background/background.html", + "persistent": true } }