diff --git a/makespec/BUILDVERSION b/makespec/BUILDVERSION index 7a3cd3d7..8a6742b0 100644 --- a/makespec/BUILDVERSION +++ b/makespec/BUILDVERSION @@ -1 +1 @@ -6141 +6142 diff --git a/src/plugins/subscription-adapters/core/SubscriptionAdapter.hpp b/src/plugins/subscription-adapters/core/SubscriptionAdapter.hpp index 3f8ee79b..1c7d99e2 100644 --- a/src/plugins/subscription-adapters/core/SubscriptionAdapter.hpp +++ b/src/plugins/subscription-adapters/core/SubscriptionAdapter.hpp @@ -41,9 +41,9 @@ class BuiltinSubscriptionAdapterInterface : public SubscriptionInterface QList SupportedSubscriptionTypes() const override { // "simple_base64" = magic value in Qv2ray main application - return { // - ProtocolInfoObject{ "simple_base64", "Basic Base64" }, // - ProtocolInfoObject{ "sip008", "SIP008" } + return { + ProtocolInfoObject{ "sip008", "SIP008" }, // + ProtocolInfoObject{ "simple_base64", "Basic Base64" } // }; } diff --git a/src/ui/widgets/windows/w_GroupManager.cpp b/src/ui/widgets/windows/w_GroupManager.cpp index 10595449..3b61cfed 100644 --- a/src/ui/widgets/windows/w_GroupManager.cpp +++ b/src/ui/widgets/windows/w_GroupManager.cpp @@ -52,7 +52,7 @@ GroupManager::GroupManager(QWidget *parent) : QvDialog("GroupManager", parent) const auto types = subscriptionAdapterInterface->SupportedSubscriptionTypes(); for (const auto &type : types) { - subscriptionTypeCB->addItem(type.displayName, type.protocol); + subscriptionTypeCB->addItem(pluginInfo->metadata.Name + ": " + type.displayName, type.protocol); } }