diff --git a/config.yaml b/config.yaml index b5895e2..6a050d5 100644 --- a/config.yaml +++ b/config.yaml @@ -1,6 +1,6 @@ name: Linky -description: Sync Energy dashboards with Linky smart meters -version: 1.0.0 +description: Sync Energy dashboards with your Linky smart meter +version: 1.1.0 slug: linky init: false url: https://github.com/bokub/ha-linky diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..6961e9e Binary files /dev/null and b/icon.png differ diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..34956bb Binary files /dev/null and b/logo.png differ diff --git a/package-lock.json b/package-lock.json index 79cdc39..8c12a47 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ha-linky", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ha-linky", - "version": "1.0.0", + "version": "1.1.0", "dependencies": { "chalk": "^5.3.0", "dayjs": "^1.11.9", diff --git a/package.json b/package.json index e601a80..ce08ab0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ha-linky", "private": true, - "version": "1.0.0", + "version": "1.1.0", "type": "module", "scripts": { "build": "tsc", diff --git a/src/linky.ts b/src/linky.ts index c83af32..712d9ac 100644 --- a/src/linky.ts +++ b/src/linky.ts @@ -11,7 +11,7 @@ export class LinkyClient { constructor(token: string, prm: string) { this.prm = prm; this.session = new Session(token, prm); - this.session.userAgent = 'ha-linky/1.0.0'; + this.session.userAgent = 'ha-linky/1.1.0'; } public async getEnergyData(firstDay: null | Dayjs): Promise {