Releases: AbstractUmbra/Hondana
Releases · AbstractUmbra/Hondana
0.4.3
Hondana Changelog
Updated for MangaDex API version 5.3.4
Added
MangaRelation
class has been added to reflect that a relation has been returned from the API.Manga.get_draft
was added to get a draft version of a manga.Manga.get_relations
was added to get all relations of a manga.Manga.create_relation
was added to create a manga relation.Manga.delete_relation
was added to delete a manga relation.Client.get_manga_draft
was added to get a draft version of a manga.Client.get_manga_draft_list
was added to get a list of all draft manga, with filter options.Client.get_manga_relation_list
was added to get a list of manga relations.Client.create_manga_relation
was added to create a manga relation.Client.delete_manga_relation
was added to delete a manga relation.
Changes
Manga.get_artist
was changed to a property:Manga.artist
.
Fixes
- Fixed a pyright bug in
chapter.py
.
Notes
I will begin work on the manga creation process when it seems a bit more fleshed out.
0.4.2
Hondana Changelog
Added
Changes
Manga.relationships.related
key (if exists) now has types. Due to how relationships are done there are no real code changes.
Fixes
utils.DownloadRoute.verb
now has missing type information.- Fixed a PyRight bug in
Chapter.manga
Notes
0.4.1
Hondana Changelog
Added
- Many attributes for
Artist
/Author
for social media URLs. ScanlatorGroup.alt_names
for alternate names of a scanlation group.ScanlatorGroup.focused_language
for the optional focused languages of the scanaltion group.
Changes
Fixes
Notes
0.4.0
Hondana Changelog
Added
Chapter.download
now for downloading chapters.- Example for the above
Changes
Fixes
- Ratelimit handling now works.
Notes
0.3.2
Hondana Changelog
Added
Chapter.download
coroutine to download chapters.- Automated builds and releases.
Changes
Fixes
- Docs having old unusable links.
Notes
# Hondana Changelog
Added
Chapter.download
coroutine to download chapters.- Automated builds and releases.
Changes
Fixes
- Docs having old unusable links.
Notes
API Update - new payload format
This release reformats almost all payload response types. This means internal lib data creation has changed also.
v0.2.2 Release
Updates as per the latest Mangadex API updates
Fixed the relationships
key of the payloads being in <response>.data
instead of <response>
, all types updated to follow.
All object creation can now be done (ideally) within an unnecessary API request, e.g. a Chapter can get the parent Manga without an API request, provided you have the correct includes=[]
.
Some keys are now mandatory and this has been covered, also fixed some input sanitization.
Basic endpoints exist, still got infrastructure to do.
v0.1.0a Manga and Chapter endpoints complete.