From patchwork Thu Jul 4 14:59:36 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 1613 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4A7E06156A for ; Thu, 4 Jul 2019 16:59:46 +0200 (CEST) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id B1ACC24B; Thu, 4 Jul 2019 16:59:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1562252385; bh=rwRE2yWEtdHfI18HWc3TQEmZWzpD/mfgqgJl03pyhnk=; h=From:To:Cc:Subject:Date:From; b=gtVFb+8dgfNXIh9TC3lI9SfuT+PrLDlkw7S5MLaj6dobGvvKn1EVY++x3aj0xtDuB ULBwrnXlesfQpNXqhkoF2j2wscHIUG5BWUQY5CylcPV+glNvW/Aq7tt4eGNMBdAqHd pu/3T1K1jfZSd4ibv7M2kZHPcdWjiAy9AhYMfSTA= From: Kieran Bingham To: LibCamera Devel Date: Thu, 4 Jul 2019 15:59:36 +0100 Message-Id: <20190704145942.17879-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v4 0/6] Automatic Version Generation ++ X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jul 2019 14:59:46 -0000 Version 4. ... because last time, I messed up both the sending, and the version number. My appologies. This series incorporates Laurents tags and review updates. In particular, - Improvements to the version generation - QCam: The FPS is now started and stopped with the stream - A new patch is added to fix wrapping on Documentation/meson.build Kieran Bingham (6): Documentation: Make the project brief more expressive libcamera: Auto generate version information qcam: Move static timestamp to MainWindow qcam: Add the version string to the title qcam: Update window title with FPS Documentation: Wrap extended doc_install_dir line Documentation/Doxyfile.in | 2 +- Documentation/conf.py | 7 ++---- Documentation/meson.build | 8 +++++-- include/libcamera/meson.build | 7 ++++++ include/libcamera/version.h.in | 22 +++++++++++++++++++ meson.build | 9 +++----- src/libcamera/camera_manager.cpp | 8 +++++++ src/libcamera/meson.build | 1 + src/qcam/main_window.cpp | 37 +++++++++++++++++++++++++++----- src/qcam/main_window.h | 18 ++++++++++++++++ src/qcam/meson.build | 11 ++++++++-- utils/gen-version.sh | 37 ++++++++++++++++++++++++++++++++ 12 files changed, 146 insertions(+), 21 deletions(-) create mode 100644 include/libcamera/version.h.in create mode 100755 utils/gen-version.sh