Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #160

Merged
merged 3 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# 更新日志(Changelog)

## v1.2.4

### 2024/6/21

- 优化排序执行逻辑(Optimize the sorting execution logic)
- 优化超时重试方法(Optimize the timeout retry method)
- 调整默认配置 open_sort:关闭工作流测速排序,建议本地运行更准确(Adjust the default configuration open_sort: turn off the workflow speed test sorting, local execution is recommended for more accurate results)

## v1.2.3

### 2024/6/17
Expand Down
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
favorite_page_num = 5
default_page_num = 3
urls_limit = 15
open_sort = True
open_sort = False
response_time_weight = 0.5
resolution_weight = 0.5
recent_days = 30
Expand Down
2 changes: 1 addition & 1 deletion tkinter_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TkinterUI:
def __init__(self, root):
self.root = root
self.root.title("直播源接口更新工具")
self.version = "v1.2.3"
self.version = "v1.2.4"
self.update_source = UpdateSource()
self.update_running = False
self.config_entrys = [
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.2.3"
"version": "1.2.4"
}
Loading