Skip to content

Commit

Permalink
修正交互话术信息。
Browse files Browse the repository at this point in the history
  • Loading branch information
OdysseusYuan committed Nov 9, 2022
1 parent f4357f4 commit 341bdf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LKY_OfficeTools/Lib/Lib_OfficeDownload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ internal static int FilesDownload()
return 0;
}

new Log($" √ {new FileInfo(save_path).Name} 已下载。\n", ConsoleColor.DarkGreen);
new Log($" √ {new FileInfo(save_path).Name} 已下载。", ConsoleColor.DarkGreen);
}

new Log($"\n------> 正在检查 Microsoft Office v{OfficeNetVersion.latest_version} 文件 ...", ConsoleColor.DarkCyan);
Expand Down
2 changes: 1 addition & 1 deletion LKY_OfficeTools/Lib/Lib_OfficeInstall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ internal static bool ConflictCheck()
//Office ID完全不同时(剔除 Current_Office_ID 键值为空,也就是注册表键值不存在的情况),需要卸载旧版本
if (!string.IsNullOrEmpty(Current_Office_ID) && Current_Office_ID != Pop_Office_ID)
{
new Log($" * 发现冲突的 Office 版本:{Current_Office_ID},如需安装最新版,请先卸载旧版本。", ConsoleColor.DarkMagenta);
new Log($" $ 发现冲突的 Office 版本:{Current_Office_ID},如需安装最新版,请先卸载旧版本。", ConsoleColor.DarkRed);

Console.ForegroundColor = ConsoleColor.Gray;
Console.Write($" 卸载旧版全部组件,并仅安装新版 Word、Excel、PPT 三件套,请按 回车键 继续 ...");
Expand Down

0 comments on commit 341bdf1

Please sign in to comment.