Skip to content

Commit

Permalink
- updated the external link behaviour to skip in game notification
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyusung4698 committed Sep 17, 2020
1 parent 254e64c commit 8048a62
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
5 changes: 4 additions & 1 deletion src/app/core/odk/ow-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<SystemInfo> {
Expand Down

0 comments on commit 8048a62

Please sign in to comment.