Skip to content

Commit cf5b1f5

Browse files
authored
Merge pull request #10 from i30817/limiter
update version, fix error
2 parents 566a509 + 014f691 commit cf5b1f5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rhdndat"
3-
version = "2.7.8"
3+
version = "2.7.9"
44
description = "www.romhacking.net update checker"
55
authors = ["i30817 <i30817@gmail.com>"]
66
license = "GNU General Public License v3.0"

rhdndat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.7.8'
1+
__version__ = '2.7.9'

rhdndat/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def renamer(romdir: Path = typer.Argument(..., exists=True, file_okay=False, dir
297297
ext: Optional[List[str]] = typer.Option(['a78', 'd64', 'crt', 'hdi', 'fdi', 'ngc', 'ws', 'wsc', 'pce', 'gb', 'gba', 'gbc', 'n64', 'v64', 'z64', '3ds', 'nds', 'nes', 'unh', 'lnx', 'fds', 'sfc', 'smc', 'bs', 'nsp', '32x', 'gg', 'sms', 'md', 'iso', 'dim', 'adf', 'ipf', 'dsi', 'wad', 'cue', 'gdi', 'toc', 'rvz'], help='ROM extensions to find names of, can be repeated. Note that you can ommit this argument to get the predefined list.'),
298298
force: bool = typer.Option(False, '--force', help='Force a recalculation and store of checksum (on windows the calculation always happens).'),
299299
norename: bool = typer.Option(False, '--no-rename', help='Check and store checksums only.'),
300-
showhacks: bool = typer.Option(False, '--show-hacks', help='Show renames for files without parentheses (a good indicator for hacks, if you want to keep renames for translations anyway, keep the original name for them).')
300+
showhacks: bool = typer.Option(False, '--show-hacks', help='Show renames for files without parentheses (a good indicator for hacks, if you want to keep renames for translations anyway, keep the original name for them).'),
301301
verbose: bool = typer.Option(False, '--verbose', help='Print more information about skipped roms.')
302302
):
303303
"""

0 commit comments

Comments
 (0)