diff options
| author | Christoph Schlosser <christoph@linux.com> | 2017-10-15 22:18:02 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2017-10-16 20:35:14 +0200 |
| commit | 2ef89b97e02ef0658fff89b926ac2cd15a6ef8a9 (patch) | |
| tree | 75b865b56e3ef4c05f89cacf91ebd32494b4f635 | |
| parent | 8e458eb615e60f066f9b094e21741cdc5d8588c4 (diff) | |
| download | doxdocgen-2ef89b97e02ef0658fff89b926ac2cd15a6ef8a9.tar.gz | |
Release 0.0.5
- Add extensive generation customization system
- Generate documentation for function pointers as parameters
| -rw-r--r-- | CHANGELOG.md | 6 | ||||
| -rw-r--r-- | README.md | 18 | ||||
| -rw-r--r-- | images/bool.gif | bin | 157592 -> 116488 bytes | |||
| -rw-r--r-- | images/ctor.gif | bin | 129577 -> 47691 bytes | |||
| -rw-r--r-- | images/declaration.gif | bin | 181425 -> 227190 bytes | |||
| -rw-r--r-- | images/definition.gif | bin | 103955 -> 0 bytes | |||
| -rw-r--r-- | images/function_ptr.gif | bin | 0 -> 87690 bytes | |||
| -rw-r--r-- | images/icon.png | bin | 21299 -> 0 bytes | |||
| -rw-r--r-- | images/keywords.gif | bin | 0 -> 49550 bytes | |||
| -rw-r--r-- | images/method.gif | bin | 270240 -> 223172 bytes | |||
| -rw-r--r-- | images/options.gif | bin | 0 -> 120815 bytes | |||
| -rw-r--r-- | images/opts-xml.gif | bin | 0 -> 211126 bytes | |||
| -rw-r--r-- | images/param_simple.gif | bin | 156452 -> 94929 bytes | |||
| -rw-r--r-- | images/void.gif | bin | 271668 -> 0 bytes | |||
| -rw-r--r-- | package.json | 2 |
15 files changed, 19 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c634f7..ed7abd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [0.0.5] + +- Extend customization of generated documentation (#15, #16) (thanks to @rowanG077) + +- Fix #10 + ## [0.0.4] - Fix #9 @@ -27,17 +27,23 @@ Like Constructors  -Defintions in header files - - - Multi line definitions/declarations  -Or void return values +Strip reserved keywords + + + +Or even function pointers *as parameters* (see [Known Issues](#function-pointers)) + + + +Featuring an extensive generation customization system + + + - ## Extension Settings diff --git a/images/bool.gif b/images/bool.gif Binary files differindex 670b07f..740f216 100644 --- a/images/bool.gif +++ b/images/bool.gif diff --git a/images/ctor.gif b/images/ctor.gif Binary files differindex 3395188..d8c3477 100644 --- a/images/ctor.gif +++ b/images/ctor.gif diff --git a/images/declaration.gif b/images/declaration.gif Binary files differindex 2ed2aad..b201805 100644 --- a/images/declaration.gif +++ b/images/declaration.gif diff --git a/images/definition.gif b/images/definition.gif Binary files differdeleted file mode 100644 index ced18ae..0000000 --- a/images/definition.gif +++ /dev/null diff --git a/images/function_ptr.gif b/images/function_ptr.gif Binary files differnew file mode 100644 index 0000000..3370078 --- /dev/null +++ b/images/function_ptr.gif diff --git a/images/icon.png b/images/icon.png Binary files differdeleted file mode 100644 index 2e0b16c..0000000 --- a/images/icon.png +++ /dev/null diff --git a/images/keywords.gif b/images/keywords.gif Binary files differnew file mode 100644 index 0000000..0a459d8 --- /dev/null +++ b/images/keywords.gif diff --git a/images/method.gif b/images/method.gif Binary files differindex df25d93..02fe0ac 100644 --- a/images/method.gif +++ b/images/method.gif diff --git a/images/options.gif b/images/options.gif Binary files differnew file mode 100644 index 0000000..6f72fb8 --- /dev/null +++ b/images/options.gif diff --git a/images/opts-xml.gif b/images/opts-xml.gif Binary files differnew file mode 100644 index 0000000..99be0d9 --- /dev/null +++ b/images/opts-xml.gif diff --git a/images/param_simple.gif b/images/param_simple.gif Binary files differindex ed6e2d4..79f4dfb 100644 --- a/images/param_simple.gif +++ b/images/param_simple.gif diff --git a/images/void.gif b/images/void.gif Binary files differdeleted file mode 100644 index f5dce48..0000000 --- a/images/void.gif +++ /dev/null diff --git a/package.json b/package.json index c288cd6..624c8b7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "doxdocgen", "displayName": "Doxygen Documentation Generator", "description": "Generate doxygen documentation from source code", - "version": "0.0.4", + "version": "0.0.5", "publisher": "cschlosser", "engines": { "vscode": "^1.16.0" |