mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 07:12:40 +02:00
use short name for file description
This commit is contained in:
parent
1526cccd0b
commit
cd331bbb0f
1 changed files with 3 additions and 2 deletions
|
@ -18,7 +18,8 @@ var options = {
|
|||
platform: platform
|
||||
}
|
||||
|
||||
const FULL_NAME = "High Fidelity Server Console"
|
||||
const SHORT_NAME = "Server Console";
|
||||
const FULL_NAME = "High Fidelity Server Console";
|
||||
|
||||
// setup per OS options
|
||||
if (osType == "Darwin") {
|
||||
|
@ -29,7 +30,7 @@ if (osType == "Darwin") {
|
|||
options["icon"] = "resources/console.ico"
|
||||
options["version-string"] = {
|
||||
CompanyName: "High Fidelity, Inc.",
|
||||
FileDescription: FULL_NAME,
|
||||
FileDescription: SHORT_NAME,
|
||||
ProductName: FULL_NAME
|
||||
}
|
||||
} else if (osType == "Linux") {
|
||||
|
|
Loading…
Reference in a new issue