diff --git a/angular.json b/angular.json index b1ee726..55bfb85 100644 --- a/angular.json +++ b/angular.json @@ -26,9 +26,24 @@ "src/IcoMoon.ttf", "src/manifest.json", { - "glob": "**/*", + "glob": "background.png", "input": "src/assets/", - "output": "/assets/" + "output": "/" + }, + { + "glob": "icon64.png", + "input": "src/assets/icons/", + "output": "/" + }, + { + "glob": "icon512.png", + "input": "src/assets/icons/", + "output": "/" + }, + { + "glob": "bitbucket64.png", + "input": "src/assets/icons/", + "output": "/" } ], "styles": [ diff --git a/src/app/components/options/options.component.html b/src/app/components/options/options.component.html index 5dc8628..7ff3102 100644 --- a/src/app/components/options/options.component.html +++ b/src/app/components/options/options.component.html @@ -1,6 +1,6 @@
- +

Extension settings

@@ -53,7 +53,7 @@

Notifications

- +

Bitbucket

diff --git a/src/manifest.json b/src/manifest.json index 75a870a..f11834e 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -4,8 +4,8 @@ "version": "0.1.12", "description": "Extension to send notifications for bitbucket pull-request events. Tested on bitbucket server.", "icons": { - "64": "assets/icons/icon64.png", - "512": "assets/icons/icon512.png" + "64": "icon64.png", + "512": "icon512.png" }, "browser_action": { "default_popup": "index.html"