From 850e34d6d08677dd06a93ce5a36e2c569462e4e1 Mon Sep 17 00:00:00 2001 From: Christian Rauch Date: Sun, 27 Oct 2024 15:46:17 +0100 Subject: [PATCH] document Debian package download --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ef124d60..2368315c 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,16 @@ curl -SL $(curl -s https://api.github.com/repos/ros-industrial/ros_qtc_plugin/re Note: Qt Creator from the online installer may notify you about available updates and install them when instructed to do so. The plugin API is only compatible with patch-level updates. A major or minor update will break the plugin API and Qt Creator will then refuse to load the plugin. Make sure that a compatible plugin version is available before updating Qt Creator as it is not possible to downgrade to an older Qt Creator version using the online installer. The offline installer installs a specific Qt Creator version and does not provide updates. +### Debian Package + +```sh +# download Qt Creator and plugin Debian packages +wget $(./packaging/format-deb-url.py --version 14.0.2) --directory-prefix=/tmp +wget --directory-prefix=/tmp $(curl -s https://api.github.com/repos/ros-industrial/ros_qtc_plugin/releases/latest | grep -E 'browser_download_url.*ROSProjectManager-.*-Linux-.*deb' | cut -d'"' -f 4) +# install Debian packages +sudo apt install /tmp/qtcreator-opensource-linux-*-*.deb /tmp/ROSProjectManager-*-Linux-*.{deb,ddeb} +``` + ## Build (Source) ### Dependencies