Skip to content

Commit

Permalink
Bump version to v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 committed Apr 12, 2017
1 parent fabf568 commit 8f4b154
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# SurroundSelection
Notepad++ plugin to automatically surround the selection in quotes/brackets/parenthesis/etc. This can also be used on multiple or rectangular selections.

**Note:** This is still in early development. It has not been tested with non-US keyboard layouts.
**Note:** This is still in early development. It has not been fully tested with non-US keyboard layouts.

![Demo](/img/Demo.gif)

## Usage
Select some text and type one of the following characters:
- `'`
- `"`
- `(`
- `{`
- `[`
- `(` or `)`
- `{` or `}`
- `[` or `]`

## Installation
Install the plugin by downloading it from the [Release](https://github.com/dail8859/SurroundSelection/releases) page and copy `SurroundSelection.dll` to your `plugins` folder.
Expand Down
Binary file added img/Demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 1,0,0,0
#define VERSION_LINEAR 1000
#define VERSION_LINEAR_TEXT TEXT("1000")
#define VERSION_TEXT TEXT("1.0") // This must match the tag pushed on the server minus the "v"
#define VERSION_NUM 1,1,0,0
#define VERSION_LINEAR 1100
#define VERSION_LINEAR_TEXT TEXT("1100")
#define VERSION_TEXT TEXT("1.1") // This must match the tag pushed on the server minus the "v"
#define VERSION_STAGE TEXT("") // "alpha", "beta", ""

0 comments on commit 8f4b154

Please sign in to comment.