Skip to content

Commit 4ebf810

Browse files
ThorConzalesThorConzales
authored andcommitted
v.1.2.0
1 parent 1872b36 commit 4ebf810

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

Backend/Global/Variables.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
namespace Backend.Global {
1414
public class Variables {
15-
public static int NumericVersion = 2;
16-
public static bool ReplayMode = true;
15+
public static int NumericVersion = 3;
16+
public static bool ReplayMode = false;
1717
public static bool LobbySession = false;
1818
public static string NethookDumpDir { get; set; }
1919
public static string NethookDumpDirParsed { get; set; }

Client/Client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "AoE2HDLobbyCompanion",
3-
"version": "1.0.0",
3+
"version": "1.2.0",
44
"description": "Age of Empires 2 Lobby Companion Client",
55
"homepage": "http://aoe2lc.net",
66
"author": {

Client/Client/rcedit.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "FileDescription" "AoE 2 HD Lobby Companion"
2-
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "LegalCopyright" "AoE2HDLobbyCompanion"
1+
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "LegalCopyright" "AoE2HDLobbyCompanion"
32
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "ProductName" "AoE2HDLobbyCompanion"
43
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "OriginalFilename" "AoE2HDLobbyCompanion.exe"
5-
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "CompanyName" "AoE 2 HD Lobby Companion"
4+
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "CompanyName" "AoE 2 HD Lobby Companion"
5+
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "FileDescription" "AoE 2 HD Lobby Companion"

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { TrackingService, ConfigurationService } from './';
99

1010
@Injectable()
1111
export class AppService {
12-
public stringVersion = "1.1.0";
12+
public stringVersion = "1.2.0";
1313
public lobbiesPageOpened = false;
1414
public sessionRunning = false;
1515
private nethookActive = false;
@@ -19,15 +19,15 @@ export class AppService {
1919
}
2020

2121
constructor(private toastsManager: ToastsManager, private trackingService: TrackingService, private configurationService: ConfigurationService) {
22-
//this.startBackend();
23-
//window.onbeforeunload = (e) => {
24-
// if (this.nethookActive) {
25-
// this.stopNethook(() => { });
26-
// }
27-
// if (this.backendProcess) {
28-
// this.backendProcess.kill();
29-
// }
30-
//}
22+
this.startBackend();
23+
window.onbeforeunload = (e) => {
24+
if (this.nethookActive) {
25+
this.stopNethook(() => { });
26+
}
27+
if (this.backendProcess) {
28+
this.backendProcess.kill();
29+
}
30+
}
3131
}
3232

3333
public toastInfo(message: string) {

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.0.0";
8+
private version: "1.2.0";
99

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

0 commit comments

Comments
 (0)