Skip to content

Commit

Permalink
Renamed to MusicBrainz Magic Tagger Button
Browse files Browse the repository at this point in the history
  • Loading branch information
phw committed Mar 4, 2021
1 parent 2681263 commit 005f799
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MusicBrainz Auto Tagger Button user script
# MusicBrainz Magic Tagger Button user script

This is a browser user script to enable the green tagger button ![Open in tagger](https://staticbrainz.org/MB/mblookup-tagger-b8fe559.png)
on [musicbrainz.org](https://musicbrainz.org), which is used to send a release or recording to
Expand All @@ -21,7 +21,7 @@ or [Violentmonkey](https://violentmonkey.github.io/)).

The latest version of this script to install is available at:

https://raw.githubusercontent.com/phw/musicbrainz-auto-tagger-button/main/mb-auto-tagger-button.user.js
https://raw.githubusercontent.com/phw/musicbrainz-magic-tagger-button/main/mb-magic-tagger-button.user.js


## Gotchas
Expand Down Expand Up @@ -53,6 +53,6 @@ Some things to be aware off:

## License

MusicBrainz Auto Tagger Button © 2021 Philipp Wolfer <[email protected]>
MusicBrainz Magic Tagger Button © 2021 Philipp Wolfer <[email protected]>

Published under the MIT license, see LICENSE for details.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name MusicBrainz auto tagger button
// @name MusicBrainz Magic Tagger Button
// @description Automatically enable the green tagger button on MusicBrainz.org depending on whether Picard is running.
// @version 0.4.3
// @version 0.5.0
// @author Philipp Wolfer
// @namespace https://uploadedlobster.com
// @license MIT
Expand Down Expand Up @@ -37,7 +37,7 @@ function logger (level, ...args) {
func = console[level]
}

func('[Auto Tagger Button]', ...args)
func('[Magic Tagger Button]', ...args)
}

const debug = (...args) => logger('debug', ...args)
Expand Down Expand Up @@ -178,7 +178,7 @@ async function run () {
return
}

log('Initializing MusicBrainz auto tagger button!')
log('Initializing MusicBrainz Magic Tagger Button!')

const currentPort = findCurrentlyUsedTaggerPort()

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "mb-auto-tagger-button",
"name": "mb-magic-tagger-button",
"version": "0.2.0",
"description": "User script to automatically enable the green tagger button on MusicBrainz.org depending on whether Picard is running",
"main": "mb-auto-tagger-button.user.js",
"main": "mb-magic-tagger-button.user.js",
"type": "git",
"repository": {
"url": "git+ssh://[email protected]/phw/musicbrainz-auto-tagger-button.git"
"url": "git+ssh://[email protected]/phw/musicbrainz-magic-tagger-button.git"
},
"author": "Philipp Wolfer",
"license": "MIT",
"bugs": {
"url": "https://github.com/phw/musicbrainz-auto-tagger-button/issues"
"url": "https://github.com/phw/musicbrainz-magic-tagger-button/issues"
},
"homepage": "https://github.com/phw/musicbrainz-auto-tagger-button#readme",
"homepage": "https://github.com/phw/musicbrainz-magic-tagger-button#readme",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-cli": "^1.1.1",
Expand Down

0 comments on commit 005f799

Please sign in to comment.