Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-qt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-qt
Commits
a950a3f9
Commit
a950a3f9
authored
1 month ago
by
Andreas Traczyk
Browse files
Options
Downloads
Patches
Plain Diff
appversionmanager: improve version logging
Gitlab:
#1934
Change-Id: Ic73b39bb3b6e9c14cbe4b4e0773d744da68f5c72
parent
3c279b29
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/appversionmanager.cpp
+3
-3
3 additions, 3 deletions
src/app/appversionmanager.cpp
with
3 additions
and
3 deletions
src/app/appversionmanager.cpp
+
3
−
3
View file @
a950a3f9
...
...
@@ -77,10 +77,10 @@ struct AppVersionManager::Impl : public QObject
auto
latestVersion
=
latestVersionString
.
toULongLong
();
const
QString
channelStr
=
isBeta
?
"beta"
:
"stable"
;
const
auto
newVersionFound
=
latestVersion
>
currentVersion
;
qInfo
().
noquote
()
<<
"--------- Version info ------------"
<<
QString
(
"
\
n
-
Current: %1 (%2)"
).
arg
(
currentVersion
).
arg
(
channelStr
);
qInfo
().
noquote
()
<<
"--------- Version info ------------"
;
qInfo
().
noquote
()
<<
QString
(
"
\
t
Current:
\t
%1 (%2)"
).
arg
(
currentVersion
).
arg
(
channelStr
);
if
(
newVersionFound
)
{
q
Debug
()
<<
" - Latest: "
<<
latestVersion
;
q
Info
().
noquote
()
<<
QString
(
"
\t
Latest:
\t
%1"
).
arg
(
latestVersion
)
;
Q_EMIT
parent_
.
updateCheckReplyReceived
(
true
,
true
);
}
else
if
(
!
quiet
)
{
Q_EMIT
parent_
.
updateCheckReplyReceived
(
true
,
false
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment