mirror of
https://github.com/Qv2ray/Qv2ray.git
synced 2025-05-20 02:40:20 +08:00
ui: fixed a misleading UI text when importing a configuration
This commit is contained in:
parent
de896ed166
commit
b55d930b3a
@ -148,7 +148,7 @@ namespace Qv2ray::core::connection
|
||||
return QDir().rename(QV2RAY_SUBSCRIPTION_DIR + originalName, QV2RAY_SUBSCRIPTION_DIR + newName);
|
||||
}
|
||||
|
||||
CONFIGROOT ConvertConfigFromFile(QString sourceFilePath, bool keepInbounds)
|
||||
CONFIGROOT ConvertConfigFromFile(QString sourceFilePath, bool importComplex)
|
||||
{
|
||||
QFile source(sourceFilePath);
|
||||
|
||||
@ -159,8 +159,9 @@ namespace Qv2ray::core::connection
|
||||
|
||||
auto root = CONFIGROOT(JsonFromString(StringFromFile(&source)));
|
||||
|
||||
if (!keepInbounds) {
|
||||
if (!importComplex) {
|
||||
JSON_ROOT_TRY_REMOVE("inbounds")
|
||||
JSON_ROOT_TRY_REMOVE("routing")
|
||||
}
|
||||
|
||||
JSON_ROOT_TRY_REMOVE("log")
|
||||
|
@ -19,7 +19,7 @@ namespace Qv2ray::core::connection
|
||||
bool RenameSubscription(const QString &originalName, const QString &newName);
|
||||
|
||||
// File Protocol
|
||||
CONFIGROOT ConvertConfigFromFile(QString sourceFilePath, bool keepInbounds);
|
||||
CONFIGROOT ConvertConfigFromFile(QString sourceFilePath, bool importComplex);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ void ImportConfigWindow::on_beginImportBtn_clicked()
|
||||
switch (tabWidget->currentIndex()) {
|
||||
case 0: {
|
||||
// From File...
|
||||
bool keepInBound = keepImportedInboundCheckBox->isChecked();
|
||||
bool ImportAsComplex = keepImportedInboundCheckBox->isChecked();
|
||||
QString path = fileLineTxt->text();
|
||||
|
||||
if (!V2rayKernelInstance::ValidateConfig(path)) {
|
||||
@ -111,7 +111,7 @@ void ImportConfigWindow::on_beginImportBtn_clicked()
|
||||
}
|
||||
|
||||
aliasPrefix += "_" + QFileInfo(path).fileName();
|
||||
CONFIGROOT config = ConvertConfigFromFile(path, keepInBound);
|
||||
CONFIGROOT config = ConvertConfigFromFile(path, ImportAsComplex);
|
||||
connections[aliasPrefix] = config;
|
||||
break;
|
||||
}
|
||||
|
@ -82,20 +82,6 @@
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Inbound</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QCheckBox" name="keepImportedInboundCheckBox">
|
||||
<property name="text">
|
||||
<string>Keep imported inbound settings</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_10">
|
||||
<property name="text">
|
||||
@ -110,6 +96,13 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="keepImportedInboundCheckBox">
|
||||
<property name="text">
|
||||
<string>Import as Complex Config (Manually edit route rules and inbounds)</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="tabWidgetPage2">
|
||||
|
Loading…
Reference in New Issue
Block a user