mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 17:56:50 +03:00
b740cc23d3
Update `libtorrent` version(s) to `2.0.6` & `1.2.16` in `GHA CI` - https://github.com/arvidn/libtorrent/releases/tag/v2.0.6 - https://github.com/arvidn/libtorrent/releases/tag/v1.2.16 Update `Boost` version to `1.79.0` - https://www.boost.org/users/history/version_1_79_0.html Bump `pre-commit-hooks` version to `4.2.0` - https://github.com/pre-commit/pre-commit-hooks/releases/tag/v4.2.0 Update `Qt6` version to `6.3.0` - https://www.qt.io/blog/qt-6.3-released - https://code.qt.io/cgit/qt/qtreleasenotes.git/about/qt/6.3.0/release-note.md Note: used `aqtinstall 2.1.0` with `jurplel/install-qt-action` for support of `Qt 6.2.1+` (this requirement can be removed on official release of `jurplel/install-qt-action v3`) PR #16888.
59 lines
1.3 KiB
YAML
59 lines
1.3 KiB
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: check-translation-tag
|
|
name: Check newline characters in <translation> tag
|
|
entry: .github/workflows/check_translation_tag.py
|
|
language: script
|
|
exclude: |
|
|
(?x)^(
|
|
src/lang/.*
|
|
)$
|
|
types_or:
|
|
- ts
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks.git
|
|
rev: v4.2.0
|
|
hooks:
|
|
- id: check-json
|
|
name: Check JSON files
|
|
|
|
- id: check-yaml
|
|
name: Check YAML files
|
|
|
|
- id: fix-byte-order-marker
|
|
name: Check file encoding (UTF-8 without BOM)
|
|
exclude: |
|
|
(?x)^(
|
|
src/base/unicodestrings.h
|
|
)$
|
|
|
|
- id: mixed-line-ending
|
|
name: Check line ending character (LF)
|
|
args: ["--fix=lf"]
|
|
exclude: |
|
|
(?x)^(
|
|
compile_commands.json |
|
|
src/webui/www/private/scripts/lib/.*
|
|
)$
|
|
|
|
- id: end-of-file-fixer
|
|
name: Check trailing newlines
|
|
exclude: |
|
|
(?x)^(
|
|
compile_commands.json |
|
|
configure |
|
|
src/webui/www/private/scripts/lib/.*
|
|
)$
|
|
exclude_types:
|
|
- svg
|
|
- ts
|
|
|
|
- id: trailing-whitespace
|
|
name: Check trailing whitespaces
|
|
exclude: |
|
|
(?x)^(
|
|
src/webui/www/private/scripts/lib/.*
|
|
)$
|
|
exclude_types:
|
|
- ts
|