Merge pull request #4200 from love-code-yeyixiao/ZipExportImport
ZipExportImport
This commit is contained in:
commit
5598dc36b7
|
@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
## [1.14.7 / 5.69.7] - 2024-09-05
|
||||
|
||||
### Added
|
||||
|
||||
- added "RandomRegUID" (bool) which could modify Windows Product ID in the registry to a random value
|
||||
- added "HideDiskSerialNumber" (bool) return random value when applications try to get disk serial number
|
||||
- added option to get free 10 days evaluation certificates from the support settings page
|
||||
|
|
|
@ -516,4 +516,4 @@ SArcInfo GetArcInfo(const QString &FileName)
|
|||
if(ArcInfo.FormatIndex == 0) // not a known archive
|
||||
ArcInfo.ArchiveExt.clear();
|
||||
return ArcInfo;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1037,7 +1037,7 @@ QString CSbieView::AddNewBox(bool bAlowTemp)
|
|||
|
||||
QString CSbieView::ImportSandbox()
|
||||
{
|
||||
QString Path = QFileDialog::getOpenFileName(this, tr("Select file name"), "", tr("7-zip Archive (*.7z)"));
|
||||
QString Path = QFileDialog::getOpenFileName(this, tr("Select file name"), "", tr("7-zip Archive (*.7z);;Zip Archive (*.zip)"));
|
||||
if (Path.isEmpty())
|
||||
return "";
|
||||
|
||||
|
@ -1405,7 +1405,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList<CSandBoxPtr>& SandB
|
|||
Password = pwWnd.GetPassword();
|
||||
}
|
||||
|
||||
QString Path = QFileDialog::getSaveFileName(this, tr("Select file name"), SandBoxes.first()->GetName() + ".7z", tr("7-zip Archive (*.7z)"));
|
||||
QString Path = QFileDialog::getSaveFileName(this, tr("Select file name"), SandBoxes.first()->GetName() + ".7z", tr("7-zip Archive (*.7z);;Zip Archive (*.zip)"));
|
||||
if (Path.isEmpty())
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue