This commit is contained in:
lunaticbum 2026-04-20 18:09:43 +09:00
parent 5b86fc7e2b
commit c8000d022c
2 changed files with 3 additions and 1 deletions

View File

@ -760,6 +760,7 @@ function extractSubtitleList() {
}
}
function scrollToEndAndExtract() {
if (location.host.includes("subtitlecat.com")) {
const scrollStep = 800; // 한 번에 스크롤할 양
const scrollDelay = 500; // 다음 스크롤까지 대기 시간 (ms)
@ -780,6 +781,7 @@ function scrollToEndAndExtract() {
}
step();
}
}

View File

@ -543,7 +543,7 @@ class CompletedFilesFragment : Fragment() {
// 💡 선택 액션 바 버튼 이벤트
view.findViewById<View>(R.id.btnSelectAll)?.setOnClickListener {
selectedFiles.clear()
selectedFiles.addAll(adapter.getAll())
selectedFiles.addAll(adapter.getAll().filter { it.name.contains("..") == false })
adapter.updateSelection(selectedFiles)
}