Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af878ca167 | ||
|
|
ea59025499 | ||
|
|
da535bdc67 | ||
|
|
c9a4d94816 | ||
|
|
17ceafb384 | ||
|
|
ac00ee20a3 | ||
|
|
cc974077e3 | ||
|
|
eebe00ee5c | ||
|
|
6bef8e8de2 | ||
|
|
fe4bb165d4 | ||
|
|
8eaff56f6a |
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
|
||||||
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [3.1.2] - 2023-08-13
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed missing `Tags` key, thanks to @RivMt
|
||||||
|
|
||||||
|
## [3.1.1] - 2023-06-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Update `README.md`.
|
||||||
|
|
||||||
## [3.1.0] - 2023-06-04
|
## [3.1.0] - 2023-06-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -30,5 +42,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
|
|
||||||
- Initial release.
|
- Initial release.
|
||||||
|
|
||||||
|
[3.1.2]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.1.2
|
||||||
|
[3.1.1]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.1.1
|
||||||
[3.1.0]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.1.0
|
[3.1.0]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.1.0
|
||||||
[3.0.1]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.0.1
|
[3.0.1]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.0.1
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# PyCBZHelper
|
# PyCBZHelper
|
||||||
|
|
||||||
[](https://github.com/hyugogirubato/pycbzhelper/blob/master/LICENSE)
|
[](https://github.com/hyugogirubato/pycbzhelper/blob/main/LICENSE)
|
||||||
[](https://github.com/hyugogirubato/pycbzhelper/releases)
|
[](https://github.com/hyugogirubato/pycbzhelper/releases)
|
||||||
[](https://pypi.org/project/pycbzhelper/)
|
[](https://pypi.org/project/pycbzhelper/)
|
||||||
|
|
||||||
@@ -57,8 +57,17 @@ if __name__ == "__main__":
|
|||||||
````
|
````
|
||||||
|
|
||||||
For more information on how to use PyCBZHelper, please refer to
|
For more information on how to use PyCBZHelper, please refer to
|
||||||
the [documentation](https://github.com/hyugogirubato/pycbzhelper/blob/master/docs/schema).
|
the [documentation](https://github.com/hyugogirubato/pycbzhelper/blob/main/docs/schema).
|
||||||
|
|
||||||
|
### Exceptions
|
||||||
|
|
||||||
|
The following exceptions can be raised by PyCBZHelper:
|
||||||
|
|
||||||
|
- `InvalidKeyValue`: Raised when a key value is invalid.
|
||||||
|
- `MissingPageFile`: Raised when no page files are available.
|
||||||
|
- `InvalidFileExtension`: Raised when an invalid file extension is used.
|
||||||
|
- `FileNotFound`: Raised when the specified source file is not found.
|
||||||
|
|
||||||
### License
|
### License
|
||||||
|
|
||||||
This project is licensed under the [GPL v3 License](https://github.com/hyugogirubato/pycbzhelper/blob/master/LICENSE).
|
This project is licensed under the [GPL v3 License](https://github.com/hyugogirubato/pycbzhelper/blob/main/LICENSE).
|
||||||
|
|||||||
@@ -2,4 +2,4 @@ from .helper import *
|
|||||||
from .comicinfo import *
|
from .comicinfo import *
|
||||||
from .utils import slugify
|
from .utils import slugify
|
||||||
|
|
||||||
__version__ = "3.1.0"
|
__version__ = "3.1.1"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ KEYS_STRING = [
|
|||||||
"Summary", "Notes", "Writer", "Penciller", "Inker", "Colorist",
|
"Summary", "Notes", "Writer", "Penciller", "Inker", "Colorist",
|
||||||
"Letterer", "CoverArtist", "Editor", "Publisher", "Imprint", "Genre",
|
"Letterer", "CoverArtist", "Editor", "Publisher", "Imprint", "Genre",
|
||||||
"Web", "Characters", "Teams", "Locations", "ScanInformation",
|
"Web", "Characters", "Teams", "Locations", "ScanInformation",
|
||||||
"StoryArc", "SeriesGroup", "CommunityRating"
|
"StoryArc", "SeriesGroup", "CommunityRating", "Tags"
|
||||||
]
|
]
|
||||||
|
|
||||||
KEYS_INT = [
|
KEYS_INT = [
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pycbzhelper",
|
name="pycbzhelper",
|
||||||
version="3.1.0",
|
version="3.1.2",
|
||||||
author="hyugogirubato",
|
author="hyugogirubato",
|
||||||
author_email="hyugogirubato@gmail.com",
|
author_email="hyugogirubato@gmail.com",
|
||||||
description="Python library for creating CBZ files with metadata.",
|
description="Python library for creating CBZ files with metadata.",
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 247 KiB After Width: | Height: | Size: 247 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 143 KiB After Width: | Height: | Size: 143 KiB |
|
Before Width: | Height: | Size: 120 KiB After Width: | Height: | Size: 120 KiB |
|
Before Width: | Height: | Size: 619 KiB After Width: | Height: | Size: 619 KiB |
|
Before Width: | Height: | Size: 592 KiB After Width: | Height: | Size: 592 KiB |
|
Before Width: | Height: | Size: 680 KiB After Width: | Height: | Size: 680 KiB |
|
Before Width: | Height: | Size: 590 KiB After Width: | Height: | Size: 590 KiB |
|
Before Width: | Height: | Size: 492 KiB After Width: | Height: | Size: 492 KiB |
|
Before Width: | Height: | Size: 479 KiB After Width: | Height: | Size: 479 KiB |
|
Before Width: | Height: | Size: 549 KiB After Width: | Height: | Size: 549 KiB |
@@ -7,7 +7,7 @@ PARENT = Path(__file__).resolve().parent
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
pages = []
|
pages = []
|
||||||
for i in range(11):
|
for i in range(11):
|
||||||
pages.append({"File": (PARENT / "docs" / "images" / f"page-{i:03d}.jpg")})
|
pages.append({"File": (PARENT / "images" / f"page-{i:03d}.jpg")})
|
||||||
|
|
||||||
metadata = {
|
metadata = {
|
||||||
"Title": "T1 - Arrête de me chauffer, Nagatoro",
|
"Title": "T1 - Arrête de me chauffer, Nagatoro",
|
||||||