I have a small request. For other identifiers, as Amazon or B&N, if you press right mouse button and press remove identifier, it works and it disappears in the books. It doesn't happen with goodreads identifiers. I have seen that changing in get_book_url
Code:
return ('Goodreads', goodreads_id,
'%s/book/show/%s' % (Goodreads.BASE_URL, goodreads_id))
by
Code:
return ('goodreads', goodreads_id,
'%s/book/show/%s' % (Goodreads.BASE_URL, goodreads_id))
Then it works. The plugin is not updated a lot, but I have to remember to change this. If you could include it, I would be thankful.