Add support for annotation of any given revision

- Parent commits are also accessible from Annotate context menu
- The client functionality was added in `fossil v2.4`

Change-Id: Ia6096432cb1151388b5aebca30a6d25c1c6079f4
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Artur Shepilko
2018-07-16 12:25:41 -05:00
parent b1e1cdef86
commit 88e11284ea
7 changed files with 111 additions and 25 deletions

View File

@@ -28,9 +28,14 @@
namespace Fossil {
namespace Internal {
RevisionInfo::RevisionInfo(const QString &revisionId, const QString &parent) :
RevisionInfo::RevisionInfo(const QString &revisionId, const QString &parent,
const QStringList &mergeParents, const QString &comment,
const QString &user) :
id(revisionId),
parentId(parent)
parentId(parent),
mergeParentIds(mergeParents),
commentMsg(comment),
committer(user)
{ }
} // namespace Internal