Skip to content

Commit

Permalink
Added TODO and made some small changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamalexrouse committed Jan 4, 2025
1 parent 3d7abb9 commit abcd9a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions TODO
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
> Complete Web-Based interface.
> Integrate Webpack & React.
> Create themeable interface.
> Rewrite each service with it's own typescript class.
> ClientArea: src/core/services/ClientService.ts
> Gaming: src/core/services/GamingService.ts
> VPS: src/core/services/VPSService.ts
> Dedicated: src/core/services/DedicatedService.ts
2 changes: 1 addition & 1 deletion src/api/ui/CWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class CWindow
this._menu.Add(servicesMenu, "VPS Servers", () => this.LoadUrl(Services.VPS));
this._menu.Add(servicesMenu, "Dedicated Servers", () => this.LoadUrl(Services.DCS));

this._menu.Add(helpMenu, "Check for Updates...", () => null);
this._menu.Add(helpMenu, "Check for Updates...", () => null); // Not yet implemented.
this._menu.Seperate(helpMenu);
this._menu.Add(helpMenu, "Quit", () => app.quit());
}
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function ProcessEnvironmentInformation()
`| MANUFACTURER: ${res.manufacturer} | CORES (P: ${res.performanceCores} / E: ${res.efficiencyCores})`);
})
.catch((error) => {
WriteLog(LogLevel.Warn, "CORE", "There was an issue trying to gather CPU information about your PC.");
WriteLog(LogLevel.Warn, "CORE", "There was an issue trying to gather CPU information about your PC. \n\n" + error);
});

// Memory
Expand All @@ -32,7 +32,7 @@ async function ProcessEnvironmentInformation()
`| CACHED: ${res.cached}`);
})
.catch((error) => {
WriteLog(LogLevel.Warn, "CORE", "There was an issue trying to gather memory information about your PC.");
WriteLog(LogLevel.Warn, "CORE", "There was an issue trying to gather memory information about your PC. \n\n" + error);
});

// Disks
Expand All @@ -43,7 +43,7 @@ async function ProcessEnvironmentInformation()
});
})
.catch((error) => {
WriteLog(LogLevel.Debug, "CORE", "There was an issue trying to gather IO information about your PC.")
WriteLog(LogLevel.Debug, "CORE", "There was an issue trying to gather IO information about your PC. \n\n" + error)
});
WriteLog(LogLevel.Info, "CORE", "Finshed collecting basic information about your PC.");
}
Expand Down

0 comments on commit abcd9a2

Please sign in to comment.