v0.2.2: Unify quality defaults, improve README

- Unify 'all' defaults to match 'invisible' (strength=0.02, steps=100)
- Reorder CLI docs: 'all' command first, individual commands second
- HuggingFace token is now documented as optional
- Remove 'additional setup' label from invisible section
This commit is contained in:
test-user
2026-03-25 12:28:02 -07:00
parent 2152ebcd32
commit 507757738e
6 changed files with 27 additions and 21 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
"""Remove-AI-Watermarks: Unified tool for removing visible and invisible AI watermarks."""
__version__ = "0.2.1"
__version__ = "0.2.2"
+2 -2
View File
@@ -321,8 +321,8 @@ def cmd_metadata(
@click.option(
"--inpaint-method", type=click.Choice(["ns", "telea", "gaussian"]), default="ns", help="Inpainting method."
)
@click.option("--strength", type=float, default=0.04, help="Invisible watermark denoising strength (0.01.0).")
@click.option("--steps", type=int, default=50, help="Number of denoising steps for invisible removal.")
@click.option("--strength", type=float, default=0.02, help="Invisible watermark denoising strength (0.01.0).")
@click.option("--steps", type=int, default=100, help="Number of denoising steps for invisible removal.")
@click.option(
"--pipeline",
type=click.Choice(["default", "ctrlregen"]),