Skip to content

Commit

Permalink
Merge pull request #738 from Kyusung4698/develop
Browse files Browse the repository at this point in the history
1.0.2 (2020-06-16)
  • Loading branch information
Kyusung4698 authored Jun 16, 2020
2 parents da948b2 + 439b6b9 commit 5461d45
Show file tree
Hide file tree
Showing 151 changed files with 5,980 additions and 792 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ speed-measure-plugin*.json
!.vscode/extensions.json
.history/*

# release
/release

# misc
/.sass-cache
/connect.lock
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 1.0.2 (2020-06-16)

- added misc module
- stash highlight on `alt+f`
- added trade module
- support for poe.app, poemap.live, poe.trade, official trade
- view incoming/ outgoing trades
- invite/ trade player
- highlight items in stash
- added open poeprices.info url on source click
- fixed a first time launching error occuring if the GGG API could not be reached

## 1.0.0 (2020-06-10)

- added added a interactive introduction
Expand Down
6 changes: 6 additions & 0 deletions FEATURES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Quickly evaluate your items. Properties can be added and removed from the query

![Downloaded](img/feature_evaluate.jpg)

### Trade

Manage incoming and outgoing trade requests by sending messages, inviting players and initiating trades via simple clicks.

![Downloaded](img/feature_trade.jpg)

### Market

Filter the listings to find your perfect item on the market and finally request the item with a single click.
Expand Down
3 changes: 2 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"src/assets/images"
"src/assets/images",
"src/assets/audio"
],
"styles": [
"src/styles.scss",
Expand Down
Binary file added img/feature_trade.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
40 changes: 36 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"meta": {
"name": "PoE Overlay",
"author": "Kyusung4698",
"version": "1.0.1",
"version": "1.0.2",
"minimum-overwolf-version": "0.147.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",
Expand All @@ -19,7 +19,8 @@
"GameInfo",
"GameControl",
"Clipboard",
"VideoCaptureSettings"
"VideoCaptureSettings",
"FileSystem"
],
"data": {
"start_window": "background",
Expand Down Expand Up @@ -104,7 +105,7 @@
"block_top_window_navigation": true,
"disable_restore_animation": true,
"disable_rightclick": true,
"transparent": true,
"transparent": true,
"size": {
"width": 1212,
"height": 699
Expand All @@ -125,13 +126,39 @@
"height": 327
}
},
"annotation": {
"annotation": {
"file": "dist/poe-overlay-overwolf/index.html",
"in_game_only": true,
"block_top_window_navigation": true,
"disable_restore_animation": true,
"disable_rightclick": true,
"transparent": true,
"size": {
"width": 1212,
"height": 699
}
},
"trade": {
"file": "dist/poe-overlay-overwolf/index.html",
"in_game_only": true,
"block_top_window_navigation": true,
"disable_restore_animation": true,
"disable_rightclick": true,
"transparent": true,
"resizable": true,
"size": {
"width": 1212,
"height": 699
}
},
"tradehighlight": {
"file": "dist/poe-overlay-overwolf/index.html",
"in_game_only": true,
"block_top_window_navigation": true,
"disable_restore_animation": true,
"disable_rightclick": true,
"transparent": true,
"resizable": true,
"size": {
"width": 1212,
"height": 699
Expand Down Expand Up @@ -236,6 +263,11 @@
"bookmark6": {
"title": "Open Bookmark 6",
"action-type": "custom"
},
"misc-stash-highlight": {
"title": "Highlight Item in Stash",
"action-type": "custom",
"default": "Alt+F"
}
},
"externally_connectable": {
Expand Down
Loading

0 comments on commit 5461d45

Please sign in to comment.