From b49a6359522a6086061656a8a2c980caf66e2729 Mon Sep 17 00:00:00 2001 From: sr55 Date: Tue, 2 Dec 2025 19:24:11 +0000 Subject: [PATCH] docs: Update build instructions with correct git tag lookups --- source/docs/en/1.10.0/developer/build-bsd.markdown | 6 ++++++ source/docs/en/1.10.0/developer/build-linux.markdown | 5 +++++ source/docs/en/1.10.0/developer/build-mac.markdown | 5 +++++ source/docs/en/1.10.0/developer/build-windows.markdown | 5 +++++ 4 files changed, 21 insertions(+) diff --git a/source/docs/en/1.10.0/developer/build-bsd.markdown b/source/docs/en/1.10.0/developer/build-bsd.markdown index 123871b5..e2baeedc 100644 --- a/source/docs/en/1.10.0/developer/build-bsd.markdown +++ b/source/docs/en/1.10.0/developer/build-bsd.markdown @@ -31,6 +31,12 @@ Dependency installation instructions are available for the following distributio Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake + +List available tags in the HandBrake 1.10.x release series, and check out the most recent. + + git tag --list | grep ^1\.10\. + git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1) + Build HandBrake. To enable support for Intel Quick Sync Video (FreeBSD only), append `--enable-qsv`. To build the command line interface only, disable the graphical interface by appending `--disable-gtk`. diff --git a/source/docs/en/1.10.0/developer/build-linux.markdown b/source/docs/en/1.10.0/developer/build-linux.markdown index 4dbb6100..4fe662e4 100644 --- a/source/docs/en/1.10.0/developer/build-linux.markdown +++ b/source/docs/en/1.10.0/developer/build-linux.markdown @@ -41,6 +41,11 @@ Dependency installation instructions are available for the following distributio Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake + +List available tags in the HandBrake 1.10.x release series, and check out the most recent. + + git tag --list | grep ^1\.10\. + git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1) Build HandBrake. diff --git a/source/docs/en/1.10.0/developer/build-mac.markdown b/source/docs/en/1.10.0/developer/build-mac.markdown index f1fe865b..00e323fa 100644 --- a/source/docs/en/1.10.0/developer/build-mac.markdown +++ b/source/docs/en/1.10.0/developer/build-mac.markdown @@ -53,6 +53,11 @@ Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake +List available tags in the HandBrake 1.10.x release series, and check out the most recent. + + git tag --list | grep ^1\.10\. + git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1) + You may build and install the additional dependencies using the included script. Feel free to choose a different output path, if desired. sudo scripts/mac-toolchain-build /usr/local diff --git a/source/docs/en/1.10.0/developer/build-windows.markdown b/source/docs/en/1.10.0/developer/build-windows.markdown index bf3f0ea7..1aee76cb 100644 --- a/source/docs/en/1.10.0/developer/build-windows.markdown +++ b/source/docs/en/1.10.0/developer/build-windows.markdown @@ -83,6 +83,11 @@ Install the additional dependencies required to build the MinGW-w64 toolchain. Clone the HandBrake repository. git clone https://github.com/HandBrake/HandBrake.git && cd HandBrake + +List available tags in the HandBrake 1.10.x release series, and check out the most recent. + + git tag --list | grep ^1\.10\. + git checkout refs/tags/$(git tag -l | grep -E '^1\.10\.[0-9]+$' | tail -n 1) Build the MinGW-w64 toolchain using the included script, where `username` is your user name. Feel free to choose a different output path, if desired.