3 Commits
Author SHA1 Message Date
hyugogirubato 46b508adf8 release v3.4.0 2025-07-11 00:44:19 +02:00
hyugogirubato 6d771e3bf8 Merge pull request #19 from tssujt/typo
fix: Fix installation instructions
2025-07-11 00:34:17 +02:00
tssujt 48c99ba44f fix: Fix installation instructions 2025-07-10 10:56:23 +08:00
4 changed files with 10 additions and 2 deletions
+7
View File
@@ -4,6 +4,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). 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.4.1] - 2025-07-11
### Fixed
- Fix installation instructions.
## [3.4.0] - 2025-07-09 ## [3.4.0] - 2025-07-09
### Added ### Added
@@ -193,6 +199,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Initial release. - Initial release.
[3.4.1]: https://github.com/hyugogirubato/cbz/releases/tag/v3.4.1
[3.4.0]: https://github.com/hyugogirubato/cbz/releases/tag/v3.4.0 [3.4.0]: https://github.com/hyugogirubato/cbz/releases/tag/v3.4.0
[3.3.7]: https://github.com/hyugogirubato/cbz/releases/tag/v3.3.7 [3.3.7]: https://github.com/hyugogirubato/cbz/releases/tag/v3.3.7
[3.3.6]: https://github.com/hyugogirubato/cbz/releases/tag/v3.3.6 [3.3.6]: https://github.com/hyugogirubato/cbz/releases/tag/v3.3.6
+1 -1
View File
@@ -15,7 +15,7 @@ CBZ is a Python library designed for creating, manipulating, and viewing comic b
## Installation ## Installation
Install KeyDive from PyPI using Poetry: Install CBZ from PyPI using pip:
```shell ```shell
pip install cbz pip install cbz
+1
View File
@@ -25,6 +25,7 @@ def main() -> None:
comic_info = ComicInfo.from_cbr(comic_path) comic_info = ComicInfo.from_cbr(comic_path)
else: else:
comic_info = ComicInfo.from_cbz(comic_path) comic_info = ComicInfo.from_cbz(comic_path)
# Launch the CBZ player # Launch the CBZ player
comic_info.show() comic_info.show()
except Exception as e: except Exception as e:
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry] [tool.poetry]
name = "cbz" name = "cbz"
version = "3.4.0" version = "3.4.1"
description = "CBZ simplifies creating, managing, and viewing comic book files in CBZ, CBR, and PDF formats, offering seamless packaging, metadata handling and built-in viewing capabilities." description = "CBZ simplifies creating, managing, and viewing comic book files in CBZ, CBR, and PDF formats, offering seamless packaging, metadata handling and built-in viewing capabilities."
license = "MIT" license = "MIT"
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"] authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]