Compare commits

..
6 Commits
Author SHA1 Message Date
hyugogirubato af878ca167 Release v3.1.2 2023-08-13 18:27:57 +02:00
hyugogirubato ea59025499 Release v3.1.2 2023-08-13 18:26:52 +02:00
hyugogirubato da535bdc67 Merge pull request #2 from RivMt/main
Bug: Tags does not written in ComicInfo.xml (include solution)
2023-08-13 18:21:46 +02:00
San Kang c9a4d94816 Fix: Add Tags to KEYS_STRING
Helper does not write `Tags` element in `ComicInfo.xml` because there is no `Tags` in `KEYS_STRING`
2023-08-11 08:22:34 +09:00
hyugogirubato 17ceafb384 Update test 2023-06-05 12:33:00 +02:00
hyugogirubato ac00ee20a3 Update README.md 2023-06-04 16:13:47 +02:00
16 changed files with 11 additions and 4 deletions
+7
View File
@@ -5,6 +5,12 @@ 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
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
@@ -36,6 +42,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- 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.0.1]: https://github.com/hyugogirubato/pycbzhelper/releases/tag/v3.0.1
+1 -1
View File
@@ -70,4 +70,4 @@ The following exceptions can be raised by PyCBZHelper:
### License
This project is licensed under the [GPL v3 License](https://github.com/hyugogirubato/pycbzhelper/blob/main/LICENSE).
This project is licensed under the [GPL v3 License](https://github.com/hyugogirubato/pycbzhelper/blob/main/LICENSE).
+1 -1
View File
@@ -3,7 +3,7 @@ KEYS_STRING = [
"Summary", "Notes", "Writer", "Penciller", "Inker", "Colorist",
"Letterer", "CoverArtist", "Editor", "Publisher", "Imprint", "Genre",
"Web", "Characters", "Teams", "Locations", "ScanInformation",
"StoryArc", "SeriesGroup", "CommunityRating"
"StoryArc", "SeriesGroup", "CommunityRating", "Tags"
]
KEYS_INT = [
+1 -1
View File
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name="pycbzhelper",
version="3.1.1",
version="3.1.2",
author="hyugogirubato",
author_email="hyugogirubato@gmail.com",
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

+1 -1
View File
@@ -7,7 +7,7 @@ PARENT = Path(__file__).resolve().parent
if __name__ == "__main__":
pages = []
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 = {
"Title": "T1 - Arrête de me chauffer, Nagatoro",