Skip to content
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,7 @@ debian/files
.specstory/
.cursor/
.cursorindexingignore
.claude/
.npm-cache/
.trellis/

2 changes: 2 additions & 0 deletions src/source/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1287,6 +1287,8 @@ void MainWindow::slotCompress(const QVariant &val)
} else if ((false == options.bSplit) && true == bUseLibarchive && "application/zip" == m_stCompressParameter.strMimeType) {
// 考虑到华为arm平台 zip压缩 性能提升,只针对zip类型的压缩才会考虑到是否特殊处理arm平台,分卷情况不做此处理
eType = UiTools::APT_Libarchive;
} else if (options.bSplit && "application/zip" == m_stCompressParameter.strMimeType) {
eType = UiTools::APT_Cli7z;
} else if ("application/x-compressed-tar" == m_stCompressParameter.strMimeType && m_stCompressParameter.strArchiveName.endsWith("tar.gz")) {
if (1 == m_stCompressParameter.iCPUTheadNum) {
// 针对单线程的tar.gz,使用gzip默认方式进行压缩
Expand Down
Loading