The extensions show the current editor version in the status bar and can collect information about editor, extensions and the system.
The information in the status bar was the main feature for me to build this extension. I work on different systems with different editor versions, not all of these systems have auto-update functionality. The status bar shows directly which version is running.
The extension can collect information about
- Editor
- Extensions
- System
in a JSON file.
{
"editor": {
"name": "Visual Studio Code",
"version": "1.95.2",
"language": "en"
},
"extensions": [
{
...
}
],
"system": {
"platform": "linux",
"arch": "x64",
"cpus": [
{
...
}
],
"totalmem": ...,
"freemem": ..,
"hostname": ...,
"uptime": ...,
"networkInterfaces": {
"lo": [
{
...
}
],
"wlan0": [
{
...
}
]
},
"userInfo": {
...
}
}
}
YY.MM.VERSION
- YY: Release year
- MM: Release month
- VERSION: Version in year/month