diff --git a/README.md b/README.md index 0b26575..b83c6d1 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,10 @@

Python Package - Pypi + Pypi License Python Version + Downloads

--- @@ -36,27 +37,15 @@ Full documentation lives at **[picklock.readthedocs.io](https://picklock.readthe the scan cycle, address expressions, pointer chains, scripting, platform permissions, and every command's arguments. - - - - - - - - - - -
Quick startAttach to a process, find a value, change it.
ScanningThe first-scan/refine cycle, AOB and regex scans.
Addressesmodule+offset, dereferences, and #N scan rows.
Reading and writingValue types, typed reads and writes, hex views and watches.
PointersPointer scans, and the workflow that makes a path survive a restart.
ScriptingNon-interactive use, exit codes, JSON export.
Command referenceEvery command and flag, generated from the code.
PermissionsWhat each OS wants before it lets you attach.
TroubleshootingScans that find nothing, chains that stop working.
- Use `help` to list Picklock's commands, and `help ` to get more details about one command. -## 🤝 Contributing +## Contributing Pull requests, bug reports and feature ideas are very welcome. Read [CONTRIBUTING.md](https://github.com/JeanExtreme002/Picklock/blob/main/CONTRIBUTING.md) for the development setup, test layout and the small set of platform-specific quirks to be aware of. -## ⭐ Related +## Related Every read, write, scan and pointer walk is performed by [PyMemoryEditor](https://github.com/JeanExtreme002/PyMemoryEditor), the diff --git a/assets/screenshots/terminal.png b/assets/screenshots/terminal.png index 3f4b67a..27969fd 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 35fda1d..46b63df 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.1" + release = "0.2.2" version = ".".join(release.split(".")[:2]) diff --git a/docs/quickstart.md b/docs/quickstart.md index 4d3b792..95ca584 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -10,7 +10,7 @@ picklock ``` ``` -Welcome to Picklock 0.2.1, a terminal client for PyMemoryEditor. +Welcome to Picklock 0.2.2, 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 9ff31b3..7969123 100644 --- a/picklock/__init__.py +++ b/picklock/__init__.py @@ -14,7 +14,7 @@ """ __author__ = "Jean Loui Bernard Silva de Jesus" -__version__ = "0.2.1" +__version__ = "0.2.2" from .errors import CommandError, NoProcessError, PicklockError from .session import Session