From a82b79313e7ec48ed2f5085046f2b4735a5c3945 Mon Sep 17 00:00:00 2001 From: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Aug 2022 20:35:34 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20mb=5Fmulti=5Fexternal=5Flinks=20?= =?UTF-8?q?2022.8.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refactor: more TypeScript migration (#499) --- mb_multi_external_links.changelog.md | 1 + mb_multi_external_links.meta.js | 11 +++-------- mb_multi_external_links.metadata.json | 2 +- mb_multi_external_links.user.js | 11 +++-------- 4 files changed, 8 insertions(+), 17 deletions(-) diff --git a/mb_multi_external_links.changelog.md b/mb_multi_external_links.changelog.md index 40791854..abdd5354 100644 --- a/mb_multi_external_links.changelog.md +++ b/mb_multi_external_links.changelog.md @@ -1,3 +1,4 @@ +- **2022.8.8**: Internal changes: more TypeScript migration ([#499](https://github.com/ROpdebee/mb-userscripts/pull/499)) - **2022.7.27.2**: Bug fix: submit all but last URL immediately ([#515](https://github.com/ROpdebee/mb-userscripts/pull/515)) - **2022.7.27**: Internal changes: automatically insert logger boilerplate config ([#514](https://github.com/ROpdebee/mb-userscripts/pull/514)) - **2022.7.5**: Bug fix: adjust links editor properties for new MBS version ([#512](https://github.com/ROpdebee/mb-userscripts/pull/512)) diff --git a/mb_multi_external_links.meta.js b/mb_multi_external_links.meta.js index 66129bee..65110a95 100644 --- a/mb_multi_external_links.meta.js +++ b/mb_multi_external_links.meta.js @@ -1,7 +1,7 @@ // ==UserScript== // @name MB: QoL: Paste multiple external links at once // @description Enables pasting multiple links, separated by whitespace, into the external link editor. -// @version 2022.7.27.2 +// @version 2022.8.8 // @author ROpdebee // @license MIT; https://opensource.org/licenses/MIT // @namespace https://github.com/ROpdebee/mb-userscripts @@ -9,13 +9,8 @@ // @supportURL https://github.com/ROpdebee/mb-userscripts/issues // @downloadURL https://raw.github.com/ROpdebee/mb-userscripts/dist/mb_multi_external_links.user.js // @updateURL https://raw.github.com/ROpdebee/mb-userscripts/dist/mb_multi_external_links.meta.js -// @match *://*.musicbrainz.org/*/edit -// @match *://*.musicbrainz.org/*/edit?* -// @match *://*.musicbrainz.org/release/*/edit-relationships* -// @match *://*.musicbrainz.org/*/add -// @match *://*.musicbrainz.org/*/add?* -// @match *://*.musicbrainz.org/*/create -// @match *://*.musicbrainz.org/*/create?* +// @include /^https?://(\w+\.)?musicbrainz\.org/(area|artist|collection|event|instrument|label|place|recording|release|release-group|series|work|url)/(add|create|[a-f\d-]{36}/edit)([?#]|$)/ +// @include /^https?://(\w+\.)?musicbrainz\.org/release/[a-f\d-]{36}/edit-relationships([?#]|$)/ // @run-at document-end // @grant none // ==/UserScript== \ No newline at end of file diff --git a/mb_multi_external_links.metadata.json b/mb_multi_external_links.metadata.json index 70d87621..42de4659 100644 --- a/mb_multi_external_links.metadata.json +++ b/mb_multi_external_links.metadata.json @@ -1 +1 @@ -{"version":"2022.7.27.2"} \ No newline at end of file +{"version":"2022.8.8"} \ No newline at end of file diff --git a/mb_multi_external_links.user.js b/mb_multi_external_links.user.js index 8f3d021e..2fcd3ecf 100644 --- a/mb_multi_external_links.user.js +++ b/mb_multi_external_links.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name MB: QoL: Paste multiple external links at once // @description Enables pasting multiple links, separated by whitespace, into the external link editor. -// @version 2022.7.27.2 +// @version 2022.8.8 // @author ROpdebee // @license MIT; https://opensource.org/licenses/MIT // @namespace https://github.com/ROpdebee/mb-userscripts @@ -9,13 +9,8 @@ // @supportURL https://github.com/ROpdebee/mb-userscripts/issues // @downloadURL https://raw.github.com/ROpdebee/mb-userscripts/dist/mb_multi_external_links.user.js // @updateURL https://raw.github.com/ROpdebee/mb-userscripts/dist/mb_multi_external_links.meta.js -// @match *://*.musicbrainz.org/*/edit -// @match *://*.musicbrainz.org/*/edit?* -// @match *://*.musicbrainz.org/release/*/edit-relationships* -// @match *://*.musicbrainz.org/*/add -// @match *://*.musicbrainz.org/*/add?* -// @match *://*.musicbrainz.org/*/create -// @match *://*.musicbrainz.org/*/create?* +// @include /^https?://(\w+\.)?musicbrainz\.org/(area|artist|collection|event|instrument|label|place|recording|release|release-group|series|work|url)/(add|create|[a-f\d-]{36}/edit)([?#]|$)/ +// @include /^https?://(\w+\.)?musicbrainz\.org/release/[a-f\d-]{36}/edit-relationships([?#]|$)/ // @run-at document-end // @grant none // ==/UserScript==