From e64d69bdad0bb302900ec631b54ad6b6d6dcbacd Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Mon, 11 Apr 2022 12:05:53 +0200 Subject: Use appinfo.json instead of config.xml Bug-AGL: SPEC-4251 Change-Id: Ic273c68913afaa2c92326778706cc36499d77d21 Signed-off-by: Jose Dapena Paz --- src/appinfo.json | 11 +++++++++++ src/config.xml | 21 --------------------- webpack.config.js | 2 +- 3 files changed, 12 insertions(+), 22 deletions(-) create mode 100644 src/appinfo.json delete mode 100644 src/config.xml diff --git a/src/appinfo.json b/src/appinfo.json new file mode 100644 index 0000000..4797951 --- /dev/null +++ b/src/appinfo.json @@ -0,0 +1,11 @@ +{ + "id": "webapps-hvac", + "title": "HVAC", + "description": "HTML5 HVAC demo", + "version": "0.0.0", + "vendor": "Igalia, S.L.", + "type": "web", + "main": "index.html", + "uiRevision": "2", + "icon": "icon.svg" +} diff --git a/src/config.xml b/src/config.xml deleted file mode 100644 index f593184..0000000 --- a/src/config.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - HVAC - - - HTML5 HVAC demo - Igalia, S.L. - APL 2.0 - - - - - - - - - - - - - diff --git a/webpack.config.js b/webpack.config.js index 681704b..b300f01 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -34,7 +34,7 @@ module.exports = { flatten: true }, { - from: 'src/config.xml', + from: 'src/appinfo.json', flatten: true }, { -- cgit 1.2.3-korg