diff options
author | Denis Shienkov <denis.shienkov@gmail.com> | 2021-06-15 23:34:30 +0300 |
---|---|---|
committer | Denis Shienkov <denis.shienkov@gmail.com> | 2021-06-16 11:37:12 +0000 |
commit | 273000f895d656cc220ee4886f28334d50062b59 (patch) | |
tree | 114185870dbbb414d246ff72c69101a8c44953fd /doc | |
parent | fb3b51013323d76c301a36c20fb4b53cc93fb45b (diff) | |
download | qbs-273000f895d656cc220ee4886f28334d50062b59.tar.gz |
codesign: Add new codesign.timestampAlgorithm property
We need this property on Windows when we use the
codesign.signingTimestamp property. This property should be set with
the "sha256" value in case when the app is to be distributed over the
App Store; otherwise the the codesign.signingTimestamp property is
quite useless.
Fixes: QBS-1651
Change-Id: Iacc5f80b8acf81ea1a34f55416e6966c41b0e727
Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/reference/modules/codesign-module.qdoc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/reference/modules/codesign-module.qdoc b/doc/reference/modules/codesign-module.qdoc index d0aba4688..45e247a6a 100644 --- a/doc/reference/modules/codesign-module.qdoc +++ b/doc/reference/modules/codesign-module.qdoc @@ -343,6 +343,22 @@ */ /*! + \qmlproperty string codesign::timestampAlgorithm + + Specifies the default timestamp algorithm used together with the + \c signingTimestamp property. The possible values are \c sha1, \c sha256. + + \note If this value is not set, then the default sha1 algorithm + will be used. + + \since Qbs 1.19.2 + + \defaultvalue \c undefined + + \windowsproperty +*/ + +/*! \qmlproperty string codesign::certificatePath Specifies the full path to the signing certificate file (*.pfx). |