Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
[Release] 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Akkadius committed Aug 6, 2023
1 parent 65d7f6c commit 1746463
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.2]

* [Process Management] Windows launcher fix edge case

## [2.3.1]

* [Process Management] Test windows process management change
Expand Down
10 changes: 7 additions & 3 deletions app/core/server-process-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -668,11 +668,15 @@ module.exports = {
const splitLength = splitRow.length;
const processId = splitRow[splitLength - 1].trim();
const simpleProcessName = splitRow[splitLength - 2].replace('.exe', '').trim();
const commandLine = row
const cmdlineSplit = row
.replace("," + splitRow[splitLength - 1].trim(), '')
.replace("," + splitRow[splitLength - 2].trim(), '')
.split(",")[1].trim()
;
.split(",");

let commandLine = "";
if (cmdlineSplit.length > 0) {
commandLine = cmdlineSplit[1].trim();
}

processList.push(
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eqemu-admin",
"version": "2.3.1",
"version": "2.3.2",
"private": true,
"bin": "./app/bin/admin",
"scripts": {
Expand Down

0 comments on commit 1746463

Please sign in to comment.