Skip to content

Commit

Permalink
Bump version to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 committed Feb 17, 2017
1 parent 10bdb72 commit b9671ff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ Currently there is support for:

## Usage
### Doxygen Function Commenting
Placing the cursor on the line directly above the function definition and pressing `Ctrl+Alt+Shift+D` (or through the menu command *Plugins > DoxyIt > DoxyIt - Function*) will insert a comment block.
Just start by opening a function block above the function.

![Demo](https://dl.dropboxusercontent.com/u/13788271/DoxyIt/Demo.gif)

**Note:** Function commenting for User Defined Languages inserts a comment block and does not parse any text.
You can also manually trigger the function documentation (sometimes this is required for certain settings. Place the cursor on the line directly above the function definition and press `Ctrl+Alt+Shift+D` (or through the menu command *Plugins > DoxyIt > DoxyIt - Function*).

**Note:** Function commenting for User Defined Languages inserts a comment block but does not parse any text.

### Doxygen File Commenting
Using the menu command *Plugins > DoxyIt > DoxyIt - File* will insert a Doxygen comment block for the file at the current cursor position.
Expand Down
2 changes: 2 additions & 0 deletions src/JumpLocations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ static bool GoToJumpLocation(const Location& location)
editor.AutoCCancel();
editor.CallTipCancel();

editor.ChooseCaretX();

return true;
}

Expand Down
8 changes: 4 additions & 4 deletions src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

#define VERSION_NUM 0,3,0,0
#define VERSION_LINEAR 300
#define VERSION_LINEAR_TEXT TEXT("300")
#define VERSION_TEXT TEXT("0.3.0") // This must match the tag pushed on the server minus the "v"
#define VERSION_NUM 0,4,0,0
#define VERSION_LINEAR 400
#define VERSION_LINEAR_TEXT TEXT("400")
#define VERSION_TEXT TEXT("0.4.0") // This must match the tag pushed on the server minus the "v"
#define VERSION_STAGE TEXT("") // "alpha", "beta", ""

0 comments on commit b9671ff

Please sign in to comment.