forked from metabrainz/picard-plugins
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'metabrainz/2.0' of https://github.com/MetaTunes/picard-…
…plugins into metabrainz/2.0
- Loading branch information
Showing
63 changed files
with
5,109 additions
and
2,885 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
dist: xenial | ||
language: python | ||
cache: | ||
pip: true | ||
python: | ||
- "3.4" | ||
- "3.5" | ||
- "3.6" | ||
- "3.7" | ||
before_install: | ||
- pip3 install picard | ||
script: python test.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# -*- coding: UTF-8 -*- | ||
|
||
# | ||
# Licensing | ||
# | ||
# Add Album Column, Add the Album column to the main window panel | ||
# Copyright (C) 2019 Evandro Coan <https://github.com/evandrocoan> | ||
# | ||
# Redistributions of source code must retain the above | ||
# copyright notice, this list of conditions and the | ||
# following disclaimer. | ||
# | ||
# Redistributions in binary form must reproduce the above | ||
# copyright notice, this list of conditions and the following | ||
# disclaimer in the documentation and/or other materials | ||
# provided with the distribution. | ||
# | ||
# Neither the name Evandro Coan nor the names of any | ||
# contributors may be used to endorse or promote products | ||
# derived from this software without specific prior written | ||
# permission. | ||
# | ||
# This program is free software; you can redistribute it and/or modify it | ||
# under the terms of the GNU General Public License as published by the | ||
# Free Software Foundation; either version 3 of the License, or ( at | ||
# your option ) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, but | ||
# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
# | ||
|
||
PLUGIN_NAME = u"Add Album Column" | ||
PLUGIN_AUTHOR = u"Evandro Coan" | ||
PLUGIN_DESCRIPTION = """Add the Album column to the main window panel. | ||
WARNING: This plugin cannot be disabled. See: | ||
https://github.com/metabrainz/picard-plugins/pull/195 | ||
""" | ||
|
||
PLUGIN_VERSION = "1.0" | ||
PLUGIN_API_VERSIONS = ["2.0"] | ||
PLUGIN_LICENSE = "GPL-3.0-or-later" | ||
PLUGIN_LICENSE_URL = "http://www.gnu.org/licenses/" | ||
|
||
from picard.ui.itemviews import MainPanel | ||
MainPanel.columns.append((N_('Album'), 'album')) |
Oops, something went wrong.