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
|
## [1.14.7 / 5.69.7] - 2024-09-05
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- added "RandomRegUID" (bool) which could modify Windows Product ID in the registry to a random value
|
- 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 "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
|
- added option to get free 10 days evaluation certificates from the support settings page
|
||||||
|
|
|
@ -1037,7 +1037,7 @@ QString CSbieView::AddNewBox(bool bAlowTemp)
|
||||||
|
|
||||||
QString CSbieView::ImportSandbox()
|
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())
|
if (Path.isEmpty())
|
||||||
return "";
|
return "";
|
||||||
|
|
||||||
|
@ -1405,7 +1405,7 @@ void CSbieView::OnSandBoxAction(QAction* Action, const QList<CSandBoxPtr>& SandB
|
||||||
Password = pwWnd.GetPassword();
|
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())
|
if (Path.isEmpty())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue