From 8048a62ce41583de47eb89edbc25beb1fc443289 Mon Sep 17 00:00:00 2001 From: Nicklas Ronge Date: Thu, 17 Sep 2020 18:22:46 +0200 Subject: [PATCH] - updated the external link behaviour to skip in game notification --- CHANGELOG.md | 1 + manifest.json | 2 +- src/app/core/odk/ow-utils.ts | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c5397fe..d1546f2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 1.0.11 (2020-09-17) +- updated the external link behaviour to skip in game notification - fixed an issue with too long stats at the market window (#814) ## 1.0.10 (2020-08-02) diff --git a/manifest.json b/manifest.json index 31390904..027a5135 100644 --- a/manifest.json +++ b/manifest.json @@ -5,7 +5,7 @@ "name": "PoE Overlay", "author": "Kyusung4698", "version": "1.0.10", - "minimum-overwolf-version": "0.147.0", + "minimum-overwolf-version": "0.153.0", "description": "Search the market and send trade offers. Get current market values for your item. View insights for maps and items.", "dock_button_title": "PoE Overlay", "icon": "assets/logo.png", diff --git a/src/app/core/odk/ow-utils.ts b/src/app/core/odk/ow-utils.ts index 84c08c69..113e9a5e 100644 --- a/src/app/core/odk/ow-utils.ts +++ b/src/app/core/odk/ow-utils.ts @@ -26,7 +26,10 @@ export class OWUtils { } public static openUrlInDefaultBrowser(url: string): void { - overwolf.utils.openUrlInDefaultBrowser(url); + // TODO: Update types + (overwolf.utils.openUrlInDefaultBrowser as any)(url, { + skip_in_game_notification: true + }); } public static getSystemInformation(): Observable {