Skip to content

Commit

Permalink
Bump version to v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dail8859 committed May 15, 2018
1 parent c98c5c7 commit e2da9b8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Notepad++ plugin to provide better cursor movements when using multiple selections.

**Note:** This is still in early development. It has not been tested with non-US keyboard layouts. This does have some minor quirks (such as the cursor not always blinking correctly) that are a side effect of the implementation.
**Note:** It has may not be fully supported on non-US keyboard layouts. This does have some minor quirks (such as the cursor not always blinking correctly) that are a side effect of the implementation.

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

Expand All @@ -17,14 +17,17 @@ Make multiple or rectangular selections and move the cursor. Supported cursor mo
- End
- Word Left (`Ctrl+Left`)
- Word Right (`Ctrl+Right`)
- Delete Word Left (`Ctrl+Backspace`)
- Delete Word Right (`Ctrl+Delete`)
- Enter

You can also hold down `Shift` to extend the selections, or press `Enter` to insert new lines.
You can also hold down `Shift` to extend the selections.

## Installation
Install the plugin by downloading it from the [Release](https://github.com/dail8859/BetterMultiSelection/releases) page and copy `BetterMultiSelection.dll` to your `plugins` folder.
Install the plugin by the Plugin Manager, or manually by downloading it from the [Release](https://github.com/dail8859/BetterMultiSelection/releases) page and copy `BetterMultiSelection.dll` to your `plugins` folder.

## Development
The code has been developed using MSVC 2015. Building the code will generate the DLL which can be used by Notepad++. For convenience, MSVC copies the DLL into the Notepad++ plugin directory.
The code has been developed using Visual Studio 2015. Building the code will generate the DLL which can be used by Notepad++. For convenience, Visual Studio copies the DLL into the Notepad++ plugin directory.

## License
This code is released under the [GNU General Public License version 2](http://www.gnu.org/licenses/gpl-2.0.txt).
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.1.0.{build}
version: 1.2.0.{build}
image: Visual Studio 2015

platform:
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 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_NUM 1,2,0,0
#define VERSION_LINEAR 1200
#define VERSION_LINEAR_TEXT TEXT("1200")
#define VERSION_TEXT TEXT("1.2") // This must match the tag pushed on the server minus the "v"
#define VERSION_STAGE TEXT("") // "alpha", "beta", ""

0 comments on commit e2da9b8

Please sign in to comment.