From 3081701a32cd2492d3d2833078c0c118b3be8bf1 Mon Sep 17 00:00:00 2001 From: nilaoda Date: Fri, 29 Nov 2024 20:57:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=BF=E7=94=A8`tput`=E6=9B=BF=E4=BB=A3`stty?= =?UTF-8?q?`=20(#523)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/N_m3u8DL-RE/CommandLine/CommandInvoker.cs | 2 +- src/N_m3u8DL-RE/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/N_m3u8DL-RE/CommandLine/CommandInvoker.cs b/src/N_m3u8DL-RE/CommandLine/CommandInvoker.cs index 5c6f182..7afc33d 100644 --- a/src/N_m3u8DL-RE/CommandLine/CommandInvoker.cs +++ b/src/N_m3u8DL-RE/CommandLine/CommandInvoker.cs @@ -17,7 +17,7 @@ namespace N_m3u8DL_RE.CommandLine; internal partial class CommandInvoker { - public const string VERSION_INFO = "N_m3u8DL-RE (Beta version) 20241124"; + public const string VERSION_INFO = "N_m3u8DL-RE (Beta version) 20241129"; [GeneratedRegex("((best|worst)\\d*|all)")] private static partial Regex ForStrRegex(); diff --git a/src/N_m3u8DL-RE/Program.cs b/src/N_m3u8DL-RE/Program.cs index e2a0c5e..3e8df15 100644 --- a/src/N_m3u8DL-RE/Program.cs +++ b/src/N_m3u8DL-RE/Program.cs @@ -61,7 +61,7 @@ internal class Program { Console.CursorVisible = true; if (!OperatingSystem.IsWindows()) - System.Diagnostics.Process.Start("stty", "echo"); + System.Diagnostics.Process.Start("tput", "cnorm"); } catch { } Environment.Exit(0); }