diff --git a/README.md b/README.md index 69ad81b..58b2dc1 100644 --- a/README.md +++ b/README.md @@ -127,6 +127,8 @@ If you have any further questions, please contact us at [support@tracetronic.com This work is licensed under MIT license. This project is based on the boilerplate [Chrome Extension Webpack](https://github.com/sszczep/chrome-extension-webpack) from Sebastian SzczepaƄski. You can find the original license text inside [LICENSE.original](./LICENSE.original). +The logos and icons under `static/icons/tracetronic` are Copyright (c) [tracetronic GmbH](https://www.tracetronic.com/) and may be used within this project and may be published to firefox and chrome webstores as part of this project + This project uses the [Red Hat Display Text Font](https://github.com/RedHatOfficial/RedHatFont) with is licensed under SIL OPEN FONT LICENSE Version 1.1 (see [OFL-1.1.txt](./LICENSES/OFL-1.1.txt)) This project uses the [Material Symbols Outlined Font](https://fonts.google.com/icons) with is licensed under Apache License Version 2.0 (see [Apache-2.0.txt](./LICENSES/Apache-2.0.txt)) diff --git a/src/popup.ts b/src/popup.ts index 6f3698f..e82177d 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -138,7 +138,7 @@ function createFileListItem(file: ModifiedFile, index: number) { const ext = getFileExt(file.filename); if (SUPPORTED_FILES.includes(ext)) { const fileImg = document.createElement('img'); - fileImg.src = `icons/${ext}.png`; + fileImg.src = `icons/tracetronic/${ext}.png`; fileImg.classList.add('icon'); fileInfoContainer.appendChild(fileImg); } diff --git a/static/icons/128x.png b/static/icons/tracetronic/128x.png similarity index 100% rename from static/icons/128x.png rename to static/icons/tracetronic/128x.png diff --git a/static/icons/16x.png b/static/icons/tracetronic/16x.png similarity index 100% rename from static/icons/16x.png rename to static/icons/tracetronic/16x.png diff --git a/static/icons/32x.png b/static/icons/tracetronic/32x.png similarity index 100% rename from static/icons/32x.png rename to static/icons/tracetronic/32x.png diff --git a/static/icons/48x.png b/static/icons/tracetronic/48x.png similarity index 100% rename from static/icons/48x.png rename to static/icons/tracetronic/48x.png diff --git a/static/icons/pkg.png b/static/icons/tracetronic/pkg.png similarity index 100% rename from static/icons/pkg.png rename to static/icons/tracetronic/pkg.png diff --git a/static/icons/prj.png b/static/icons/tracetronic/prj.png similarity index 100% rename from static/icons/prj.png rename to static/icons/tracetronic/prj.png diff --git a/static/icons/ta.png b/static/icons/tracetronic/ta.png similarity index 100% rename from static/icons/ta.png rename to static/icons/tracetronic/ta.png diff --git a/static/icons/trf.png b/static/icons/tracetronic/trf.png similarity index 100% rename from static/icons/trf.png rename to static/icons/tracetronic/trf.png diff --git a/static/manifest.json b/static/manifest.json index 6a9f8d2..11cc4f5 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -18,16 +18,16 @@ "default_title": "Open with ecu.test diff", "default_popup": "popup.html", "default_icon": { - "16": "icons/16x.png", - "32": "icons/32x.png", - "48": "icons/48x.png", - "128": "icons/128x.png" + "16": "icons/tracetronic/16x.png", + "32": "icons/tracetronic/32x.png", + "48": "icons/tracetronic/48x.png", + "128": "icons/tracetronic/128x.png" } }, "icons": { - "16": "icons/16x.png", - "32": "icons/32x.png", - "48": "icons/48x.png", - "128": "icons/128x.png" + "16": "icons/tracetronic/16x.png", + "32": "icons/tracetronic/32x.png", + "48": "icons/tracetronic/48x.png", + "128": "icons/tracetronic/128x.png" } }