1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-08-21 16:54:06 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Alex Plate
4b659fe643 Prepare for 0.57 release 2020-04-28 11:18:56 +03:00
Alex Plate
d5055506b0 Fix regex for slack notification 2020-04-22 09:56:39 +03:00
4 changed files with 13 additions and 17 deletions

View File

@@ -22,11 +22,9 @@ It is important to distinguish EAP from traditional pre-release software.
Please note that the quality of EAP versions may at times be way below even Please note that the quality of EAP versions may at times be way below even
usual beta standards. usual beta standards.
[To Be Released] 0.57, 2020-04-28
------------- -------------
_Available since 0.56.1 EAP:_
**Fixes:** **Fixes:**
* [VIM-1992](https://youtrack.jetbrains.com/issue/VIM-1992) Fix mappings to `<S-Letter>` * [VIM-1992](https://youtrack.jetbrains.com/issue/VIM-1992) Fix mappings to `<S-Letter>`
* [VIM-1991](https://youtrack.jetbrains.com/issue/VIM-1991) Fix working with number registers * [VIM-1991](https://youtrack.jetbrains.com/issue/VIM-1991) Fix working with number registers
@@ -34,8 +32,6 @@ _Available since 0.56.1 EAP:_
**Merged PRs:** **Merged PRs:**
* [234](https://github.com/JetBrains/ideavim/pull/234) by [runforprogram](https://github.com/runforprogram): [VIM-1991] fix >0 number register not work * [234](https://github.com/JetBrains/ideavim/pull/234) by [runforprogram](https://github.com/runforprogram): [VIM-1991] fix >0 number register not work
_To Be Released..._
0.56, 2020-04-09 0.56, 2020-04-09
-------------- --------------

View File

@@ -77,7 +77,7 @@ tasks.register("slackEapNotification") {
def changeLog = extractChangelog() def changeLog = extractChangelog()
changeLog = changeLog.replace("* ", "• ") // Replace stars with bullets changeLog = changeLog.replace("* ", "• ") // Replace stars with bullets
changeLog = changeLog.replace("**", "*") // Enable bold text changeLog = changeLog.replace("**", "*") // Enable bold text
changeLog = changeLog.replaceAll("\\[(.+)]\\(([^)]+)\\)", '<$2|$1>') // Enable links changeLog = changeLog.replaceAll("\\[([^]]+)]\\(([^)]+)\\)", '<$2|$1>') // Enable links
def message =""" def message ="""
{ {
"text": "New version of IdeaVim", "text": "New version of IdeaVim",

View File

@@ -3,7 +3,7 @@
<id>IdeaVIM</id> <id>IdeaVIM</id>
<change-notes><![CDATA[ <change-notes><![CDATA[
<ul> <ul>
<li>Fix mappings for `<S-Letter>`</li> <li>Fix mappings for uppercase letters</li>
<li>Fix yank/paste with number registers</li> <li>Fix yank/paste with number registers</li>
<li>Various bug fixes</li> <li>Various bug fixes</li>
</ul> </ul>

View File

@@ -1,6 +1,6 @@
# Manual Tests # Manual Tests
## #1 [Last run: 2020-04-09] ## #1 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -14,7 +14,7 @@ Word is selected, block-caret is placed on the word end (offset = `word end - 1`
![](resources/manualTests/1.png) ![](resources/manualTests/1.png)
## #2 [Last run: 2020-04-09] ## #2 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -26,7 +26,7 @@ Last word is selected, block caret is placed on the word end without bouncing
![](resources/manualTests/2.png) ![](resources/manualTests/2.png)
## #3 [Last run: 2020-04-09] ## #3 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -38,7 +38,7 @@ Line is selected. Caret is placed on the line end
![](resources/manualTests/3.png) ![](resources/manualTests/3.png)
## #4 [Last run: 2020-04-09] ## #4 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -51,7 +51,7 @@ After mouse release, caret moves one character back and becomes block shape
![](resources/manualTests/4.gif) ![](resources/manualTests/4.gif)
## #5 [Last run: 2020-04-09] ## #5 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -65,7 +65,7 @@ After mouse release, caret moves one character back and becomes block shape
![](resources/manualTests/5.gif) ![](resources/manualTests/5.gif)
## #6 [Last run: 2020-04-09] ## #6 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -77,7 +77,7 @@ Line is selected, caret is on the first position
![](resources/manualTests/6.gif) ![](resources/manualTests/6.gif)
## #6 [Last run: 2020-04-09] ## #6 [Last run: 2020-04-28]
_Initial mode:_ NORMAL _Initial mode:_ NORMAL
@@ -94,7 +94,7 @@ Caret stays in _block_ shape with a normal mode
![](resources/manualTests/7.2.gif) ![](resources/manualTests/7.2.gif)
## #7 [Last run: 2020-04-09] ## #7 [Last run: 2020-04-28]
_Action:_ _Action:_
Turn emulation off and on Turn emulation off and on
@@ -102,7 +102,7 @@ Turn emulation off and on
_Result:_ _Result:_
Vim emulator works as expected Vim emulator works as expected
## #8 [Last run: 2020-04-09 ## #8 [Last run: 2020-04-28
_Action:_ _Action:_
Start up IJ with disabled emulator, turn it on Start up IJ with disabled emulator, turn it on
@@ -110,7 +110,7 @@ Start up IJ with disabled emulator, turn it on
_Result:_ _Result:_
Vim emulator works as expected Vim emulator works as expected
## #9 [Last run: 2020-04-09] ## #9 [Last run: 2020-04-28]
_Action:_ _Action:_
Wrap with if Wrap with if