Compare commits

...
3 Commits
Author SHA1 Message Date
hyugogirubato d37be87c2f Merge pull request #29 from hyugogirubato/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2025-11-30 14:59:33 +01:00
dependabot[bot] 0b011a7efc Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 15:58:42 +00:00
hyugogirubato 62b8cf5739 simplify suffix check 2025-11-04 00:00:46 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ jobs:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6 uses: actions/setup-python@v6
+1 -1
View File
@@ -176,7 +176,7 @@ class ComicInfo(ComicModel):
# Some archives may contain folders or hidden files (e.g., ".extra/" or "__MACOSX/.DS_Store") # Some archives may contain folders or hidden files (e.g., ".extra/" or "__MACOSX/.DS_Store")
# that could corrupt the suffix detection and cause invalid image handling. # that could corrupt the suffix detection and cause invalid image handling.
if not suffix or suffix not in IMAGE_FORMAT: if suffix not in IMAGE_FORMAT:
logging.warning(f'Skipping unsupported or invalid file: {name!r} (suffix={suffix!r})') logging.warning(f'Skipping unsupported or invalid file: {name!r} (suffix={suffix!r})')
continue continue