const full name, use for description

This commit is contained in:
Stephen Birarda 2016-01-04 16:15:34 -08:00
parent db68ee2f89
commit 1526cccd0b

View file

@ -18,6 +18,8 @@ var options = {
platform: platform platform: platform
} }
const FULL_NAME = "High Fidelity Server Console"
// setup per OS options // setup per OS options
if (osType == "Darwin") { if (osType == "Darwin") {
options["name"] = "Server Console" options["name"] = "Server Console"
@ -27,7 +29,8 @@ if (osType == "Darwin") {
options["icon"] = "resources/console.ico" options["icon"] = "resources/console.ico"
options["version-string"] = { options["version-string"] = {
CompanyName: "High Fidelity, Inc.", CompanyName: "High Fidelity, Inc.",
ProductName: "High Fidelity Server Console" FileDescription: FULL_NAME,
ProductName: FULL_NAME
} }
} else if (osType == "Linux") { } else if (osType == "Linux") {
options["name"] = "server-console" options["name"] = "server-console"