summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2018-03-02 17:04:05 +0100
committerChristoph Schlosser <christophschlosser@users.noreply.github.com>2018-03-07 22:14:50 +0100
commit6958e0d1f75314a48b55245a987e5397f8d7db7a (patch)
treec9e54ec89189d210bf475dfaf93fac70c904fc96
parent8007bfeb16ee14adc39de76e995725c77643fd05 (diff)
downloaddoxdocgen-6958e0d1f75314a48b55245a987e5397f8d7db7a.tar.gz
Release 0.3.00.3.0
-rw-r--r--.vscodeignore5
-rw-r--r--CHANGELOG.md35
-rw-r--r--LICENSE2
-rw-r--r--package.json6
-rw-r--r--src/extension.ts2
5 files changed, 45 insertions, 5 deletions
diff --git a/.vscodeignore b/.vscodeignore
index ea75c67..ef52288 100644
--- a/.vscodeignore
+++ b/.vscodeignore
@@ -6,3 +6,8 @@ src/**
.gitignore
tsconfig.json
vsc-extension-quickstart.md
+.travis.yml
+appveyor.yml
+coverconfig.json
+publish_coverage.sh
+.github/** \ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 70a96c7..b471eca 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,40 @@
# Change Log
+## [0.3.0]
+
+### Features
+
+- Custom doxygen tag order for methods (#55)
+
+- Suggest smart text (#57)
+
+ For more details see [README.md](https://github.com/christophschlosser/doxdocgen/tree/0.3.0#smart-text)
+
+- Config keys are now grouped, see [Config update](#config-update) for changes
+
+### Config update
+
+| Old value | New value | Change |
+|---------------------------------------|----------------------------------------|:--------:|
+| doxdocgen.generic.triggerSequence | doxdocgen.c.triggerSequence | Category |
+| doxdocgen.generic.firstLine | doxdocgen.c.firstLine | Category |
+| doxdocgen.generic.commentPrefix | doxdocgen.c.commentPrefix | Category |
+| doxdocgen.generic.lastLine | doxdocgen.c.lastLine | Category |
+| | doxdocgen.c.setterText | Added |
+| | doxdocgen.c.getterText | Added |
+| | doxdocgen.c.factoryMethodText | Added |
+| doxdocgen.generic.newLineAfterTParams | | Removed |
+| doxdocgen.generic.newLineAfterBrief | | Removed |
+| doxdocgen.generic.newLineAfterParams | | Removed |
+| doxdocgen.generic.tparamTemplate | doxdocgen.cpp.tparamTemplate | Category |
+| | doxdocgen.cpp.ctorText | Added |
+| | doxdocgen.cpp.dtorText | Added |
+| doxdocgen.generic.fileTemplate | doxdocgen.file.fileTemplate | Category |
+| doxdocgen.generic.fileOrder | doxdocgen.file.fileOrder | Category |
+| | doxdocgen.generic.generateSmartText | Added |
+| | doxdocgen.generic.splitCasingSmartText | Added |
+| | doxdocgen.generic.order | Added |
+
## [0.2.1]
- Hotfix. Include moment.js as runtime dependency
diff --git a/LICENSE b/LICENSE
index 1b46e36..f100565 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2017 Christoph Schlosser
+Copyright (c) 2017-2018 Christoph Schlosser
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/package.json b/package.json
index 9362e32..b3ea724 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "doxdocgen",
"displayName": "Doxygen Documentation Generator",
- "description": "Let it generate Doxygen documentation from your source code.",
- "version": "0.2.1",
+ "description": "Let me generate Doxygen documentation from your source code for you.",
+ "version": "0.3.0",
"publisher": "cschlosser",
"engines": {
"vscode": "^1.16.0"
@@ -173,7 +173,7 @@
"url": "https://github.com/christophschlosser/doxdocgen.git"
},
"bugs": {
- "url": "https://github.com/christophschlosser/doxdocgen/issues?q=is%3Aopen+is%3Aissue+label%3Abug+"
+ "url": "https://github.com/christophschlosser/doxdocgen/labels/bug"
},
"scripts": {
"vscode:prepublish": "npm run compile",
diff --git a/src/extension.ts b/src/extension.ts
index 52ecbf8..99cc168 100644
--- a/src/extension.ts
+++ b/src/extension.ts
@@ -29,7 +29,7 @@ export function activate(context: vscode.ExtensionContext) {
notificationHideThenable.then((action) => {
if (action === ConfigChangedNotificationOptions.CHANGED) {
// tslint:disable-next-line:max-line-length
- opn("https://github.com/christophschlosser/doxdocgen/commit/1c844758719d8dc7d538585bb4393565e5629e84#diff-b9cfc7f2cdf78a7f4b91a753d10865a2");
+ opn("https://github.com/christophschlosser/doxdocgen/blob/0.3.0/CHANGELOG.md#config-update");
} else if (action === ConfigChangedNotificationOptions.HIDE) {
context.globalState.update(ConfigChangedNotificationOptions.GLOBAL_STORAGE_KEY, "false");
}