diff --git a/.github/workflows/docs-release.yml b/.github/workflows/docs-release.yml index e24dc48ce..31af21d59 100644 --- a/.github/workflows/docs-release.yml +++ b/.github/workflows/docs-release.yml @@ -1,4 +1,4 @@ -name: Latest Release Docs +name: Stable Release Docs on: release: @@ -7,7 +7,7 @@ on: jobs: deploy: - name: Deploy docs for latest release + name: Deploy docs for stable release runs-on: ubuntu-latest steps: - name: Only allow running on tag refs @@ -41,4 +41,4 @@ jobs: --push \ --remote origin \ ${{ github.ref_name }} \ - latest + stable diff --git a/README.md b/README.md index 7a97b7b08..0649c5e9d 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ with a focus on features needed by low-level software developers, hardware hackers, reverse-engineers and exploit developers. -It has a boatload of features, see our [Features page](https://pwndbg.re/latest/features/) +It has a boatload of features, see our [Features page](https://pwndbg.re/stable/features/) and [CHEATSHEET][CHEATSHEET] (feel free to print it!). If you have any questions you may read the -[documentation](https://pwndbg.re/latest/) or asks us in our [Discord server](https://discord.gg/x47DssnGwm). +[documentation](https://pwndbg.re/stable/) or asks us in our [Discord server](https://discord.gg/x47DssnGwm). [CHEATSHEET]: https://pwndbg.re/dev/CHEATSHEET.pdf @@ -30,7 +30,7 @@ smoothing out rough edges and making them more user-friendly. ## Installation -See [installation instructions](https://pwndbg.re/latest/setup). +See [installation instructions](https://pwndbg.re/stable/setup). ## What about ...? diff --git a/mkdocs.yml b/mkdocs.yml index 78f5a37d0..732210cb9 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -140,7 +140,7 @@ plugins: - mike: css_dir: stylesheets version_selector: true - canonical_version: latest + canonical_version: stable # Fine-grained nav control - awesome-nav: diff --git a/pwndbg/lib/tips.py b/pwndbg/lib/tips.py index 7d005ae42..d29c69738 100644 --- a/pwndbg/lib/tips.py +++ b/pwndbg/lib/tips.py @@ -34,7 +34,7 @@ PWNDBG_TIPS: List[str] = [ "Pwndbg context displays where the program branches to thanks to emulating few instructions into the future. You can disable this with `set emulate off` which may also speed up debugging", "Use the `canary` command to see all stack canary/cookie values on the stack (based on the *usual* stack canary value initialized by glibc)", "Use the `procinfo` command for better process introspection (than the GDB's `info proc` command)", - "Want to display each context panel in a separate tmux window? See https://pwndbg.re/latest/tutorials/splitting-the-context/", + "Want to display each context panel in a separate tmux window? See https://pwndbg.re/stable/tutorials/splitting-the-context/", 'Use `$base("heap")` to get the start address of a [heap] memory page', "Use the `errno` (or `errno `) command to see the name of the last or provided (libc) error", "Pwndbg sets the SIGLARM, SIGBUS, SIGPIPE and SIGSEGV signals so they are not passed to the app; see `info signals` for full GDB signals configuration",