This commit is contained in:
chrisdias 2017-03-02 12:50:45 -08:00
Родитель b6de2f647c
Коммит 65ce0ea211
3 изменённых файлов: 16 добавлений и 3 удалений

Просмотреть файл

@ -1,5 +1,20 @@
## 0.0.12 - 06 March 2017
* Added telemetry to understand which commands developers find useful. This will help us refine which commands we add in the future. We track whether the following commands are executed and in some cases additional metadata about the command:
* `build image`
* `compose up`, `compose down`
* `open shell` on running container and whether or not it is a Windows or Linux based container
* `push image` (we don't track the image name or the location)
* `remove image`
* `show logs`
* `start container`, `start container interactive`
* `start Azure CLI` container
* `stop container`
* `system prune`
* `tag` (we don't track tag name)
* Configure workspace along with the type (e.g. Node or Other)
> Please note, you can turn off telemetry reporting for VS Code and all extensions through the ["telemetry.enableTelemetry": false setting](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).
## 0.0.12 - 11 February 2017

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "vscode-docker",
"version": "0.0.12",
"version": "0.0.13",
"publisher": "PeterJausovec",
"displayName": "Docker",
"description": "Adds syntax highlighting, snippets, commands, hover tips, and linting for Dockerfile and docker-compose files.",

Просмотреть файл

@ -4,11 +4,9 @@ import vscode = require('vscode');
export var reporter: TelemetryReporter;
export class Reporter extends vscode.Disposable {
//private toDispose: vscode.Disposable[] = [];
constructor(ctx: vscode.ExtensionContext) {
//super(() => this.toDispose.forEach((d) => d && d.dispose()));
super(() => reporter.dispose());
let packageInfo = getPackageInfo(ctx);