mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 07:12:40 +02:00
add OriginalFilename for server-console
This commit is contained in:
parent
cd331bbb0f
commit
ecbac3d8c7
1 changed files with 4 additions and 2 deletions
|
@ -18,12 +18,13 @@ var options = {
|
|||
platform: platform
|
||||
}
|
||||
|
||||
const EXEC_NAME = "server-console";
|
||||
const SHORT_NAME = "Server Console";
|
||||
const FULL_NAME = "High Fidelity Server Console";
|
||||
|
||||
// setup per OS options
|
||||
if (osType == "Darwin") {
|
||||
options["name"] = "Server Console"
|
||||
options["name"] = SHORT_NAME
|
||||
options["icon"] = "resources/console.icns"
|
||||
} else if (osType == "Windows_NT") {
|
||||
options["name"] = "server-console"
|
||||
|
@ -31,7 +32,8 @@ if (osType == "Darwin") {
|
|||
options["version-string"] = {
|
||||
CompanyName: "High Fidelity, Inc.",
|
||||
FileDescription: SHORT_NAME,
|
||||
ProductName: FULL_NAME
|
||||
ProductName: FULL_NAME,
|
||||
OriginalFilename: EXEC_NAME + ".exe"
|
||||
}
|
||||
} else if (osType == "Linux") {
|
||||
options["name"] = "server-console"
|
||||
|
|
Loading…
Reference in a new issue