1
mirror of https://github.com/nilaoda/N_m3u8DL-CLI synced 2025-09-16 05:20:50 +02:00

Compare commits

...

3 Commits
2.8.4 ... 2.8.5

Author SHA1 Message Date
nilaoda
83915ff606 Update Global.cs 2020-11-25 14:12:46 +08:00
nilaoda
9cd4746f33 Update changelog.txt 2020-11-25 14:11:31 +08:00
nilaoda
33a5b917ac 修正MPD判断最高清晰度的逻辑 2020-11-25 14:08:40 +08:00
3 changed files with 6 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ namespace N_m3u8DL_CLI
/*===============================================================================*/ /*===============================================================================*/
static Version ver = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; static Version ver = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
static string nowVer = $"{ver.Major}.{ver.Minor}.{ver.Build}"; static string nowVer = $"{ver.Major}.{ver.Minor}.{ver.Build}";
static string nowDate = "20201123"; static string nowDate = "20201125";
public static void WriteInit() public static void WriteInit()
{ {
Console.Clear(); Console.Clear();

View File

@@ -548,6 +548,7 @@ namespace N_m3u8DL_CLI
if (f["Tbr"] > bandwidth) if (f["Tbr"] > bandwidth)
{ {
best = f; best = f;
bandwidth = f["Tbr"];
} }
} }
} }
@@ -569,6 +570,7 @@ namespace N_m3u8DL_CLI
if (f["Tbr"] > bandwidth) if (f["Tbr"] > bandwidth)
{ {
best = f; best = f;
bandwidth = f["Tbr"];
} }
} }
} }

View File

@@ -290,4 +290,6 @@
- 新的任务速度监控逻辑 - 新的任务速度监控逻辑
2020年11月23日 2020年11月23日
- 将默认UA修改为 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 - 将默认UA修改为 Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36
- 修改芒果TV请求头 - 修改芒果TV请求头
2020年11月25日
- 修正MPD判断最高清晰度的逻辑