diff --git a/assets/screenshots/terminal.png b/assets/screenshots/terminal.png index 27969fd..250ff66 100644 Binary files a/assets/screenshots/terminal.png and b/assets/screenshots/terminal.png differ diff --git a/docs/conf.py b/docs/conf.py index 46b63df..e99408d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,7 +39,7 @@ try: from picklock import __version__ as release except Exception: # pragma: no cover - docs can build without the package installed - release = "0.2.2" + release = "0.2.3" version = ".".join(release.split(".")[:2]) diff --git a/docs/quickstart.md b/docs/quickstart.md index 95ca584..ff6572d 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -10,7 +10,7 @@ picklock ``` ``` -Welcome to Picklock 0.2.2, a terminal client for PyMemoryEditor. +Welcome to Picklock 0.2.3, a terminal client for PyMemoryEditor. Type 'help' for the command list, or 'help scanning' for a walkthrough. picklock> diff --git a/picklock/__init__.py b/picklock/__init__.py index 7969123..a1f3033 100644 --- a/picklock/__init__.py +++ b/picklock/__init__.py @@ -14,7 +14,7 @@ """ __author__ = "Jean Loui Bernard Silva de Jesus" -__version__ = "0.2.2" +__version__ = "0.2.3" from .errors import CommandError, NoProcessError, PicklockError from .session import Session diff --git a/picklock/commands/session_commands.py b/picklock/commands/session_commands.py index 5620699..8f5cb55 100644 --- a/picklock/commands/session_commands.py +++ b/picklock/commands/session_commands.py @@ -292,8 +292,7 @@ def _print_overview(session: Session) -> None: "\n" "picklock> scan:value int32 100 --writable\n" "Showing 20 of 3184 rows — page 1 of 160 — writable regions only " - "(1.42 sec)\n" - "Next page: scan:results --page 2", + "(1.42 sec)", indent=4, )