Skip to content

Commit

Permalink
v.1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ThorConzales authored and ThorConzales committed Aug 31, 2017
1 parent 1872b36 commit 4ebf810
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions Backend/Global/Variables.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

namespace Backend.Global {
public class Variables {
public static int NumericVersion = 2;
public static bool ReplayMode = true;
public static int NumericVersion = 3;
public static bool ReplayMode = false;
public static bool LobbySession = false;
public static string NethookDumpDir { get; set; }
public static string NethookDumpDirParsed { get; set; }
Expand Down
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.0.0",
"version": "1.2.0",
"description": "Age of Empires 2 Lobby Companion Client",
"homepage": "http://aoe2lc.net",
"author": {
Expand Down
6 changes: 3 additions & 3 deletions Client/Client/rcedit.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "FileDescription" "AoE 2 HD Lobby Companion"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "LegalCopyright" "AoE2HDLobbyCompanion"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "LegalCopyright" "AoE2HDLobbyCompanion"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "ProductName" "AoE2HDLobbyCompanion"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "OriginalFilename" "AoE2HDLobbyCompanion.exe"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "CompanyName" "AoE 2 HD Lobby Companion"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "CompanyName" "AoE 2 HD Lobby Companion"
rcedit.exe C:\AoE2HDLobbyCompanion\AoE2HDLobbyCompanion.exe --set-version-string "FileDescription" "AoE 2 HD Lobby Companion"
20 changes: 10 additions & 10 deletions 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.1.0";
public stringVersion = "1.2.0";
public lobbiesPageOpened = false;
public sessionRunning = false;
private nethookActive = false;
Expand All @@ -19,15 +19,15 @@ export class AppService {
}

constructor(private toastsManager: ToastsManager, private trackingService: TrackingService, private configurationService: ConfigurationService) {
//this.startBackend();
//window.onbeforeunload = (e) => {
// if (this.nethookActive) {
// this.stopNethook(() => { });
// }
// if (this.backendProcess) {
// this.backendProcess.kill();
// }
//}
this.startBackend();
window.onbeforeunload = (e) => {
if (this.nethookActive) {
this.stopNethook(() => { });
}
if (this.backendProcess) {
this.backendProcess.kill();
}
}
}

public toastInfo(message: string) {
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.0.0";
private version: "1.2.0";

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

0 comments on commit 4ebf810

Please sign in to comment.