ソースを参照

UI: Fix update check logging (non-sparkle)

It currently says "Update check: latest version is x.x.x", which is a
bit confusion.  It should say "Update check: last known remote version
is x.x.x" instead.
jp9000 10 年 前
コミット
64d9dd77e7
1 ファイル変更2 行追加1 行削除
  1. 2 1
      obs/window-basic-main.cpp

+ 2 - 1
obs/window-basic-main.cpp

@@ -1555,7 +1555,8 @@ void OBSBasic::updateFileFinished(const QString &text, const QString &error)
 		long patch   = obs_data_get_int(versionData, "patch");
 		long version = MAKE_SEMANTIC_VERSION(major, minor, patch);
 
-		blog(LOG_INFO, "Update check: latest version is: %ld.%ld.%ld",
+		blog(LOG_INFO, "Update check: last known remote version "
+				"is %ld.%ld.%ld",
 				major, minor, patch);
 
 		if (version > LIBOBS_API_VER) {