commit 3ff510467aed69a79858cf26d9f98de01aabef05
parent 6c2d587b8a88d2fe2594ffc9df1b45aec43a6c3d
Author: cfillion <cfillion@users.noreply.github.com>
Date: Thu, 4 Feb 2016 19:16:29 -0500
prefix version names with a 'v' in the package history dialog
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/about.cpp b/src/about.cpp
@@ -293,7 +293,7 @@ void History::fillReport()
if(stream().tellp())
stream() << NL;
- stream() << ver->name();
+ stream() << 'v' << ver->name();
if(!ver->author().empty())
stream() << " by " << ver->author();