Skip to content

Commit

Permalink
Merge pull request #1 from Kyusung4698/translations
Browse files Browse the repository at this point in the history
Translations
  • Loading branch information
Kyusung4698 authored Jan 3, 2020
2 parents 803f0d0 + 113924a commit e041f82
Show file tree
Hide file tree
Showing 109 changed files with 263,968 additions and 552 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## 0.2.0 (2020-01-03)

* add favicon
* add country specific trade api
* add user settings dialog with league and language
* add localforage to store user settings
* add "client string", "words" and "base item type" from content.ggpk as service
* add "stats-descriptions" to translate item mods
* add "map" and "divination cards" translation support
* add languages English, Portuguese, Russian, Thai, German, French, Spanish and Korean
* update use translated item names for poe.trade
* update theme based on poe color palette

## 0.1.0 (2019-12-28)

* added item evaluation
* added currency conversion
* added ingame search
* add item evaluation
* add currency conversion
* add ingame search
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PoE Overlay
# PoE Overlay 0.2.0

A Overlay for Path of Exile. Providing advanced features like evaluating items. The ***core aspect*** is to blend in game. Built with Electron and Angular.

Expand Down Expand Up @@ -32,6 +32,7 @@ This project is currently in a ***pilot phase***. If you encounter any bugs or h

## Features

* Translating of item names from your client language into english.
* Evaluating of item prices from `poe.trade` in `Chaos Orbs` uses the values of the currency market from `poe.ninja` to convert the currencies.
* Modal dialog to open the search result website *in game*.

Expand All @@ -41,9 +42,9 @@ This project is currently in a ***pilot phase***. If you encounter any bugs or h

| Module | Status | Notes |
| ------------- |-------------: | ------- |
| Core | 50% | + overlay<br>+ global shortcuts<br>- auto updating<br>- user settings like league, custom shortcuts etc.
| Shared | 25% | + item frame<br>+ currency frame<br>- item parser in all languages<br>- item parser reliablity improvement
| Evaluate | 33% | + Basic search implemented <br>- Advanced search with filter on modifiers <br>- Chart to display values instead of avg |
| Core | 70% | + overlay<br>+ global shortcuts<br>+ user settings (language, league)<br>- custom shortcuts.<br>- auto updating
| Shared | 100% | + item frame<br>+ currency frame<br>+ item parser in all languages<br>+ item parser mods
| Evaluate | 50% | + Basic search implemented <br>- Advanced search with filter on modifiers <br>- Chart to display values instead of avg |
| Trade | 0% | - Send messages<br>- Trade UI<br>- etc. |
| Command | 0% | - bind in-game commmands to shortcuts (like /dnd, /hideout) |

Expand All @@ -57,21 +58,24 @@ These instructions will get you a executable to run and enjoy the overlay.
#### Prerequisites

* Path of Exile ***must be*** in windowed fullscreen mode
* Path of Exile ***must be*** in language english
* Path of Exile ***must be*** using the latest league (Metamorph)

#### Installing

1. Head over to [Releases](https://github.com/Kyusung4698/PoE-Overlay/releases) and download the latest zip
2. Extract zip
3. Run `poe-overlay.exe`
4. Wait until you can see `POE Overlay 0.2.0` in the bottom left corner
5. Hit `f7` and set `Language` and `League` to meet your game settings
6. Start PoE

#### Shortcuts

|Shortcut |Description
|--- |---
| `ctrl+d` | Displays the item in a frame and evaluates the price. You can open poe.trade on click of the currency value.
| `f5` | Exits overlay
| `ctrl+t` | '' same as above '' but displays the item translated in english.
| `f7` | Opens user settings
| `f8` | Exits overlay

## Developer

Expand Down
10 changes: 6 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"src/assets"
],
"styles": [
"src/styles.scss"
"src/styles.scss",
"src/assets/icons/material-icons.css"
],
"scripts": []
},
Expand All @@ -52,8 +53,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
"maximumWarning": "10mb",
"maximumError": "20mb"
},
{
"type": "anyComponentStyle",
Expand Down Expand Up @@ -93,7 +94,8 @@
"src/assets"
],
"styles": [
"src/styles.scss"
"src/styles.scss",
"src/assets/icons/material-icons.css"
],
"scripts": []
}
Expand Down
Loading

0 comments on commit e041f82

Please sign in to comment.