-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Complete rewrite - Use [rich-codex](https://github.com/ewels/rich-codex) to generate doc images. - Update dependencies - Drop support for [custom metadata](https://github.com/Buried-In-Code/schemas) - Add format support for Omnibus - Store logs in XDG_STATE_HOME (Defaults to `~/.local/state/perdoo`) - Add support for updating a cbz without extracting/archiving everytime - Use [Typer](https://github.com/fastapi/typer) to create subcommands and extra functionality - Drop support for Py3.8 and Py3.9 #29 - Add support for Py3.13 #28 - Convert from [xmltodict](https://github.com/martinblech/xmltodict) to [pydantic-xml](https://github.com/dapper91/pydantic-xml) - Use [comicfn2dict](https://github.com/ajslater/comicfn2dict) to better guess what the comic is when metadata is unavailable --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
8b6355a
commit 29c5916
Showing
44 changed files
with
2,832 additions
and
2,664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Rich Codex | ||
|
||
on: | ||
push: | ||
paths: | ||
- README.md | ||
- perdoo/__main__.py | ||
- perdoo/cli/** | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
rich_codex: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: astral-sh/setup-uv@v3 | ||
- name: Setup Python | ||
run: uv python install '3.13' | ||
- name: Install project | ||
run: uv sync --dev | ||
|
||
- name: Generate terminal images with rich-codex | ||
uses: ewels/rich-codex@v1 | ||
with: | ||
commit_changes: true | ||
clean_img_paths: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.