Skip to content

Commit

Permalink
Bump version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 committed Feb 26, 2016
1 parent 5cdd5b5 commit 4e7712a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The full documentation can be found [here](/doc/editor.md). The `editor` also ha
- `npp.Remove<Event>(function)`
- removes a previously added function handler for a specific event
- `npp.AddShortcut(name, shortcut, function)`
- adds a shortcut under the plugin menu. *This can only be called from the startup script.*
- adds a shortcut under the plugin menu. *This can only be called during start-up.*
- `name` the human readable text that will be shown in the menu
- `shortcut` a string that specifies the modifiers and key for the shortcut e.g. `"Alt+Shift+F5"` or an empty string `""`
- The modifiers (`Ctrl`, `Alt`, and `Shift`) can appear in any order
Expand Down
8 changes: 4 additions & 4 deletions 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,1,1,0
#define VERSION_LINEAR 110
#define VERSION_LINEAR_TEXT TEXT("110")
#define VERSION_TEXT TEXT("0.1.1") // This must match the tag pushed on the server minus the "v"
#define VERSION_NUM 0,2,0,0
#define VERSION_LINEAR 200
#define VERSION_LINEAR_TEXT TEXT("200")
#define VERSION_TEXT TEXT("0.2.0") // This must match the tag pushed on the server minus the "v"
#define VERSION_STAGE TEXT("") // "alpha", "beta", ""

0 comments on commit 4e7712a

Please sign in to comment.