Skip to content

Commit 619084c

Browse files
author
ThorConzales
committed
Update
1 parent 4926ae0 commit 619084c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Backend/Global/Variables.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace Backend.Global {
1414
public class Variables {
15-
public static int NumericVersion = 5;
15+
public static int NumericVersion = 6;
1616
public static bool ReplayMode = true;
1717
public static bool LobbySession = false;
1818
public static string NethookDumpDir { get; set; }

Backend/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerF
5050
app.UseMvc();
5151

5252
if (Variables.ReplayMode) {
53-
Variables.NethookDumpDir = @"C:\Steam\nethook\_Aoe2HostLobby";
53+
Variables.NethookDumpDir = @"C:\Steam\nethook\_Aoe2HostLobby3";
5454
} else {
5555
_netHookDumpReaderJob = new NetHookDumpReaderJob();
5656
}

Client/Client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "AoE2HDLobbyCompanion",
3-
"version": "1.3.0",
4-
"description": "Age of Empires 2 Lobby Companion Client",
3+
"version": "1.4.0",
4+
"description": "Age of Empires 2 HD Lobby Companion Client",
55
"homepage": "http://aoe2lc.net",
66
"author": {
77
"name": "Thor Conzales",

Client/Client/src/app/history/history-page/history-page.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ export class HistoryPageComponent implements OnInit {
4242
this.trackingService.sendEvent("HistoryPage", "OpenMatchDetails");
4343
}
4444

45+
public showOnlyStartedLobbiesChanged() {
46+
this.matchHistoryDataSource = new MatchHistoryDataSource(this.matches, this.paginator, this.showOnlyStartedLobbies)
47+
}
48+
4549
private getMatches() {
4650
this.loading = true;
4751
this.httpService.get<MatchHistory[]>("/api/matchHistory").subscribe(matches => {
@@ -53,10 +57,6 @@ export class HistoryPageComponent implements OnInit {
5357
this.appService.toastError("Failed to retrieve history.");
5458
});
5559
}
56-
57-
private showOnlyStartedLobbiesChanged() {
58-
this.matchHistoryDataSource = new MatchHistoryDataSource(this.matches, this.paginator, this.showOnlyStartedLobbies)
59-
}
6060
}
6161

6262
export class MatchHistoryDataSource extends DataSource<MatchHistory> {

Client/Client/src/app/shared/app.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Injectable, Inject, forwardRef } from '@angular/core';
1+
import { Injectable, Inject, forwardRef } from '@angular/core';
22
import { remote } from 'electron';
33
import { spawn, spawnSync, ChildProcess } from 'child_process';
44
import { MdDialog } from '@angular/material';
@@ -11,7 +11,7 @@ import { Reputation } from '../app.models';
1111

1212
@Injectable()
1313
export class AppService {
14-
public stringVersion = "1.3.0";
14+
public stringVersion = "1.4.0";
1515
public lobbiesPageOpened = false;
1616
public sessionRunning = false;
1717
private nethookActive = false;

Client/Client/src/app/shared/tracking.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ConfigurationService } from './';
55
@Injectable()
66
export class TrackingService {
77
private analytics;
8-
private version: "1.3.0";
8+
private version: "1.4.0";
99

1010
constructor(private configurationService: ConfigurationService) {
1111
try {

0 commit comments

Comments
 (0)