mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 11:52:27 +00:00
Move license into affected scripts
Preparation for merging the repository into https://github.com/murdos/musicbrainz-userscripts This retains the license blurb but also makes it one less file to juggle for the merge commit.
This commit is contained in:
parent
b4d20eb48e
commit
bbed68d493
4 changed files with 85 additions and 24 deletions
24
COPYING
24
COPYING
|
@ -1,24 +0,0 @@
|
|||
Copyright (C) 2014 Michael Wiencek
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
Except as contained in this notice, the name(s) of the above copyright
|
||||
holders shall not be used in advertising or otherwise to promote the sale,
|
||||
use or other dealings in this Software without prior written
|
||||
authorization.
|
|
@ -2,6 +2,7 @@
|
|||
// @name MusicBrainz: Batch-add "performance of" relationships
|
||||
// @version 2016.5.23
|
||||
// @author Michael Wiencek
|
||||
// @license X11
|
||||
// @downloadURL https://bitbucket.org/mwiencek/userscripts/raw/master/batch-add-recording-relationships.user.js
|
||||
// @updateURL https://bitbucket.org/mwiencek/userscripts/raw/master/batch-add-recording-relationships.user.js
|
||||
// @include *://musicbrainz.org/artist/*/recordings*
|
||||
|
@ -10,6 +11,33 @@
|
|||
// @match *://*.musicbrainz.org/artist/*/recordings*
|
||||
// ==/UserScript==
|
||||
|
||||
// ==License==
|
||||
// Copyright (C) 2014 Michael Wiencek
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
// Except as contained in this notice, the name(s) of the above copyright
|
||||
// holders shall not be used in advertising or otherwise to promote the sale,
|
||||
// use or other dealings in this Software without prior written
|
||||
// authorization.
|
||||
// ==/License==
|
||||
|
||||
var scr = document.createElement("script");
|
||||
scr.textContent = "(" + batch_recording_rels + ")();";
|
||||
document.body.appendChild(scr);
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// @name MusicBrainz: Fast cancel edits
|
||||
// @version 2015.6.7
|
||||
// @author Michael Wiencek
|
||||
// @license X11
|
||||
// @downloadURL https://bitbucket.org/mwiencek/userscripts/raw/master/fast-cancel-edits.user.js
|
||||
// @updateURL https://bitbucket.org/mwiencek/userscripts/raw/master/fast-cancel-edits.user.js
|
||||
// @include *://musicbrainz.org/user/*/edits/open*
|
||||
|
@ -30,6 +31,34 @@
|
|||
// @match *://*.mbsandbox.org/search/edits*
|
||||
// @grant none
|
||||
// ==/UserScript==
|
||||
|
||||
// ==License==
|
||||
// Copyright (C) 2014 Michael Wiencek
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
// Except as contained in this notice, the name(s) of the above copyright
|
||||
// holders shall not be used in advertising or otherwise to promote the sale,
|
||||
// use or other dealings in this Software without prior written
|
||||
// authorization.
|
||||
// ==/License==
|
||||
|
||||
//**************************************************************************//
|
||||
|
||||
var scr = document.createElement("script");
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// @name MusicBrainz: Set recording comments for a release
|
||||
// @version 2016.5.30
|
||||
// @author Michael Wiencek
|
||||
// @license X11
|
||||
// @namespace 790382e7-8714-47a7-bfbd-528d0caa2333
|
||||
// @downloadURL https://bitbucket.org/mwiencek/userscripts/raw/master/set-recording-comments.user.js
|
||||
// @updateURL https://bitbucket.org/mwiencek/userscripts/raw/master/set-recording-comments.user.js
|
||||
|
@ -17,6 +18,33 @@
|
|||
// @grant none
|
||||
// ==/UserScript==
|
||||
|
||||
// ==License==
|
||||
// Copyright (C) 2014 Michael Wiencek
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
// Except as contained in this notice, the name(s) of the above copyright
|
||||
// holders shall not be used in advertising or otherwise to promote the sale,
|
||||
// use or other dealings in this Software without prior written
|
||||
// authorization.
|
||||
// ==/License==
|
||||
|
||||
var scr = document.createElement("script");
|
||||
scr.textContent = "$(" + setRecordingComments + ");";
|
||||
document.body.appendChild(scr);
|
||||
|
|
Loading…
Reference in a new issue