hiddifypanel 10.14.0__py3-none-any.whl → 10.15.0.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hiddifypanel/VERSION +1 -1
- hiddifypanel/VERSION.py +2 -2
- hiddifypanel/auth.py +15 -4
- hiddifypanel/base.py +11 -3
- hiddifypanel/cache.py +43 -25
- hiddifypanel/database.py +9 -0
- hiddifypanel/drivers/singbox_api.py +2 -14
- hiddifypanel/drivers/xray_api.py +0 -4
- hiddifypanel/hutils/__init__.py +1 -0
- hiddifypanel/hutils/convert.py +13 -2
- hiddifypanel/hutils/crypto.py +21 -2
- hiddifypanel/hutils/flask.py +18 -4
- hiddifypanel/hutils/importer/xui.py +5 -2
- hiddifypanel/hutils/node/__init__.py +3 -0
- hiddifypanel/hutils/node/api_client.py +76 -0
- hiddifypanel/hutils/node/child.py +147 -0
- hiddifypanel/hutils/node/parent.py +100 -0
- hiddifypanel/hutils/node/shared.py +65 -0
- hiddifypanel/hutils/proxy/shared.py +15 -3
- hiddifypanel/models/__init__.py +2 -2
- hiddifypanel/models/admin.py +14 -2
- hiddifypanel/models/base_account.py +3 -3
- hiddifypanel/models/child.py +30 -16
- hiddifypanel/models/config.py +39 -15
- hiddifypanel/models/config_enum.py +55 -8
- hiddifypanel/models/domain.py +28 -20
- hiddifypanel/models/parent_domain.py +2 -2
- hiddifypanel/models/proxy.py +13 -4
- hiddifypanel/models/report.py +2 -3
- hiddifypanel/models/usage.py +2 -2
- hiddifypanel/models/user.py +13 -4
- hiddifypanel/panel/admin/Actions.py +4 -6
- hiddifypanel/panel/admin/AdminstratorAdmin.py +13 -2
- hiddifypanel/panel/admin/Dashboard.py +5 -10
- hiddifypanel/panel/admin/DomainAdmin.py +12 -11
- hiddifypanel/panel/admin/NodeAdmin.py +6 -2
- hiddifypanel/panel/admin/ProxyAdmin.py +4 -3
- hiddifypanel/panel/admin/SettingAdmin.py +60 -21
- hiddifypanel/panel/admin/UserAdmin.py +10 -2
- hiddifypanel/panel/admin/templates/index.html +1 -1
- hiddifypanel/panel/admin/templates/parent_dash.html +2 -4
- hiddifypanel/panel/cli.py +16 -16
- hiddifypanel/panel/commercial/ProxyDetailsAdmin.py +10 -5
- hiddifypanel/panel/commercial/__init__.py +7 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/__init__.py +0 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_info_api.py +2 -2
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_log_api.py +4 -5
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_user_api.py +8 -35
- hiddifypanel/panel/commercial/restapi/v2/admin/admin_users_api.py +4 -4
- hiddifypanel/panel/commercial/restapi/v2/admin/schema.py +157 -0
- hiddifypanel/panel/commercial/restapi/v2/admin/server_status_api.py +3 -3
- hiddifypanel/panel/commercial/restapi/v2/admin/user_api.py +9 -73
- hiddifypanel/panel/commercial/restapi/v2/admin/users_api.py +1 -1
- hiddifypanel/panel/commercial/restapi/v2/child/__init__.py +18 -0
- hiddifypanel/panel/commercial/restapi/v2/child/actions.py +63 -0
- hiddifypanel/panel/commercial/restapi/v2/child/register_parent_api.py +34 -0
- hiddifypanel/panel/commercial/restapi/v2/child/schema.py +7 -0
- hiddifypanel/panel/commercial/restapi/v2/child/sync_parent_api.py +21 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/__init__.py +13 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/info.py +18 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/ping_pong.py +23 -0
- hiddifypanel/panel/commercial/restapi/v2/panel/schema.py +7 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/__init__.py +16 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/register_api.py +65 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/schema.py +115 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py +26 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py +53 -0
- hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py +57 -0
- hiddifypanel/panel/commercial/telegrambot/admin.py +1 -2
- hiddifypanel/panel/common.py +21 -6
- hiddifypanel/panel/hiddify.py +9 -80
- hiddifypanel/panel/init_db.py +43 -12
- hiddifypanel/panel/usage.py +28 -15
- hiddifypanel/panel/user/templates/home/usage.html +1 -1
- hiddifypanel/panel/user/templates/new.html +1 -1
- hiddifypanel/static/css/custom.css +13 -0
- hiddifypanel/static/images/hiddify.png +0 -0
- hiddifypanel/static/new/assets/{index-bce9b1a6.js → index-ccb9873c.js} +65 -65
- hiddifypanel/templates/admin-layout.html +24 -40
- hiddifypanel/templates/fake.html +298 -0
- hiddifypanel/templates/master.html +23 -41
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +90 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +91 -1
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +98 -6
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +90 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +92 -2
- hiddifypanel/translations.i18n/en.json +56 -0
- hiddifypanel/translations.i18n/fa.json +57 -1
- hiddifypanel/translations.i18n/pt.json +63 -7
- hiddifypanel/translations.i18n/ru.json +56 -0
- hiddifypanel/translations.i18n/zh.json +58 -2
- {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/METADATA +47 -47
- {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/RECORD +104 -86
- hiddifypanel/panel/commercial/restapi/v2/DTO.py +0 -9
- hiddifypanel/panel/commercial/restapi/v2/hello/__init__.py +0 -16
- hiddifypanel/panel/commercial/restapi/v2/hello/hello.py +0 -32
- /hiddifypanel/static/images/{hiddify1.png → hiddify-old.png} +0 -0
- /hiddifypanel/static/{new/assets/hiddify-logo-noroz-559c8dcb.png → images/hiddify2.png} +0 -0
- {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.14.0.dist-info → hiddifypanel-10.15.0.dev0.dist-info}/top_level.txt +0 -0
@@ -6,7 +6,7 @@
|
|
6
6
|
"0 - Last day": "Último dia",
|
7
7
|
"Access Denied!": "Acesso negado",
|
8
8
|
"Actions": "Ações",
|
9
|
-
"Active": "",
|
9
|
+
"Active": "ativo",
|
10
10
|
"Active Users": "Usuários ativos",
|
11
11
|
"Add": "Adicionar",
|
12
12
|
"Add some text that is only visible to super_admin.": "Adicione algum texto que seja visível apenas para o superadministrador",
|
@@ -28,7 +28,7 @@
|
|
28
28
|
"Bug": "Bug/recurso",
|
29
29
|
"CPU %(cores)s Cores": "CPU %(cores)s Núcleos ",
|
30
30
|
"Can add sub admin": "👥 Pode adicionar subadministrador",
|
31
|
-
"Can not connect to Cloudflare.": "",
|
31
|
+
"Can not connect to Cloudflare.": "Não é possível conectar ao Cloudflare.",
|
32
32
|
"Check again": "Verifique novamente",
|
33
33
|
"Childs": "Crianças",
|
34
34
|
"China": "🇨🇳 China",
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"Click to Import": "Click to Import",
|
37
37
|
"Click to Start Anti-Filter.": "<i class='fa-solid fa-play'></i> Toque para iniciar o Antifiltro.",
|
38
38
|
"Close": "Fechar",
|
39
|
-
"Commercial use": "",
|
39
|
+
"Commercial use": "Utilização comercial",
|
40
40
|
"Config file is incorrect": "O arquivo de configuração está incorreto.",
|
41
41
|
"Copy Link": "Link de cópia",
|
42
42
|
"Couldn't find your ip addresses": "Não foi possível encontrar seus endereços IP",
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"Create Directory": "Criar diretório",
|
46
46
|
"Create New Record": "Criar Novo Registro",
|
47
47
|
"Create Package": "Criar pacote",
|
48
|
-
"Current Domain": "",
|
48
|
+
"Current Domain": "Domínio atual",
|
49
49
|
"Dear {}\n\nYour hiddify information is\nUUID: {}\nLast online date: {}\nExpire time: {}\nUsage class: {}\n": "Querido {}\n\nSuas informações do Hiddify são\nUUID: {}\nÚltima data on-line: {}\nTempo de expiração: {}\nClasse de uso: {}",
|
50
50
|
"Define the admin mode. ": "Definir o Modo Admin",
|
51
51
|
"Define the user mode. Should the usage reset every month?": "O modo de pacote do usuário. o uso deve ser redefinido a cada mês, semana etc.",
|
@@ -57,7 +57,7 @@
|
|
57
57
|
"Disk": "Disco rígido",
|
58
58
|
"Domain": "Domínio",
|
59
59
|
"Domain (%(domain)s)-> IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "Domain (%(domain)s)-> IP = %(domain_ip)s não é igual ao seu IP = %(server_ip)s . isso é necessário no modo direto",
|
60
|
-
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": "",
|
60
|
+
"Domain IP=%(domain_ip)s is not matched with your ip=%(server_ip)s which is required in direct mode": " O IP do domínio = %(domain_ip)s não corresponde ao seu IP = %(server_ip)s, o que é necessário no modo direto",
|
61
61
|
"Domain can not be resolved! there is a problem in your domain": "O domínio não pode ser resolvido! Há um problema em seu domínio. Verifique as configurações do seu Domínio.",
|
62
62
|
"Domain is not REALITY friendly!": "O domínio não é compatível com Reality!",
|
63
63
|
"Domain?": "Domínio?",
|
@@ -100,7 +100,7 @@
|
|
100
100
|
"Incorrect Password": "⚠️ Senha incorreta",
|
101
101
|
"Install": "Instalar",
|
102
102
|
"Install Hiddify Application": "Instalação do Painel Hidify",
|
103
|
-
"Invalid IP or domain": "",
|
103
|
+
"Invalid IP or domain": "IP ou domínio inválido",
|
104
104
|
"Invalid REALITY hostnames": "Nomes de host REALITY inválidos",
|
105
105
|
"Invalid admin link": "Link de administrador inválido",
|
106
106
|
"Iran": "🇮🇷 Irã",
|
@@ -333,6 +333,12 @@
|
|
333
333
|
"auto_cdn_ip": "Seletor automático de CDN IP",
|
334
334
|
"cdn": "CDN (Cloudflare Proxy, ...)",
|
335
335
|
"child has been removed!": "Child removido",
|
336
|
+
"child": {
|
337
|
+
"register-failed": "",
|
338
|
+
"register-success": "",
|
339
|
+
"sync-failed": "",
|
340
|
+
"sync-success": ""
|
341
|
+
},
|
336
342
|
"clickable copy": "Link para mídias sociais",
|
337
343
|
"close": "Fechar",
|
338
344
|
"config.Domain already used": "O domínio existe na seção de domínios. Usar outro domínio",
|
@@ -456,6 +462,10 @@
|
|
456
462
|
"description": "",
|
457
463
|
"label": ""
|
458
464
|
},
|
465
|
+
"h2_enable": {
|
466
|
+
"description": "",
|
467
|
+
"label": ""
|
468
|
+
},
|
459
469
|
"hidden": {
|
460
470
|
"description": "config.hidden.description",
|
461
471
|
"label": "config.hidden.label"
|
@@ -500,6 +510,7 @@
|
|
500
510
|
"description": "",
|
501
511
|
"label": ""
|
502
512
|
},
|
513
|
+
"invalid-pattern-for-warp-sites": "",
|
503
514
|
"is_parent": {
|
504
515
|
"description": "config.is_parent.description",
|
505
516
|
"label": "Painel pai"
|
@@ -528,10 +539,14 @@
|
|
528
539
|
"description": "Para uso comercial deste produto, você deve comprar sua licença",
|
529
540
|
"label": "Código de licença"
|
530
541
|
},
|
531
|
-
"
|
542
|
+
"log_level": {
|
532
543
|
"description": "",
|
533
544
|
"label": ""
|
534
545
|
},
|
546
|
+
"mux": {
|
547
|
+
"description": "",
|
548
|
+
"label": "Configurações de MUX"
|
549
|
+
},
|
535
550
|
"mux_brutal_down_mbps": {
|
536
551
|
"description": "",
|
537
552
|
"label": ""
|
@@ -584,6 +599,18 @@
|
|
584
599
|
"description": "Especifique se você deseja um pacote lançado ou desenvolvido",
|
585
600
|
"label": "🔄 Modo de atualização de pacotes"
|
586
601
|
},
|
602
|
+
"panel_mode": {
|
603
|
+
"description": "",
|
604
|
+
"label": ""
|
605
|
+
},
|
606
|
+
"parent_admin_proxy_path": {
|
607
|
+
"description": "",
|
608
|
+
"label": ""
|
609
|
+
},
|
610
|
+
"parent_domain": {
|
611
|
+
"description": "",
|
612
|
+
"label": ""
|
613
|
+
},
|
587
614
|
"parent_panel": {
|
588
615
|
"description": "Você pode se conectar ao Painel Central para definir apenas um usuário e o uso de todos os servidores será adicionado cumulativamente.",
|
589
616
|
"label": "Painel Pai (Multi-servidor)"
|
@@ -640,10 +667,18 @@
|
|
640
667
|
"description": "",
|
641
668
|
"label": ""
|
642
669
|
},
|
670
|
+
"quic_enable": {
|
671
|
+
"description": "",
|
672
|
+
"label": ""
|
673
|
+
},
|
643
674
|
"reality": {
|
644
675
|
"description": "REALITY elimina o recurso de impressão digital TLS do lado do servidor",
|
645
676
|
"label": "Reality"
|
646
677
|
},
|
678
|
+
"reality_enable": {
|
679
|
+
"description": "",
|
680
|
+
"label": ""
|
681
|
+
},
|
647
682
|
"reality_fallback_domain": {
|
648
683
|
"description": "Quando o GTW visitar os sites em nomes de servidor, ele será redirecionado para este domínio",
|
649
684
|
"label": "🌍 Domínio alternativo"
|
@@ -760,6 +795,10 @@
|
|
760
795
|
"description": "Por favor, use um domínio bem conhecido em seu data center. por exemplo, se você estiver no data center do Azure, microsoft-update.com é um bom exemplo",
|
761
796
|
"label": "SSR FakeDomain"
|
762
797
|
},
|
798
|
+
"tcp_enable": {
|
799
|
+
"description": "",
|
800
|
+
"label": ""
|
801
|
+
},
|
763
802
|
"telegram": {
|
764
803
|
"description": "Um proxy projetado para o Telegram ignorar a filtragem do Telegram",
|
765
804
|
"label": "Telegram Proxy"
|
@@ -828,6 +867,10 @@
|
|
828
867
|
"description": "As configurações do bloco de torrent podem ser definidas nesta seção.",
|
829
868
|
"label": "Configuração do Bloco de Torrent"
|
830
869
|
},
|
870
|
+
"trojan_enable": {
|
871
|
+
"description": "",
|
872
|
+
"label": ""
|
873
|
+
},
|
831
874
|
"tuic": {
|
832
875
|
"description": "O proxy de alto desempenho delicadamente TUICed está no topo do protocolo QUIC.\n\nO objetivo do TUIC é minimizar a latência do handshake o máximo possível",
|
833
876
|
"label": "TUIC"
|
@@ -855,6 +898,10 @@
|
|
855
898
|
"validation-error": "Há um erro em um dos campos.",
|
856
899
|
"validation-success": "As configurações foram alteradas com sucesso. Clique em %(link)s para aplicar as configurações. Pode levar 2 minutos para aplicar",
|
857
900
|
"validation-success-no-reset": "✅ As configurações foram alteradas com sucesso",
|
901
|
+
"vless_enable": {
|
902
|
+
"description": "",
|
903
|
+
"label": ""
|
904
|
+
},
|
858
905
|
"vmess_enable": {
|
859
906
|
"description": "É relatado por várias pessoas que o VMess faz com que o sistema seja detectado pelo governo. Então não é recomendado",
|
860
907
|
"label": "♈️ Habilitar VMess"
|
@@ -914,6 +961,10 @@
|
|
914
961
|
"ws_enable": {
|
915
962
|
"description": "",
|
916
963
|
"label": ""
|
964
|
+
},
|
965
|
+
"xtls_enable": {
|
966
|
+
"description": "",
|
967
|
+
"label": ""
|
917
968
|
}
|
918
969
|
},
|
919
970
|
"config.invalid uuid": "Secret UUID inválido. exemplo: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
|
@@ -970,6 +1021,7 @@
|
|
970
1021
|
"next": "Próximo",
|
971
1022
|
"no_reset": "Sem Redefinir",
|
972
1023
|
"node": {
|
1024
|
+
"diff-version": "",
|
973
1025
|
"mode": {
|
974
1026
|
"dscr": "",
|
975
1027
|
"label": "Modo de nó"
|
@@ -987,6 +1039,10 @@
|
|
987
1039
|
"open": "Abrir",
|
988
1040
|
"package days?": "dias de pacote?",
|
989
1041
|
"package size?": "tamanho do pacote?",
|
1042
|
+
"parent": {
|
1043
|
+
"invalid-parent-url": "",
|
1044
|
+
"sync-req-failed": ""
|
1045
|
+
},
|
990
1046
|
"previous": "Anterior",
|
991
1047
|
"quicksetup": {
|
992
1048
|
"setlang": {
|
@@ -333,6 +333,12 @@
|
|
333
333
|
"auto_cdn_ip": "☑️ Автоматический выбор IP-адреса CDN",
|
334
334
|
"cdn": "🔀 CDN (Cloudflare Proxy, ...)",
|
335
335
|
"child has been removed!": "Дочерний элемент удален!",
|
336
|
+
"child": {
|
337
|
+
"register-failed": "",
|
338
|
+
"register-success": "",
|
339
|
+
"sync-failed": "",
|
340
|
+
"sync-success": ""
|
341
|
+
},
|
336
342
|
"clickable copy": "Ссылка для социальных сетей",
|
337
343
|
"close": "Закрыть",
|
338
344
|
"config.Domain already used": "Домен уже существует. Использовать другой домен",
|
@@ -456,6 +462,10 @@
|
|
456
462
|
"description": "gRPC — это современная высокопроизводительная платформа удаленного вызова процедур (RPC) с открытым исходным кодом. Его можно использовать в поддерживаемых CDN.",
|
457
463
|
"label": "➿ Включить gRPC"
|
458
464
|
},
|
465
|
+
"h2_enable": {
|
466
|
+
"description": "",
|
467
|
+
"label": ""
|
468
|
+
},
|
459
469
|
"hidden": {
|
460
470
|
"description": "config.hidden.description",
|
461
471
|
"label": "config.hidden.label"
|
@@ -500,6 +510,7 @@
|
|
500
510
|
"description": "Hysteria Максимальная Скорость Исходящей Загрузки",
|
501
511
|
"label": "⬆️ Hysteria Исходящая Загрузка (mbps)"
|
502
512
|
},
|
513
|
+
"invalid-pattern-for-warp-sites": "",
|
503
514
|
"is_parent": {
|
504
515
|
"description": "config.is_parent.description",
|
505
516
|
"label": "Главная панель"
|
@@ -528,6 +539,10 @@
|
|
528
539
|
"description": "Для коммерческого использования этого продукта вам необходимо приобрести его лицензию.",
|
529
540
|
"label": "License Code"
|
530
541
|
},
|
542
|
+
"log_level": {
|
543
|
+
"description": "",
|
544
|
+
"label": ""
|
545
|
+
},
|
531
546
|
"mux": {
|
532
547
|
"description": "Настройки конфигурации MUX (Multiplex)",
|
533
548
|
"label": "Настройки MUX"
|
@@ -584,6 +599,18 @@
|
|
584
599
|
"description": "Укажите, хотите ли вы релиз версию пакета или версию в стадии разработки.",
|
585
600
|
"label": "🔄 Режим обновления пакетов"
|
586
601
|
},
|
602
|
+
"panel_mode": {
|
603
|
+
"description": "",
|
604
|
+
"label": ""
|
605
|
+
},
|
606
|
+
"parent_admin_proxy_path": {
|
607
|
+
"description": "",
|
608
|
+
"label": ""
|
609
|
+
},
|
610
|
+
"parent_domain": {
|
611
|
+
"description": "",
|
612
|
+
"label": ""
|
613
|
+
},
|
587
614
|
"parent_panel": {
|
588
615
|
"description": "Вы можете подключиться к главной панели, чтобы добавить пользователя в одном месте, а использование всех серверов будет добавлено автоматически. ",
|
589
616
|
"label": "Главная панель (мультисервер)"
|
@@ -640,10 +667,18 @@
|
|
640
667
|
"description": "",
|
641
668
|
"label": ""
|
642
669
|
},
|
670
|
+
"quic_enable": {
|
671
|
+
"description": "",
|
672
|
+
"label": ""
|
673
|
+
},
|
643
674
|
"reality": {
|
644
675
|
"description": "REALITY функция устранения TLS Fingerprint со стороны севрера",
|
645
676
|
"label": "Reality"
|
646
677
|
},
|
678
|
+
"reality_enable": {
|
679
|
+
"description": "",
|
680
|
+
"label": ""
|
681
|
+
},
|
647
682
|
"reality_fallback_domain": {
|
648
683
|
"description": "При попытке контролирующих органов посетить сайт вытащенный из запроса, он будет перенаправлен на этот домен.",
|
649
684
|
"label": "🌍 Резервный домен Reality"
|
@@ -760,6 +795,10 @@
|
|
760
795
|
"description": "Пожалуйста, используйте хорошо известный домен в своем центре обработки данных или хостинге. например, если вы находитесь в центре обработки данных Azure, хороший пример — microsoft-update.com",
|
761
796
|
"label": "SSR поддельный домен"
|
762
797
|
},
|
798
|
+
"tcp_enable": {
|
799
|
+
"description": "",
|
800
|
+
"label": ""
|
801
|
+
},
|
763
802
|
"telegram": {
|
764
803
|
"description": "Прокси-сервер, разработанный для Telegram для обхода фильтрации Telegram",
|
765
804
|
"label": "Телеграм-прокси"
|
@@ -828,6 +867,10 @@
|
|
828
867
|
"description": "В этом разделе можно настроить блокировку Torrent",
|
829
868
|
"label": "Конфигурация блокировки Torrent"
|
830
869
|
},
|
870
|
+
"trojan_enable": {
|
871
|
+
"description": "",
|
872
|
+
"label": ""
|
873
|
+
},
|
831
874
|
"tuic": {
|
832
875
|
"description": "Delicately-TUICed высокопроизводительный прокси работающий поверх протокола QUIC.\n\nЦель TUIC — максимально минимизировать задержку рукопожатия.",
|
833
876
|
"label": "TUIC"
|
@@ -855,6 +898,10 @@
|
|
855
898
|
"validation-error": "В одном из полей ошибка.",
|
856
899
|
"validation-success": "Конфигурации успешно изменены. Нажмите %(link)s, чтобы применить их. Это может занять 2 минуты",
|
857
900
|
"validation-success-no-reset": "✅ Конфигурации успешно изменены",
|
901
|
+
"vless_enable": {
|
902
|
+
"description": "",
|
903
|
+
"label": ""
|
904
|
+
},
|
858
905
|
"vmess_enable": {
|
859
906
|
"description": "Несколько человек сообщили, что VMess позволляет правительствам обнаруживать систему. Не рекомендуется",
|
860
907
|
"label": "♈️ Включить VMess"
|
@@ -914,6 +961,10 @@
|
|
914
961
|
"ws_enable": {
|
915
962
|
"description": "Websocket создает туннель поверх HTTP, который будет полезно использовать в CDN",
|
916
963
|
"label": "🔰 Включить Websocket"
|
964
|
+
},
|
965
|
+
"xtls_enable": {
|
966
|
+
"description": "",
|
967
|
+
"label": ""
|
917
968
|
}
|
918
969
|
},
|
919
970
|
"config.invalid uuid": "Неверный UUID. пример: 6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
|
@@ -970,6 +1021,7 @@
|
|
970
1021
|
"next": "Следующий",
|
971
1022
|
"no_reset": "⭐️ Без сброса",
|
972
1023
|
"node": {
|
1024
|
+
"diff-version": "",
|
973
1025
|
"mode": {
|
974
1026
|
"dscr": "",
|
975
1027
|
"label": "Режим узла"
|
@@ -987,6 +1039,10 @@
|
|
987
1039
|
"open": "Открыть",
|
988
1040
|
"package days?": "пакетные дни?",
|
989
1041
|
"package size?": "Размер посылки?",
|
1042
|
+
"parent": {
|
1043
|
+
"invalid-parent-url": "",
|
1044
|
+
"sync-req-failed": ""
|
1045
|
+
},
|
990
1046
|
"previous": "Предыдущий",
|
991
1047
|
"quicksetup": {
|
992
1048
|
"setlang": {
|
@@ -6,7 +6,7 @@
|
|
6
6
|
"0 - Last day": "最后一天",
|
7
7
|
"Access Denied!": "拒绝访问",
|
8
8
|
"Actions": "行动",
|
9
|
-
"Active": "",
|
9
|
+
"Active": "积极",
|
10
10
|
"Active Users": "活跃用户",
|
11
11
|
"Add": "添加",
|
12
12
|
"Add some text that is only visible to super_admin.": "添加一些只有超级管理员可见的文本",
|
@@ -333,6 +333,12 @@
|
|
333
333
|
"auto_cdn_ip": "☑️ 自动 CDN IP 选择器",
|
334
334
|
"cdn": "🔀 CDN(Cloudflare 代理,...)",
|
335
335
|
"child has been removed!": "孩子已被移走!",
|
336
|
+
"child": {
|
337
|
+
"register-failed": "",
|
338
|
+
"register-success": "",
|
339
|
+
"sync-failed": "",
|
340
|
+
"sync-success": ""
|
341
|
+
},
|
336
342
|
"clickable copy": "社交媒体链接",
|
337
343
|
"close": "关闭",
|
338
344
|
"config.Domain already used": "域存在于域部分。使用另一个域",
|
@@ -456,6 +462,10 @@
|
|
456
462
|
"description": "",
|
457
463
|
"label": ""
|
458
464
|
},
|
465
|
+
"h2_enable": {
|
466
|
+
"description": "",
|
467
|
+
"label": ""
|
468
|
+
},
|
459
469
|
"hidden": {
|
460
470
|
"description": "配置.隐藏.描述",
|
461
471
|
"label": "配置.隐藏.标签"
|
@@ -500,6 +510,7 @@
|
|
500
510
|
"description": "",
|
501
511
|
"label": ""
|
502
512
|
},
|
513
|
+
"invalid-pattern-for-warp-sites": "",
|
503
514
|
"is_parent": {
|
504
515
|
"description": "config.is_parent.description",
|
505
516
|
"label": "家长小组"
|
@@ -528,10 +539,14 @@
|
|
528
539
|
"description": "要将本产品用于商业用途,您必须购买其许可证",
|
529
540
|
"label": "许可证代码"
|
530
541
|
},
|
531
|
-
"
|
542
|
+
"log_level": {
|
532
543
|
"description": "",
|
533
544
|
"label": ""
|
534
545
|
},
|
546
|
+
"mux": {
|
547
|
+
"description": "",
|
548
|
+
"label": "MUC设置"
|
549
|
+
},
|
535
550
|
"mux_brutal_down_mbps": {
|
536
551
|
"description": "",
|
537
552
|
"label": ""
|
@@ -584,6 +599,18 @@
|
|
584
599
|
"description": "指定您想要发布的包还是开发的包",
|
585
600
|
"label": "🔄 包更新模式"
|
586
601
|
},
|
602
|
+
"panel_mode": {
|
603
|
+
"description": "",
|
604
|
+
"label": ""
|
605
|
+
},
|
606
|
+
"parent_admin_proxy_path": {
|
607
|
+
"description": "",
|
608
|
+
"label": ""
|
609
|
+
},
|
610
|
+
"parent_domain": {
|
611
|
+
"description": "",
|
612
|
+
"label": ""
|
613
|
+
},
|
587
614
|
"parent_panel": {
|
588
615
|
"description": "您可以连接到中央面板仅定义一个用户,所有服务器的使用情况将累积添加。",
|
589
616
|
"label": "父面板(多服务器)"
|
@@ -640,10 +667,18 @@
|
|
640
667
|
"description": "",
|
641
668
|
"label": ""
|
642
669
|
},
|
670
|
+
"quic_enable": {
|
671
|
+
"description": "",
|
672
|
+
"label": ""
|
673
|
+
},
|
643
674
|
"reality": {
|
644
675
|
"description": "REALITY 消除了服务器端 TLS 指纹功能",
|
645
676
|
"label": "现实"
|
646
677
|
},
|
678
|
+
"reality_enable": {
|
679
|
+
"description": "",
|
680
|
+
"label": ""
|
681
|
+
},
|
647
682
|
"reality_fallback_domain": {
|
648
683
|
"description": "当 GFW 访问服务器名称中的网站时,将被重定向到该域。",
|
649
684
|
"label": "🌍 现实后备域"
|
@@ -760,6 +795,10 @@
|
|
760
795
|
"description": "请在您的数据中心使用众所周知的域。例如,如果您在 Azure 数据中心,microsoft-update.com 就是一个很好的例子",
|
761
796
|
"label": "SSR 假域名"
|
762
797
|
},
|
798
|
+
"tcp_enable": {
|
799
|
+
"description": "",
|
800
|
+
"label": ""
|
801
|
+
},
|
763
802
|
"telegram": {
|
764
803
|
"description": "专为 Telegram 设计的代理,可绕过 Telegram 过滤",
|
765
804
|
"label": "电报代理"
|
@@ -828,6 +867,10 @@
|
|
828
867
|
"description": "可以在此部分设置 Torrent 阻止配置。",
|
829
868
|
"label": "Torrent 块配置"
|
830
869
|
},
|
870
|
+
"trojan_enable": {
|
871
|
+
"description": "",
|
872
|
+
"label": ""
|
873
|
+
},
|
831
874
|
"tuic": {
|
832
875
|
"description": "Delicately-TUICed 高性能代理位于 QUIC 协议之上。\n\nTUIC的目标是尽可能减少握手延迟",
|
833
876
|
"label": "TUIC"
|
@@ -855,6 +898,10 @@
|
|
855
898
|
"validation-error": "其中一个字段有错误。",
|
856
899
|
"validation-success": "配置已成功更改。单击 %(link)s 应用配置。申请可能需要 2 分钟",
|
857
900
|
"validation-success-no-reset": "✅ 配置已成功更改",
|
901
|
+
"vless_enable": {
|
902
|
+
"description": "",
|
903
|
+
"label": ""
|
904
|
+
},
|
858
905
|
"vmess_enable": {
|
859
906
|
"description": "据多位人士透露,VMess 导致该系统被政府检测到。所以不推荐",
|
860
907
|
"label": "♈️启用VMess"
|
@@ -914,6 +961,10 @@
|
|
914
961
|
"ws_enable": {
|
915
962
|
"description": "",
|
916
963
|
"label": ""
|
964
|
+
},
|
965
|
+
"xtls_enable": {
|
966
|
+
"description": "",
|
967
|
+
"label": ""
|
917
968
|
}
|
918
969
|
},
|
919
970
|
"config.invalid uuid": "UUID 秘密无效。示例:6098ea35-8cb2-4a08-ba15-2be25bc49cb6",
|
@@ -970,6 +1021,7 @@
|
|
970
1021
|
"next": "下一个",
|
971
1022
|
"no_reset": "⭐️无需重置",
|
972
1023
|
"node": {
|
1024
|
+
"diff-version": "",
|
973
1025
|
"mode": {
|
974
1026
|
"dscr": "节点模式.dscr",
|
975
1027
|
"label": "节点模式"
|
@@ -987,6 +1039,10 @@
|
|
987
1039
|
"open": "打开",
|
988
1040
|
"package days?": "包天数?",
|
989
1041
|
"package size?": "包装尺寸?",
|
1042
|
+
"parent": {
|
1043
|
+
"invalid-parent-url": "",
|
1044
|
+
"sync-req-failed": ""
|
1045
|
+
},
|
990
1046
|
"previous": "以前的",
|
991
1047
|
"quicksetup": {
|
992
1048
|
"setlang": {
|
@@ -1,65 +1,65 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: hiddifypanel
|
3
|
-
Version: 10.
|
3
|
+
Version: 10.15.0.dev0
|
4
4
|
Summary: hiddifypanel multi proxy panel
|
5
5
|
Home-page: https://github.com/hiddify/hiddify-manager/
|
6
6
|
Author: hiddify
|
7
7
|
Description-Content-Type: text/markdown
|
8
8
|
License-File: LICENSE.md
|
9
|
-
Requires-Dist:
|
10
|
-
Requires-Dist:
|
11
|
-
Requires-Dist:
|
12
|
-
Requires-Dist:
|
13
|
-
Requires-Dist:
|
14
|
-
Requires-Dist:
|
9
|
+
Requires-Dist: APIFlask ==2.1.1
|
10
|
+
Requires-Dist: Babel ==2.14.0
|
11
|
+
Requires-Dist: Bootstrap-Flask ==2.3.3
|
12
|
+
Requires-Dist: Cython ==3.0.10
|
13
|
+
Requires-Dist: Flask-Admin ==1.6.1
|
14
|
+
Requires-Dist: Flask-AdminLTE3 ==1.0.9
|
15
|
+
Requires-Dist: Flask-Classful ==0.16.0
|
16
|
+
Requires-Dist: Flask-Cors ==4.0.0
|
17
|
+
Requires-Dist: Flask-Login ==0.6.3
|
18
|
+
Requires-Dist: Flask-RESTful ==0.3.10
|
19
|
+
Requires-Dist: Flask-SQLAlchemy ==3.1.1
|
20
|
+
Requires-Dist: Flask-Session ==0.8.0
|
21
|
+
Requires-Dist: Flask-WTF ==1.2.1
|
22
|
+
Requires-Dist: Flask ==3.0.2
|
23
|
+
Requires-Dist: MarkupSafe ==2.1.5
|
24
|
+
Requires-Dist: PyMySQL ==1.1.0
|
25
|
+
Requires-Dist: PyYAML ==6.0.1
|
26
|
+
Requires-Dist: SQLAlchemy-Utils ==0.41.2
|
27
|
+
Requires-Dist: SQLAlchemy-serializer ==1.4.6
|
28
|
+
Requires-Dist: SQLAlchemy ==2.0.29
|
29
|
+
Requires-Dist: StrEnum ==0.4.15
|
30
|
+
Requires-Dist: WTForms ==3.1.2
|
31
|
+
Requires-Dist: Werkzeug ==3.0.1
|
32
|
+
Requires-Dist: ansi2html ==1.9.1
|
15
33
|
Requires-Dist: async-timeout ==4.0.3
|
16
|
-
Requires-Dist:
|
17
|
-
Requires-Dist:
|
18
|
-
Requires-Dist:
|
19
|
-
Requires-Dist:
|
20
|
-
Requires-Dist:
|
21
|
-
Requires-Dist:
|
22
|
-
Requires-Dist:
|
23
|
-
Requires-Dist: flask-adminlte3 ==1.0.9
|
24
|
-
Requires-Dist: flask-classful ==0.14.2
|
25
|
-
Requires-Dist: flask-sqlalchemy ==2.5.1
|
26
|
-
Requires-Dist: flask ==2.1.0
|
27
|
-
Requires-Dist: flask-admin ==1.6.1
|
34
|
+
Requires-Dist: bjoern ==3.2.2
|
35
|
+
Requires-Dist: click ==8.1.7
|
36
|
+
Requires-Dist: cloudflare ==2.19.2
|
37
|
+
Requires-Dist: cryptography ==42.0.5
|
38
|
+
Requires-Dist: dynaconf ==3.2.5
|
39
|
+
Requires-Dist: fastenumplus ==1.4.0
|
40
|
+
Requires-Dist: flask-apispec ==0.11.4
|
28
41
|
Requires-Dist: flask-babel ==4.0.0
|
29
|
-
Requires-Dist: flask-
|
30
|
-
Requires-Dist: Flask-WTF ==1.2.1
|
42
|
+
Requires-Dist: flask-simplelogin ==0.1.2
|
31
43
|
Requires-Dist: h2 ==4.1.0
|
32
|
-
Requires-Dist: json5 ==0.9.
|
33
|
-
Requires-Dist: lastversion ==3.
|
34
|
-
Requires-Dist:
|
35
|
-
Requires-Dist: maxminddb ==2.
|
44
|
+
Requires-Dist: json5 ==0.9.24
|
45
|
+
Requires-Dist: lastversion ==3.5.2
|
46
|
+
Requires-Dist: loguru ==0.7.2
|
47
|
+
Requires-Dist: maxminddb ==2.6.0
|
48
|
+
Requires-Dist: mysqlclient ==2.2.4
|
36
49
|
Requires-Dist: netifaces ==0.11.0
|
37
|
-
Requires-Dist: paramiko ==3.
|
38
|
-
Requires-Dist: ping3 ==4.0.
|
39
|
-
Requires-Dist: psutil ==5.9.
|
40
|
-
Requires-Dist:
|
41
|
-
Requires-Dist: python-
|
42
|
-
Requires-Dist: python-
|
43
|
-
Requires-Dist: python-
|
44
|
-
Requires-Dist:
|
45
|
-
Requires-Dist:
|
46
|
-
Requires-Dist: requests ~=2.31.0
|
47
|
-
Requires-Dist: setuptools ~=65.5.1
|
50
|
+
Requires-Dist: paramiko ==3.4.0
|
51
|
+
Requires-Dist: ping3 ==4.0.5
|
52
|
+
Requires-Dist: psutil ==5.9.8
|
53
|
+
Requires-Dist: python-dateutil ==2.9.0.post0
|
54
|
+
Requires-Dist: python-dotenv ==1.0.1
|
55
|
+
Requires-Dist: python-redis-cache ==3.1.0
|
56
|
+
Requires-Dist: python-slugify ==8.0.4
|
57
|
+
Requires-Dist: redis ==5.0.3
|
58
|
+
Requires-Dist: requests ==2.31.0
|
48
59
|
Requires-Dist: six ==1.16.0
|
49
|
-
Requires-Dist: SQLAlchemy-Utils ==0.41.1
|
50
|
-
Requires-Dist: sqlalchemy ==1.4.46
|
51
|
-
Requires-Dist: SQLAlchemy-serializer ==1.4.1
|
52
|
-
Requires-Dist: StrEnum ==0.4.15
|
53
60
|
Requires-Dist: telebot ==0.0.5
|
54
61
|
Requires-Dist: user-agents ==2.2.0
|
55
|
-
Requires-Dist: werkzeug ==2.1.0
|
56
|
-
Requires-Dist: WTForms ==3.0.1
|
57
62
|
Requires-Dist: xtlsapi ==3.1.2
|
58
|
-
Requires-Dist: apiflask ==2.0.2
|
59
|
-
Requires-Dist: flask-apispec ==0.11.4
|
60
|
-
Requires-Dist: bjoern ==3.2.2
|
61
|
-
Requires-Dist: mysqlclient <=2.2.4
|
62
|
-
Requires-Dist: fastenumplus ==1.4.0
|
63
63
|
Provides-Extra: test
|
64
64
|
Requires-Dist: flask-debugtoolbar ; extra == 'test'
|
65
65
|
Requires-Dist: flask-shell-ipython ; extra == 'test'
|