From afd0e5862532b6fa4e2a54dba897ffd8d472763d Mon Sep 17 00:00:00 2001 From: Jack Cherng Date: Sat, 24 Jul 2021 12:08:21 +0800 Subject: [PATCH] release: 7.0.1 Signed-off-by: Jack Cherng --- CHANGELOG.md | 11 +++++++++-- messages.json | 2 +- messages/update_message.md | 20 +++++--------------- 3 files changed, 15 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6d9a1d..eddbf32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. +## [7.0.1] - 2021-07-24 + +- feat: check all foreground views for updating + + Previously, OpenUri only checks the current activated view. + Since OpenUri also checks whether the view is dirty before perform a update, + I think this shouldn't be resource consuming. + ## [7.0.0] - 2021-07-23 - refactor: drop ST 3 support @@ -17,10 +25,9 @@ All notable changes to this project will be documented in this file. modifiers: ['alt'], command: 'open_context_url', }, - ]; + ] ``` - ## [6.4.1] - 2021-06-18 - refactor: tidy codes diff --git a/messages.json b/messages.json index b675119..f70b98d 100644 --- a/messages.json +++ b/messages.json @@ -1,4 +1,4 @@ { - "7.0.0": "messages/update_message.md", + "7.0.1": "messages/update_message.md", "install": "README.md" } diff --git a/messages/update_message.md b/messages/update_message.md index be0b935..6e88cde 100644 --- a/messages/update_message.md +++ b/messages/update_message.md @@ -1,20 +1,10 @@ OpenUri has been updated. To see the changelog, visit Preferences » Package Settings » OpenUri » CHANGELOG -## [7.0.0] - 2021-07-23 +## [7.0.1] - 2021-07-24 -- refactor: drop ST 3 support -- refactor: default mouse binding has been removed +- feat: check all foreground views for updating - If you need the mouse binding, add - - ```js - [ - // open URL via: alt + right click - { - button: 'button2', - modifiers: ['alt'], - command: 'open_context_url', - }, - ] - ``` + Previously, OpenUri only checks the current activated view. + Since OpenUri also checks whether the view is dirty before perform a update, + I think this shouldn't be resource consuming.