Skip to content

Commit

Permalink
- 1.0.13 (2021-01-15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyusung4698 committed Jan 15, 2021
1 parent f7919bc commit c961eab
Show file tree
Hide file tree
Showing 24 changed files with 15,703 additions and 299,375 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.13 (2021-01-15)

- update items, stats & mods to patch 3.13.0

## 1.0.12 (2020-11-08)

- added stash folder layout support
Expand Down
2 changes: 1 addition & 1 deletion 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.12",
"version": "1.0.13",
"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",
Expand Down
1,879 changes: 940 additions & 939 deletions overlay.babel

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "poe-overlay-overwolf",
"version": "1.0.12",
"version": "1.0.13",
"scripts": {
"watch": "ng build --watch",
"watch:prod": "ng build --watch --prod",
Expand Down
2 changes: 1 addition & 1 deletion src/app/core/annotation/annotation.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const ANNOTATIONS: Annotation[] = [
hotkey: Hotkey.SettingsToggle
},
{ id: 'thanks' },
{ id: 'changelog-1-0-12' },
{ id: 'changelog-1-0-13' },
];

@Injectable({
Expand Down
4 changes: 2 additions & 2 deletions src/app/core/odk/ow-file-listener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class OWFileListener {

private onListenOnFile = (event: OWFileListenerResult): void => {
if (!event.success || event.error) {
this.delegate.onError(event.error)
this.delegate.onError(event.error);
this.restart();
return;
}
Expand All @@ -58,7 +58,7 @@ export class OWFileListener {
try {
info = JSON.parse(event.info);
} catch (error) {
this.delegate.onError(error)
this.delegate.onError(error);
this.restart();
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/data/poe/schema/trade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export enum Language {
Spanish = 7,
Korean = 8,
// SimplifiedChinese = 9,
TraditionalChinese = 10,
// TraditionalChinese = 10,
}

export interface TradeHttpResponse<TResult> {
Expand Down
6 changes: 3 additions & 3 deletions src/app/data/poe/service/trade-http.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ export class TradeHttpService {
// case Language.SimplifiedChinese:
// baseUrl = environment.poe.simplifiedChineseUrl;
// break;
case Language.TraditionalChinese:
baseUrl = environment.poe.traditionalChineseUrl;
break;
// case Language.TraditionalChinese:
// baseUrl = environment.poe.traditionalChineseUrl;
// break;
default:
throw new Error(`Could not map baseUrl to language: '${language}'.`);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export class ClientStringProvider {
return content.Korean;
// case Language.SimplifiedChinese:
// return SimplifiedChinese;
case Language.TraditionalChinese:
return content.TraditionalChinese;
// case Language.TraditionalChinese:
// return content.TraditionalChinese;
default:
throw new Error(`Could not map clientstrings to language: '${Language[language]}'.`);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ describe('ClientStringService', () => {
Language.French,
Language.Spanish,
Language.Korean,
Language.TraditionalChinese,
];

const ids = [
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/module/poe/db/db-item.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const LANGUAGE_MAPPING = {
[Language.Spanish]: 'sp',
[Language.Thai]: 'th',
// [Language.SimplifiedChinese]: 'cn',
[Language.TraditionalChinese]: 'tw',
// [Language.TraditionalChinese]: 'tw',
};


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ describe('BaseItemTypeService', () => {
Language.French,
Language.Spanish,
Language.Korean,
Language.TraditionalChinese,
];
const texts = [
'Orbe du chaos',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export class BaseItemTypesProvider {
return content.Korean;
// case Language.SimplifiedChinese:
// return SimplifiedChinese;
case Language.TraditionalChinese:
return content.TraditionalChinese;
// case Language.TraditionalChinese:
// return content.TraditionalChinese;
default:
throw new Error(`Could not map words to language: '${Language[language]}'.`);
}
Expand Down
1 change: 0 additions & 1 deletion src/app/shared/module/poe/item/word/word.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ describe('WordService', () => {
Language.French,
Language.Spanish,
Language.Korean,
Language.TraditionalChinese,
];
const texts = [
'Vix Lunaris',
Expand Down
4 changes: 2 additions & 2 deletions src/app/shared/module/poe/item/word/words.provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export class WordsProvider {
return content.Korean;
// case Language.SimplifiedChinese:
// return SimplifiedChinese;
case Language.TraditionalChinese:
return content.TraditionalChinese;
// case Language.TraditionalChinese:
// return content.TraditionalChinese;
default:
throw new Error(`Could not map words to language: '${Language[language]}'.`);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('ItemPricePredictionService', () => {
const context = TestBed.inject<ContextService>(ContextService);
context.update({
language: Language.English
})
});
});

it('should return items', (done) => {
Expand Down
6 changes: 3 additions & 3 deletions src/assets/i18n/english.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"message": "Opens a webpage on hotkey press in the in-game browser.\n\nTry the hotkey below to open poe.ninja.",
"title": "Bookmarks"
},
"changelog-1-0-12": {
"message": "- added stash folder layout support\n- update items, stats & mods to patch 3.12.4d\n- fixed an issue at the evaluate dialog input not focusable",
"title": "What's new in 1.0.12?"
"changelog-1-0-13": {
"message": "- update items, stats & mods to patch 3.13.0",
"title": "What's new in 1.0.13?"
},
"commands": {
"message": "All game commands can be bound to hotkeys.\n\nThere are also placeholders like @char available which will be replaced before executing the command.\n\nTry the hotkey below to teleport into your hideout.",
Expand Down
Loading

0 comments on commit c961eab

Please sign in to comment.