This commit is contained in:
arm64v8a
2022-10-22 08:43:32 +09:00
parent d49c2d4e90
commit c288d3e047
4 changed files with 8 additions and 4 deletions

View File

@@ -31,5 +31,5 @@ popd
#### Go: nekobox_core #### #### Go: nekobox_core ####
pushd go/cmd/nekobox_core pushd go/cmd/nekobox_core
go build -v -o $DEST -trimpath -ldflags "-w -s -X neko/pkg/neko_common.Version_neko=$version_standalone" -tags "with_gvisor,with_quic,with_wireguard,with_v2ray_api" go build -v -o $DEST -trimpath -ldflags "-w -s -X neko/pkg/neko_common.Version_neko=$version_standalone" -tags "with_gvisor,with_quic,with_wireguard,with_v2ray_api,with_ech,with_utls"
popd popd

View File

@@ -591,6 +591,10 @@
<source>Please pick a core.</source> <source>Please pick a core.</source>
<translation></translation> <translation></translation>
</message> </message>
<message>
<source>Outbound JSON, please read the documentation.</source>
<translation> JSON </translation>
</message>
</context> </context>
<context> <context>
<name>EditNaive</name> <name>EditNaive</name>

View File

@@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>400</width> <width>400</width>
<height>476</height> <height>400</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@@ -26,7 +26,7 @@
<property name="minimumSize"> <property name="minimumSize">
<size> <size>
<width>0</width> <width>0</width>
<height>400</height> <height>300</height>
</size> </size>
</property> </property>
<property name="contextMenuPolicy"> <property name="contextMenuPolicy">

View File

@@ -63,7 +63,7 @@ void EditCustom::onStart(QSharedPointer<NekoRay::ProxyEntity> _ent) {
// custom internal // custom internal
if (preset_core == "internal") { if (preset_core == "internal") {
ui->core->hide(); ui->core->hide();
ui->core_l->hide(); ui->core_l->setText(tr("Outbound JSON, please read the documentation."));
ui->command->hide(); ui->command->hide();
ui->command_l->hide(); ui->command_l->hide();
} }