Skip to content

Commit

Permalink
Updated NetHook2 DLL which now supports WebSocket connection intercep…
Browse files Browse the repository at this point in the history
…tion and thus should fix occasional lobby data not being displayed bug
  • Loading branch information
ThorConzales authored and ThorConzales committed Sep 3, 2017
1 parent 5e7bd45 commit 2b48ee5
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Backend/Global/Variables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

namespace Backend.Global {
public class Variables {
public static int NumericVersion = 3;
public static int NumericVersion = 4;
public static bool ReplayMode = false;
public static bool LobbySession = false;
public static string NethookDumpDir { get; set; }
Expand Down
Binary file modified Client/Client/NetHook2.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Client/Client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AoE2HDLobbyCompanion",
"version": "1.2.0",
"version": "1.2.1",
"description": "Age of Empires 2 Lobby Companion Client",
"homepage": "http://aoe2lc.net",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion Client/Client/src/app/shared/app.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { TrackingService, ConfigurationService } from './';

@Injectable()
export class AppService {
public stringVersion = "1.2.0";
public stringVersion = "1.2.1";
public lobbiesPageOpened = false;
public sessionRunning = false;
private nethookActive = false;
Expand Down
2 changes: 1 addition & 1 deletion Client/Client/src/app/shared/tracking.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ConfigurationService } from './';
@Injectable()
export class TrackingService {
private analytics;
private version: "1.2.0";
private version: "1.2.1";

constructor(private configurationService: ConfigurationService) {
try {
Expand Down

0 comments on commit 2b48ee5

Please sign in to comment.