Skip to content

Commit

Permalink
Merge pull request #243 from Kyusung4698/develop
Browse files Browse the repository at this point in the history
- 0.5.17 (2020-02-16)
  • Loading branch information
Kyusung4698 authored Feb 16, 2020
2 parents 8f1c65e + b13ee64 commit c9d9730
Show file tree
Hide file tree
Showing 50 changed files with 9,976 additions and 8,419 deletions.
3 changes: 2 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
custom: ["https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4S7UYESYQ6UHU&source=url"]
patreon: kyusung4698
custom: ["https://paypal.me/kyusung4698", "https://paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=4S7UYESYQ6UHU"]
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.5.17 (2020-02-16)

- add `escape` to close browser (#222)
- add ui scaling (#214)
- update modifier range clamp function to reset to 0 (#237)
- update highlight hotkey `CTRL + F` to `ALT + F`
- update hotkeys to be non-passive
- update elemental colors (#241)
- update french translations (thanks to vindoq)
- fix non negated negative mods flipped (#239)
- remove modal flag after minimizing browser (#219, #236)

## 0.5.16 (2020-02-13)

- add fast-tag support to exchange rate (#228)
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PoE Overlay 0.5.16
# PoE Overlay 0.5.17

An Overlay for Path of Exile. The ***core aspect*** is to blend in with the game. Built with Electron and Angular.

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

## Features

[![Feature Overview As Video](img/video.jpg)](https://www.youtube.com/watch?v=_cJmW8QkQnM)

* Evaluation of items:
* select your preferred currencies and language
* uses the official pathofexile.com/trade website
Expand All @@ -46,7 +48,7 @@ This project is currently in a ***pilot phase***. If you encounter any bugs or h

* Misc:
* Navigating storage by CTRL + WHEEL
* Highlighting items by CTRL + F
* Highlighting items by ALT + F

* Menu:
* an in game menu to change all settings<br> ![menu](img/menu_0.5.2.jpg)
Expand All @@ -60,7 +62,7 @@ This project is currently in a ***pilot phase***. If you encounter any bugs or h
| Evaluate | 100% | + Basic search implemented <br>+ User settings (display currency, translated language) <br>+ Chart to display values instead of avg <br>+ Advanced search with filter on modifiers |
| Command | 100% | + bind in-game commmands to shortcuts (/dnd, /hideout) |
| Map | 100% | + display map info (layout, bosses, ...)<br>+ customisable mod warnings |
| Misc | 100% | + navigating through storage by CTRL + WHEEL<br> + highlighting items by CTRL + F |
| Misc | 100% | + navigating through storage by CTRL + WHEEL<br> + highlighting items by ALT + F |
| Trade | 0% | - Send messages<br>- Trade UI<br>- etc. |


Expand All @@ -79,9 +81,9 @@ These instructions will set you up to run and enjoy the overlay.

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

#### Shortcuts
Expand Down
4 changes: 2 additions & 2 deletions doc/poe/game_ctlr_c_item.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Item Level: 80
Socketed Gems fire 4 additional Projectiles
Socketed Gems fire Projectiles in a circle
+17 to all Attributes
+6% to all Elemental Resistances
-6% to all Elemental Resistances
67% increased Projectile Damage
20% increased Light Radius
--------
Expand Down Expand Up @@ -233,7 +233,7 @@ Stack Size: 1/3
--------
Vaal Orb
--------
Simple actions can lead the world to an early grave.
Simple actions can lead the world to an early grave.

Rarity: Rare
Onslaught Hand
Expand Down
Binary file modified img/item_0.5.8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/item_browser_0.5.8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/item_filter_0.5.8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/menu_0.5.2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/video.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 18 additions & 8 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ if (!app.requestSingleInstanceLock()) {

app.allowRendererProcessReuse = true;

app.commandLine.appendSwitch('high-dpi-support', 'true');
app.commandLine.appendSwitch('force-device-scale-factor', '1');

const args = process.argv.slice(1),
serve = args.some(val => val === '--serve');

Expand Down Expand Up @@ -177,16 +180,23 @@ function createTray(): Tray {
? new Tray(path.join(__dirname, 'src/favicon.ico'))
: new Tray(path.join(__dirname, 'dist/favicon.ico'));

const items: MenuItemConstructorOptions[] = [{
label: 'Settings', type: 'normal',
click: () => win.webContents.send('show-user-settings'),
}, {
label: 'Exit', type: 'normal',
click: () => app.quit()
}];
const items: MenuItemConstructorOptions[] = [
{
label: 'Settings', type: 'normal',
click: () => win.webContents.send('show-user-settings'),
},
{
label: 'Reset Zoom', type: 'normal',
click: () => win.webContents.send('reset-zoom'),
},
{
label: 'Exit', type: 'normal',
click: () => app.quit()
}
];

if (serve) {
items.splice(1, 0, {
items.splice(2, 0, {
label: 'Ignore Mouse Events', type: 'normal',
click: () => win.setIgnoreMouseEvents(true),
});
Expand Down
43 changes: 42 additions & 1 deletion overlay.babel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<babeledit_project be_version="2.6.1" version="1.2">
<babeledit_project version="1.2" be_version="2.6.1">
<!--

BabelEdit project file
Expand Down Expand Up @@ -4142,6 +4142,47 @@
</translation>
</translations>
</concept_node>
<concept_node>
<name>zoom</name>
<definition_loaded>false</definition_loaded>
<description></description>
<comment></comment>
<default_text></default_text>
<translations>
<translation>
<language>de-DE</language>
<approved>false</approved>
</translation>
<translation>
<language>en-US</language>
<approved>false</approved>
</translation>
<translation>
<language>es-ES</language>
<approved>false</approved>
</translation>
<translation>
<language>fr-FR</language>
<approved>false</approved>
</translation>
<translation>
<language>ko-KR</language>
<approved>false</approved>
</translation>
<translation>
<language>pt-BR</language>
<approved>false</approved>
</translation>
<translation>
<language>ru-RU</language>
<approved>false</approved>
</translation>
<translation>
<language>th-TH</language>
<approved>false</approved>
</translation>
</translations>
</concept_node>
</children>
</folder_node>
</children>
Expand Down
Loading

0 comments on commit c9d9730

Please sign in to comment.