Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tldr-pages/tldr-python-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.3.0
Choose a base ref
...
head repository: tldr-pages/tldr-python-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.4.0
Choose a head ref
  • 19 commits
  • 14 files changed
  • 11 contributors

Commits on Jun 29, 2024

  1. chore: bump tldr snap version (#250)

    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    kbdharun authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    e85c9d2 View commit details
    Browse the repository at this point in the history
  2. fix/snap: specify platforms to build for and drop i386 (#251)

    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    kbdharun authored Jun 29, 2024
    Configuration menu
    Copy the full SHA
    26fcb81 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2024

  1. Configuration menu
    Copy the full SHA
    bad9f77 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. Configuration menu
    Copy the full SHA
    784225e View commit details
    Browse the repository at this point in the history
  2. feat: stylize text inside backticks when appearing in example descrip…

    …tion (#254)
    
    * Stylize italics in helptext using ANSI escapes
    
    * Ensure example styles are still applied and not completely reset
    
    * Remove unused import
    
    ---------
    
    Co-authored-by: K.B.Dharun Krishna <[email protected]>
    kyluca and kbdharun authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    38fe118 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. Configuration menu
    Copy the full SHA
    cb63ef4 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2025

  1. README: fix location of tldr.zip (#268)

    The script itself is already using GitHub releases,
    but the readme hasn't been updated.
    acuteenvy authored Mar 8, 2025
    Configuration menu
    Copy the full SHA
    4e2e125 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2025

  1. Implement option length selection with options and environment variab…

    …les (#259)
    
    * Initial work on option lenght selection
    
    * Document functionality with a comment
    
    * Stricter regex
    
    * Allow for multi-option placeholders like in rsync.md
    
    * Set display with options
    
    * Fix issues
    
    * Fix tests
    
    * Fix comma
    
    * Add env variable support
    
    * shuffle order
    
    * whitespace
    
    * longform by default
    
    * New syntax and default behavior
    
    * Leave the brackets if both are requested
    
    * -o and -O for options
    
    * Update README.md
    
    * merge
    
    * Apply official option naming
    
    * Update README.md
    
    * env variables
    
    * Make it work
    
    * fix default state
    
    * Fix --short-options
    
    * Update README.md
    
    Co-authored-by: Lena <[email protected]>
    
    * Use strings instead of bools
    
    ---------
    
    Co-authored-by: Lena <[email protected]>
    Managor and acuteenvy authored Mar 25, 2025
    Configuration menu
    Copy the full SHA
    d078665 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2025

  1. feat/ci: use commit hash for actions, add arm64 support to test workf…

    …low (#270)
    
    * feat/ci: use commit hash for actions, add arm64 support to test workflow
    
    * feat: build snaps in arm
    
    * fu: run build-snap job only if base build job succeeds
    
    ---------
    
    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    kbdharun authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    bb2be0c View commit details
    Browse the repository at this point in the history
  2. feat/publish: add trusted publisher support to CI (#271)

    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    kbdharun authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    ff2b92b View commit details
    Browse the repository at this point in the history
  3. Allow specifying a certificate bundle with TLDR_CERT (#243)

    * .gitignore: ignore .envrc and .direnv/
    
    * Add support for TLDR_CERT environmental variable
    
    Setting TLDR_CERT will use that as the certificate bundle for updates
    
    * Document TLDR_CERT in README
    
    ---------
    
    Co-authored-by: Vítor Henrique <[email protected]>
    Co-authored-by: CleanMachine1 <[email protected]>
    Co-authored-by: K.B.Dharun Krishna <[email protected]>
    4 people authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    b5bfe14 View commit details
    Browse the repository at this point in the history
  4. fix: avoid duplicate pages information (#265)

    * fix: avoid duplicate pages information
    
    Use set and then convert back to list in order
    to avoid duplicate page message
    
    * fix: remove unecessary casting to list
    sellisd authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    1d36280 View commit details
    Browse the repository at this point in the history
  5. Only require colorama on Windows (#266)

    Co-authored-by: K.B.Dharun Krishna <[email protected]>
    hukkin and kbdharun authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    1a565b0 View commit details
    Browse the repository at this point in the history
  6. feat: add --clear-cache option (#249)

    * feat : add clear_cache feature
    
    - add clear_cache function to clear the local cache for files and directories across languages
    - add the parser link to the function
    
    * README: add description for --clear-cache option and minor fixes
    
    * feat: use `shutil.rmtree` to remove cache
    
    ---------
    
    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    Co-authored-by: K.B.Dharun Krishna <[email protected]>
    Co-authored-by: Vitor Henrique <[email protected]>
    3 people authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    d51239f View commit details
    Browse the repository at this point in the history
  7. feat: extend testing CI, drop Python 3.8 *& PyPy 3.9, separate build …

    …and publish jobs in publish workflow (#272)
    
    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    kbdharun authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    c01fd45 View commit details
    Browse the repository at this point in the history
  8. feat: migrate setup.py to pyproject (with hatch backend), update pack…

    …age metadata and update publish workflow (#273)
    
    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    kbdharun authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    0fe8b0c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0a617e1 View commit details
    Browse the repository at this point in the history
  10. fix: configure snapcraft to build from git on main branch and limit j…

    …ob to it (#275)
    
    This commit fixes the snap workflow which till now ran the same build from existing tag regardless of the workflow/branch that triggered it. Now, I have updated to build with git for the default main branch.
    kbdharun authored Mar 27, 2025
    Configuration menu
    Copy the full SHA
    3661908 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2025

  1. feat: update for v3.4.0 release (#269)

    Signed-off-by: K.B.Dharun Krishna <[email protected]>
    Co-authored-by: K.B.Dharun Krishna <[email protected]>
    Managor and kbdharun authored Mar 28, 2025
    Configuration menu
    Copy the full SHA
    49d71cc View commit details
    Browse the repository at this point in the history
Loading