diff options
| author | Christoph Schlosser <christoph@linux.com> | 2019-10-08 21:54:50 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christophschlosser@users.noreply.github.com> | 2019-10-08 22:22:52 +0200 |
| commit | d12cfa9537790ce3489967f77de18ef52717daeb (patch) | |
| tree | e7d492d3e35435c5479c45a251976a1b6c6de629 /src | |
| parent | a5b9a5497abd07c157c8faa5af17a3a16ffe90ad (diff) | |
| download | doxdocgen-d12cfa9537790ce3489967f77de18ef52717daeb.tar.gz | |
Release 0.5.20.5.2
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension.ts | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/extension.ts b/src/extension.ts index ea7762b..55f7e46 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -1,19 +1,12 @@ "use strict"; // The module 'vscode' contains the VS Code extensibility API // Import the module and reference it with the alias vscode in your code below -import * as opn from "opn"; import * as vscode from "vscode"; import CodeParserController from "./CodeParserController"; -enum AlignmentNotificationOptions { - CHANGED = "Show me how to do that", - HIDE = "Don't show me again", - GLOBAL_STORAGE_KEY = "doxdocgen_hide_alignment_notification", -} - enum Version { - CURRENT = "0.5.1", - PREVIOUS = "0.5.0", + CURRENT = "0.5.2", + PREVIOUS = "0.5.1", KEY = "doxdocgen_version", } |