Update: Refactor to absolute imports, fix QPS limits, and enhance Gitea sync with SQLite support

This commit is contained in:
2026-07-21 10:25:29 +08:00
parent ef04fc5627
commit 97d9d98b4c
67 changed files with 1691 additions and 457 deletions
+3 -3
View File
@@ -5,15 +5,15 @@
import tkinter as tk
from tkinter import messagebox
from .ui_widgets import center_window
from .action_handlers import (
from app.ui.ui_widgets import center_window
from app.ui.action_handlers import (
process_single_image_with_status,
process_excel_file_with_status,
batch_ocr_with_status,
run_pipeline_directly,
merge_orders_with_status,
)
from .file_operations import clean_cache
from app.ui.file_operations import clean_cache
def bind_keyboard_shortcuts(root, log_widget, status_bar):