Change /latest to /stable (#3374)

* latest-to-stable

* update ci
pull/3376/head
k4lizen 1 month ago committed by GitHub
parent db03238abb
commit b47dd3f543
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

@ -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 ...?

@ -140,7 +140,7 @@ plugins:
- mike:
css_dir: stylesheets
version_selector: true
canonical_version: latest
canonical_version: stable
# Fine-grained nav control
- awesome-nav:

@ -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 <number>`) 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",

Loading…
Cancel
Save