Skip to content

Commit

Permalink
Merge pull request #49 from mizaki/sponsor_links
Browse files Browse the repository at this point in the history
Donation link
  • Loading branch information
mizaki authored Feb 9, 2025
2 parents f1a5536 + 08588b9 commit 4e0d5c1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

A plugin for [Comic Tagger](https://github.com/comictagger/comictagger/releases) to allow the use of the metadata from [Metron.cloud](https://metron.cloud/).

**NOTE:** Due to the bandwidth usage of cover matching, the auto-tagging features will no longer download the covers for comparison. Metron will be taking donations soon, so if you are able to contribute financially you will be able to. Check the website for details.
Please support Metron's costs and further development by [donating](https://opencollective.com/metron) if you are able, thank you.

**NOTE:** Due to the bandwidth usage of cover matching, the auto-tagging features will no longer download the covers for comparison.

## Installation

Expand Down
13 changes: 9 additions & 4 deletions metron_talker/metron.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,12 +353,17 @@ class MetronTalker(ComicTalker):
comictagger_min_ver: str = "1.6.0a13"
website: str = "https://metron.cloud"
logo_url: str = "https://static.metron.cloud/static/site/img/metron.svg"
attribution: str = f"Metadata provided by <a href='{website}'>{name}</a>"
attribution: str = (
f"Metadata provided by <a href='{website}'>{name}</a><br>"
f"Help support {name} with a <a href='https://opencollective.com/metron'>donation</a>"
)
about: str = (
f"<a href='{website}'>{name}</a> is a community-based site whose goal is to build an open database "
f"with a REST API for comic books. <p>NOTE: An account on <a href='{website}'>{name}</a> is "
f"required to use its API.</p><p>NOTE: Automatic image comparisons are not available due to the"
f"extra bandwidth require. Donations will be accepted soon, check the website.</p>"
f"with a REST API for comic books.<br>"
f"Please support Metron's costs and further development by "
f"<a href='https://opencollective.com/metron'>donating</a> if you are able, thank you."
f"<p>NOTE: An account on <a href='{website}'>{name}</a> is required to use its API.<br>"
f"NOTE: Automatic image comparisons are not available due to the extra bandwidth require.</p>"
)

def __init__(self, version: str, cache_folder: pathlib.Path):
Expand Down

0 comments on commit 4e0d5c1

Please sign in to comment.