Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified assets/screenshots/terminal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion picklock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"""

__author__ = "Jean Loui Bernard Silva de Jesus"
__version__ = "0.2.2"
__version__ = "0.2.3"

Comment thread
JeanExtreme002 marked this conversation as resolved.
from .errors import CommandError, NoProcessError, PicklockError
from .session import Session
Expand Down
3 changes: 1 addition & 2 deletions picklock/commands/session_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

Expand Down
Loading