Quote:
Originally Posted by theducks
Cap
I (or BR) can move it.
As David indicated, I ALSO need to know the edits to make in the Index
Typically it will be the release number and maybe a Minimum version of Calibre if the change used a new bit of code incorporated by Kovid.
Also a tidbit for the change log (MR) so I don't have to dig into the zip)
FWIW I don't read enough code, so I would not move it until either someone has a trusted (sorry) track record or it has been thumbs upped by a number users.
|
FWIW - the MR plugin index details are out of date, most of what's in it isn't used by the Plugin Installer, which gets most of what it needs from the __init__.py code, e.g.
Code:
name = 'Extract ISBN'
description = 'Extracts the ISBN from the text content of a book format if available'
supported_platforms = ['windows', 'osx', 'linux']
author = 'Grant Drake'
version = (1, 5, 0)
minimum_calibre_version = (0, 8, 54)
BR