diff --git a/pythonlib/README.md b/pythonlib/README.md index 6aec53a..b3d03ae 100644 --- a/pythonlib/README.md +++ b/pythonlib/README.md @@ -145,10 +145,10 @@ Interactive selector: You can also pass a specifier to pin a specific version or choose a channel to follow directly. This will pull the latest stable version from the official repo on `camoufox fetch`. ```bash -> camoufox set official/stable # default setting +> camoufox set official/stable # Default setting ``` -Follow latest prerelease version from the official repo: +Follow latest prerelease version from the official repo, if applicable: ```bash > camoufox set official/prerelease @@ -167,7 +167,7 @@ Pin a specific version: Prints the current active version string: ```bash -> camoufox active +> camoufox active # Default channel is active official/stable ``` @@ -176,7 +176,7 @@ official/stable Pinned: coryking/stable/142.0.1-fork.26 Run 'camoufox fetch' to install. -> camoufox active +> camoufox active # A specific version is pinned coryking/stable/142.0.1-fork.26 (not installed) ``` @@ -184,11 +184,23 @@ coryking/stable/142.0.1-fork.26 (not installed) ### `fetch` -Install the active version, or a specific version. This will also automatically sync repository assets. +Install the latest version from the active channel. By default, this is official/stable. This will also automatically sync repository assets. ```bash -> camoufox fetch # install active channel's latest -> camoufox fetch official/135.0-beta.25 # install a specific version +> camoufox fetch # Install the latest in the channel +``` + +To download the latest from a different channel, or pin a version: + +```bash +> camoufox set coryking/stable +> camoufox fetch # Will download the latest release from CoryKing's repo for now on +``` + +Or pass in the identifier to download directly without activating it: + +```bash +> camoufox fetch official/stable/135.0-beta.25 # Install a specific version ```