From f6ea631fc13967d80de793b5f6899fbd3aacfdf5 Mon Sep 17 00:00:00 2001 From: Nicklas Ronge Date: Tue, 28 Jul 2020 17:51:58 +0200 Subject: [PATCH] - bump version 1.0.9 --- manifest.json | 2 +- package.json | 2 +- .../service/overview-http.service.ts | 2 +- .../market-listing-status.component.spec.ts | 4 ++- .../misc-settings.component.spec.ts | 25 ------------------- 5 files changed, 6 insertions(+), 29 deletions(-) delete mode 100644 src/app/modules/misc/component/misc-settings/misc-settings.component.spec.ts diff --git a/manifest.json b/manifest.json index b18c7b22..339f0753 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "meta": { "name": "PoE Overlay", "author": "Kyusung4698", - "version": "1.0.8", + "version": "1.0.9", "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", diff --git a/package.json b/package.json index 90bc55ac..c7a42c62 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "poe-overlay-overwolf", - "version": "1.0.8", + "version": "1.0.9", "scripts": { "watch": "ng build --watch", "watch:prod": "ng build --watch --prod", diff --git a/src/app/data/poe-ninja/service/overview-http.service.ts b/src/app/data/poe-ninja/service/overview-http.service.ts index 67ece8a1..d2db243c 100644 --- a/src/app/data/poe-ninja/service/overview-http.service.ts +++ b/src/app/data/poe-ninja/service/overview-http.service.ts @@ -1,7 +1,7 @@ import { TradeLeaguesHttpLeague } from '@data/poe/schema'; export abstract class OverviewHttpService { - protected getLeaguePath(leagueId: string): string { + public getLeaguePath(leagueId: string): string { switch (leagueId) { case TradeLeaguesHttpLeague.Standard: return 'standard'; diff --git a/src/app/modules/market/component/market-listing-status/market-listing-status.component.spec.ts b/src/app/modules/market/component/market-listing-status/market-listing-status.component.spec.ts index a328a0de..b5db63b2 100644 --- a/src/app/modules/market/component/market-listing-status/market-listing-status.component.spec.ts +++ b/src/app/modules/market/component/market-listing-status/market-listing-status.component.spec.ts @@ -1,5 +1,6 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TranslateFakeLoader, TranslateLoader, TranslateModule } from '@ngx-translate/core'; +import { CommonModule } from '@shared/module/common/common.module'; import { MarketListingStatusComponent } from './market-listing-status.component'; @@ -16,7 +17,8 @@ describe('MarketListingStatusComponent', () => { provide: TranslateLoader, useFactory: () => new TranslateFakeLoader() } - }) + }), + CommonModule ] }) .compileComponents(); diff --git a/src/app/modules/misc/component/misc-settings/misc-settings.component.spec.ts b/src/app/modules/misc/component/misc-settings/misc-settings.component.spec.ts deleted file mode 100644 index 723f9e1a..00000000 --- a/src/app/modules/misc/component/misc-settings/misc-settings.component.spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { async, ComponentFixture, TestBed } from '@angular/core/testing'; - -import { MiscSettingsComponent } from './misc-settings.component'; - -describe('MiscSettingsComponent', () => { - let component: MiscSettingsComponent; - let fixture: ComponentFixture; - - beforeEach(async(() => { - TestBed.configureTestingModule({ - declarations: [ MiscSettingsComponent ] - }) - .compileComponents(); - })); - - beforeEach(() => { - fixture = TestBed.createComponent(MiscSettingsComponent); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -});