productVersion: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Add branches)
(Fixed faulty example 3)
 
(One intermediate revision by one other user not shown)
Line 24: Line 24:
* {{GVI|arma3|1.00|size= 0.75}} branch: [[String]] - product branch, can be {{hl|"Stable"}}, {{hl|"Development"}}, {{hl|"Diag"}} or {{hl|"Profile"}}
* {{GVI|arma3|1.00|size= 0.75}} branch: [[String]] - product branch, can be {{hl|"Stable"}}, {{hl|"Development"}}, {{hl|"Diag"}} or {{hl|"Profile"}}
* {{GVI|arma3|1.00|size= 0.75}} isModded: [[Boolean]] - is the product running with mods ([[true]]) or vanilla ([[false]])
* {{GVI|arma3|1.00|size= 0.75}} isModded: [[Boolean]] - is the product running with mods ([[true]]) or vanilla ([[false]])
* {{GVI|arma3|1.00|size= 0.75}} platform: [[String]] - can be {{hl|Windows}}, {{hl|Linux}} or {{hl|OSX}}
* {{GVI|arma3|1.00|size= 0.75}} platform: [[String]] - can be {{hl|"Windows"}}, {{hl|"Linux"}} or {{hl|"OSX"}}
* {{GVI|arma3|1.68|size= 0.75}} architecture: [[String]] - {{hl|x64}} for 64bit or {{hl|x86}} for 32bit
* {{GVI|arma3|1.68|size= 0.75}} architecture: [[String]] - {{hl|"x64"}} for 64bit or {{hl|"x86"}} for 32bit


|x1= <sqf>hint str productVersion; // would return ["Arma 2 OA", "arma2oa", 162, 95208] on Arma 2 OA 1.62.95208</sqf>
|x1= <sqf>hint str productVersion; // would return ["Arma 2 OA", "arma2oa", 162, 95208] on Arma 2 OA 1.62.95208</sqf>
Line 31: Line 31:
|x2= <sqf>hint str productVersion; // ["Arma 3", "Arma3", 137, 128764, "Development", false, "Windows"]</sqf>
|x2= <sqf>hint str productVersion; // ["Arma 3", "Arma3", 137, 128764, "Development", false, "Windows"]</sqf>


|x3= <sqf>format ["%1.%2",(productVersion # 2)/100 toFixed 2,(productVersion # 3)]; // returns version e.g.: "2.00.146773"</sqf>
|x3= <sqf> format ["%1.%2", (productVersion select 2) * 0.01 toFixed 2, productVersion select 3]; // returns version e.g.: "2.00.146773"</sqf>


|seealso= [[supportInfo]] [[requiredVersion]]
|seealso= [[supportInfo]] [[requiredVersion]]
}}
}}

Latest revision as of 19:28, 17 October 2023

Hover & click on the images for description

Description

Description:
Returns the product's friendly name, identifier, version and build number.
Arma 3
The command has been upgraded to also returns branch identifier, whether or not the game was launched using mods, the platform and the architecture.
Groups:
System

Syntax

Syntax:
productVersion
Return Value:
Array in format [name, nameShort, version, build, branch, isModded, platform, architecture]:
  • name: String - product name
  • nameShort: String - product short name
  • version: Number - product version number
  • build: Number - product build number
  • Arma 3 logo black.png1.00 branch: String - product branch, can be "Stable", "Development", "Diag" or "Profile"
  • Arma 3 logo black.png1.00 isModded: Boolean - is the product running with mods (true) or vanilla (false)
  • Arma 3 logo black.png1.00 platform: String - can be "Windows", "Linux" or "OSX"
  • Arma 3 logo black.png1.68 architecture: String - "x64" for 64bit or "x86" for 32bit

Examples

Example 1:
hint str productVersion; // would return ["Arma 2 OA", "arma2oa", 162, 95208] on Arma 2 OA 1.62.95208
Example 2:
hint str productVersion; // ["Arma 3", "Arma3", 137, 128764, "Development", false, "Windows"]
Example 3:
format ["%1.%2", (productVersion select 2) * 0.01 toFixed 2, productVersion select 3]; // returns version e.g.: "2.00.146773"

Additional Information

See also:
supportInfo requiredVersion

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note