Skip to content

Commit

Permalink
release: 7.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed Jul 23, 2021
1 parent 77bf2ca commit e7ef43c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 25 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file.

## [7.0.0] - 2021-07-23

- refactor: drop ST 3 support
- refactor: default mouse binding has been removed

If you need the mouse binding, add

```js
[
// open URL via: alt + right click
{
button: 'button2',
modifiers: ['alt'],
command: 'open_context_url',
},
];
```


## [6.4.1] - 2021-06-18

- refactor: tidy codes
Expand Down
2 changes: 1 addition & 1 deletion messages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"6.4.0": "messages/update_message.md",
"7.0.0": "messages/update_message.md",
"install": "README.md"
}
36 changes: 12 additions & 24 deletions messages/update_message.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,20 @@
OpenUri has been updated. To see the changelog, visit
Preferences » Package Settings » OpenUri » CHANGELOG

## [6.4.0] - 2021-06-14
## [7.0.0] - 2021-07-23

Added
- refactor: drop ST 3 support
- refactor: default mouse binding has been removed

- Use strings in setting `draw_uri_regions.flags`

Previously, it's simply an integer, which is less self-explanatory.
Now, you can use a list of strings (flag names):
If you need the mouse binding, add

```js
"draw_uri_regions": {
// the draw flags used, see https://www.sublimetext.com/docs/api_reference.html
"flags": [
"HIDE_ON_MINIMAP",
"DRAW_SOLID_UNDERLINE",
"DRAW_NO_FILL",
"DRAW_NO_OUTLINE",
],
},
[
// open URL via: alt + right click
{
button: 'button2',
modifiers: ['alt'],
command: 'open_context_url',
},
]
```

Changed

- make `plugin_loaded()` async to speed up ST startup
- make plugin folder structure simpler

Documentation

- Update settings comments for recent ST 4 release

0 comments on commit e7ef43c

Please sign in to comment.