Skip to content

Commit 8ce42bc

Browse files
authored
release(0.5.7): Move CHANGES -> CHANGES_CURRENT
1 parent 9c4afae commit 8ce42bc

File tree

2 files changed

+83
-69
lines changed

2 files changed

+83
-69
lines changed

CHANGES.md

+83
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
# 0.5.7 (July 2021)
2+
3+
### Features
4+
5+
- #3613 - Input: add Emoji & Symbols panel on macOS
6+
- #3641 - Search: add button to enable RegEx
7+
- #3654 - Search: add button to enable case-sensitivity
8+
- #3661 - Search: add include/exclude file boxes
9+
- #3705 - Editor: add right click menus
10+
- #3718 - Completion: Add `editor.suggest.itemsToShow` setting (fixes #3712)
11+
- #3736 - Search: add default keys to go to next / previous search result (fixes #3713)
12+
- #3733 - Quick Open: Add bindings to open in splits, not current buffer.
13+
- #3765 - UX: Add `"window.titleBarStyle"` configuration setting
14+
15+
> __BREAKING:__ On Windows, the default setting is to use the `"native"` title bar.
16+
> Set `"window.titleBarStyle": "custom"` to keep the previous behavior.
17+
18+
### Bug Fixes
19+
20+
- #3597 - Registration: Trim license key before submitting
21+
- #3431 - Extensions: Serialize file system errors correctly to extensions (fixes #3418)
22+
- #3600 - OSX: Fix crash on selecting native menu item
23+
- #3604 - Editor: Fix CodeLens blocking mousewheel
24+
- #3606 - Vim: Fix hang when using `function` in `experimental.viml`
25+
- #3616 - OSX: Fix crash on IME switch (fixes #3614)
26+
- #3621 - Sneak: Grab editor focus when using sneak to jump to an editor (fixes #2569)
27+
- #3630 - Editor: Cursor / line number disappearing when deleting entire buffer (fixes #3629)
28+
- #3637 - Extensions: Unable to enter API key for WakaTime (fixes #3619)
29+
- #3638 - Editor: Add clear search highlights default keybinding (fixes #3636)
30+
- #3645 - Terminal: Auto-scroll when key is pressed
31+
- #3652 - Syntax: Fix highlighting being lost after movement (fixes #3647)
32+
- #3607 - Vim: Fix crash when specifying empty guifont (fixes #3605)
33+
- #3665 - CodeLens: Fix overlapping codelens with editor text (fixes #3663)
34+
- #3668 - UX: Toggle drop-down menu on click (fixes #3569 - thanks @sijad !)
35+
- #3571 - Extension: Implement $tryApplyEdits (fixes #3545)
36+
- #3335 - Extension: Fix selection bounds (fixes #3335)
37+
- #3699 - Vim: Respect silent flag for output-producing commands (fixes #3680)
38+
- #3692 - CodeLens: Fix delegated commands not executing (related #2380)
39+
- #3702 - OSX: Fix crash on open-with (fixes #3698)
40+
- #3703 - Sidebar: Fix window navigation to sidebar when closed or zen mode (related #3681)
41+
- #3709 - Extension: Fix activation error with nim extension (fixes #3685)
42+
- #3612 - Input: Fix unicode parsing for keybindings (fixes #3599)
43+
- #3717 - Terminal: Fix mousewheel / trackpad scroll direction (fixes #3711)
44+
- #3719 - Input: Add 'editorFocus' context key (fixes #3716)
45+
- #3732 - Input: Fix remapped keys executing in wrong order (fixes #3729)
46+
- #3747 - Layout: Implement Control+W, C binding (related #1721)
47+
- #3746 - Extension: Fix edit application in trailing spaces plugin
48+
- #3755 - Vim: Fix extra 'editor tab' with `:tabnew`/`:tabedit` (fixes #3150)
49+
- #3753 - Extension: Don't bubble up extension runtime errors to notifications
50+
- #3756 - Search: Follow symlinks with ripgrep by default (fixes #1588)
51+
- #3757 - Buffers: Fix welcome buffer appearing when splitting (fixes #3631)
52+
- #3763 - Quickmenu: Select first item by default
53+
- #3767 - Minimap: Fix diff marker positions on scroll (fixes #3648)
54+
55+
### Performance
56+
57+
- #3603 - UX: Fix a couple of orphaned animation timers (related #2407)
58+
59+
### Documentation
60+
61+
- #3601 - Visual Mode: Add note about switching to block mode on Windows / Linux (thanks @rogererens !)
62+
- #3620 - Building: Add steps for Docker based build.
63+
- #3626 - Keybindings: Document nextEditor/previousEditor bindings (thanks @paul-louyot !)
64+
- #3740 - Getting Started: Fix dead links (thanks @Doerge !)
65+
- #3754 - Settings: Add `workbench.activityBar.visible` to documentation (fixes #3720)
66+
67+
### Refactoring
68+
69+
- #3595 - Dependency: OCaml -> 4.12
70+
- #3624 - Dependency: SDL2 -> 2.0.14 (thanks @zbaylin !)
71+
- #3632 - Dependency: revery -> 79c2572
72+
- #3639 - Dependency: Sparkle -> 1.26.0
73+
- #3653 - Dependency: revery -> 9ec44ff (fixes #3646)
74+
- #3688 - Dependency: esy-skia -> 1c81aac
75+
- #3744 - Dependency: vscode-exthost -> 1.56.2 (fixes #3737)
76+
- #3745 - Dependency: vscode-exthost -> 1.57.1
77+
78+
### Infrastructure
79+
80+
- #3721 - Packaging - Linux: Bundle compiled glib settings (fixes #3706)
81+
- #3770 - Build: Fix `esy watch` command (thanks @eEQK !)
82+
- #3780, #3786 - Chore: Update windows codesigning certificate
83+
184
# 0.5.6 (June 2021)
285

386
### Features

CHANGES_CURRENT.md

-69
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,11 @@
11
### Features
22

3-
- #3613 - Input: add Emoji & Symbols panel on macOS
4-
- #3641 - Search: add button to enable RegEx
5-
- #3654 - Search: add button to enable case-sensitivity
6-
- #3661 - Search: add include/exclude file boxes
7-
- #3705 - Editor: add right click menus
8-
- #3718 - Completion: Add `editor.suggest.itemsToShow` setting (fixes #3712)
9-
- #3736 - Search: add default keys to go to next / previous search result (fixes #3713)
10-
- #3733 - Quick Open: Add bindings to open in splits, not current buffer.
11-
- #3765 - UX: Add `"window.titleBarStyle"` configuration setting
12-
13-
> __BREAKING:__ On Windows, the default setting is to use the `"native"` title bar.
14-
> Set `"window.titleBarStyle": "custom"` to keep the previous behavior.
15-
163
### Bug Fixes
174

18-
- #3597 - Registration: Trim license key before submitting
19-
- #3431 - Extensions: Serialize file system errors correctly to extensions (fixes #3418)
20-
- #3600 - OSX: Fix crash on selecting native menu item
21-
- #3604 - Editor: Fix CodeLens blocking mousewheel
22-
- #3606 - Vim: Fix hang when using `function` in `experimental.viml`
23-
- #3616 - OSX: Fix crash on IME switch (fixes #3614)
24-
- #3621 - Sneak: Grab editor focus when using sneak to jump to an editor (fixes #2569)
25-
- #3630 - Editor: Cursor / line number disappearing when deleting entire buffer (fixes #3629)
26-
- #3637 - Extensions: Unable to enter API key for WakaTime (fixes #3619)
27-
- #3638 - Editor: Add clear search highlights default keybinding (fixes #3636)
28-
- #3645 - Terminal: Auto-scroll when key is pressed
29-
- #3652 - Syntax: Fix highlighting being lost after movement (fixes #3647)
30-
- #3607 - Vim: Fix crash when specifying empty guifont (fixes #3605)
31-
- #3665 - CodeLens: Fix overlapping codelens with editor text (fixes #3663)
32-
- #3668 - UX: Toggle drop-down menu on click (fixes #3569 - thanks @sijad !)
33-
- #3571 - Extension: Implement $tryApplyEdits (fixes #3545)
34-
- #3335 - Extension: Fix selection bounds (fixes #3335)
35-
- #3699 - Vim: Respect silent flag for output-producing commands (fixes #3680)
36-
- #3692 - CodeLens: Fix delegated commands not executing (related #2380)
37-
- #3702 - OSX: Fix crash on open-with (fixes #3698)
38-
- #3703 - Sidebar: Fix window navigation to sidebar when closed or zen mode (related #3681)
39-
- #3709 - Extension: Fix activation error with nim extension (fixes #3685)
40-
- #3612 - Input: Fix unicode parsing for keybindings (fixes #3599)
41-
- #3717 - Terminal: Fix mousewheel / trackpad scroll direction (fixes #3711)
42-
- #3719 - Input: Add 'editorFocus' context key (fixes #3716)
43-
- #3732 - Input: Fix remapped keys executing in wrong order (fixes #3729)
44-
- #3747 - Layout: Implement Control+W, C binding (related #1721)
45-
- #3746 - Extension: Fix edit application in trailing spaces plugin
46-
- #3755 - Vim: Fix extra 'editor tab' with `:tabnew`/`:tabedit` (fixes #3150)
47-
- #3753 - Extension: Don't bubble up extension runtime errors to notifications
48-
- #3756 - Search: Follow symlinks with ripgrep by default (fixes #1588)
49-
- #3757 - Buffers: Fix welcome buffer appearing when splitting (fixes #3631)
50-
- #3763 - Quickmenu: Select first item by default
51-
- #3767 - Minimap: Fix diff marker positions on scroll (fixes #3648)
52-
535
### Performance
546

55-
- #3603 - UX: Fix a couple of orphaned animation timers (related #2407)
56-
577
### Documentation
588

59-
- #3601 - Visual Mode: Add note about switching to block mode on Windows / Linux (thanks @rogererens !)
60-
- #3620 - Building: Add steps for Docker based build.
61-
- #3626 - Keybindings: Document nextEditor/previousEditor bindings (thanks @paul-louyot !)
62-
- #3740 - Getting Started: Fix dead links (thanks @Doerge !)
63-
- #3754 - Settings: Add `workbench.activityBar.visible` to documentation (fixes #3720)
64-
659
### Refactoring
6610

67-
- #3595 - Dependency: OCaml -> 4.12
68-
- #3624 - Dependency: SDL2 -> 2.0.14 (thanks @zbaylin !)
69-
- #3632 - Dependency: revery -> 79c2572
70-
- #3639 - Dependency: Sparkle -> 1.26.0
71-
- #3653 - Dependency: revery -> 9ec44ff (fixes #3646)
72-
- #3688 - Dependency: esy-skia -> 1c81aac
73-
- #3744 - Dependency: vscode-exthost -> 1.56.2 (fixes #3737)
74-
- #3745 - Dependency: vscode-exthost -> 1.57.1
75-
7611
### Infrastructure
77-
78-
- #3721 - Packaging - Linux: Bundle compiled glib settings (fixes #3706)
79-
- #3770 - Build: Fix `esy watch` command (thanks @eEQK !)
80-
- #3780, #3786 - Chore: Update windows codesigning certificate

0 commit comments

Comments
 (0)