hiddifypanel 10.86.0b6__py3-none-any.whl → 10.86.1__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/hutils/proxy/shared.py +3 -3
- hiddifypanel/panel/init_db.py +6 -2
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/my/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- {hiddifypanel-10.86.0b6.dist-info → hiddifypanel-10.86.1.dist-info}/METADATA +1 -1
- {hiddifypanel-10.86.0b6.dist-info → hiddifypanel-10.86.1.dist-info}/RECORD +16 -16
- {hiddifypanel-10.86.0b6.dist-info → hiddifypanel-10.86.1.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.86.0b6.dist-info → hiddifypanel-10.86.1.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.86.0b6.dist-info → hiddifypanel-10.86.1.dist-info}/licenses/LICENSE.md +0 -0
- {hiddifypanel-10.86.0b6.dist-info → hiddifypanel-10.86.1.dist-info}/top_level.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.86.
|
1
|
+
10.86.1
|
hiddifypanel/VERSION.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# import importlib.metadata
|
2
2
|
from datetime import datetime
|
3
3
|
|
4
|
-
__version__ = '10.86.
|
5
|
-
__release_time__= datetime.strptime('2025-07-
|
4
|
+
__version__ = '10.86.1'
|
5
|
+
__release_time__= datetime.strptime('2025-07-10T16:34:16','%Y-%m-%dT%H:%M:%S')
|
6
6
|
is_released_version=True
|
@@ -247,7 +247,7 @@ def get_valid_proxies(domains: list[Domain]) -> list[dict]:
|
|
247
247
|
def random_or_none(inp: list):
|
248
248
|
if not inp:
|
249
249
|
return
|
250
|
-
return random.sample(inp, 1)[0]
|
250
|
+
return random.sample(list(inp), 1)[0]
|
251
251
|
|
252
252
|
|
253
253
|
split_pattern = re.compile(r'[ \t\r\n;,]+')
|
@@ -258,12 +258,12 @@ def sni_host_server_extractor(domain_db: Domain, hconfigs):
|
|
258
258
|
server=sni=host = domain_db.domain.replace("*", hutils.random.get_random_string(5, 15))
|
259
259
|
is_cdn = domain_db.mode in [DomainType.cdn, DomainType.auto_cdn_ip]
|
260
260
|
if auto_ip:=domain_db.auto_cdn_ip():
|
261
|
-
server=auto_ip
|
261
|
+
server=auto_ip[0]
|
262
262
|
elif 'special' in domain_db.mode.value or domain_db.mode in [DomainType.fake]:
|
263
263
|
server=hutils.network.get_direct_host_or_ip(4)
|
264
264
|
|
265
265
|
if hconfig(ConfigEnum.use_ip_in_config):
|
266
|
-
server = random_or_none(hutils.network.get_domain_ips_cached(server)) or server
|
266
|
+
server = str(random_or_none(hutils.network.get_domain_ips_cached(server)) or server)
|
267
267
|
|
268
268
|
|
269
269
|
allow_insecure=not domain_db.need_valid_ssl
|
hiddifypanel/panel/init_db.py
CHANGED
@@ -16,11 +16,15 @@ from hiddifypanel.database import db, db_execute
|
|
16
16
|
from loguru import logger
|
17
17
|
MAX_DB_VERSION = 120
|
18
18
|
|
19
|
+
def _v106(child_id):
|
20
|
+
set_hconfig(ConfigEnum.use_ip_in_config,True)
|
21
|
+
|
19
22
|
def _v105(child_id):
|
20
23
|
StrConfig.query.filter(StrConfig.key==ConfigEnum.reality_port).delete()
|
21
24
|
def _v104(child_id):
|
22
25
|
|
23
|
-
|
26
|
+
if rport:=hconfig(ConfigEnum.reality_port):
|
27
|
+
set_hconfig(ConfigEnum.special_port,rport)
|
24
28
|
StrConfig.query.filter(StrConfig.key==ConfigEnum.reality_port).delete()
|
25
29
|
set_hconfig(ConfigEnum.default_useragent_string,hutils.network.get_random_user_agent())
|
26
30
|
for d in Domain.query.filter(Domain.mode==DomainType.reality,Domain.child_id == child_id).all():
|
@@ -302,7 +306,7 @@ def _v57():
|
|
302
306
|
|
303
307
|
|
304
308
|
def _v56():
|
305
|
-
set_hconfig(ConfigEnum.
|
309
|
+
set_hconfig(ConfigEnum.special_port, hutils.random.get_random_unused_port())
|
306
310
|
|
307
311
|
|
308
312
|
def _v55():
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
hiddifypanel/Events.py,sha256=AlnRdjVul0jP-NCT4-zoaQgowoOo-JhdQB4ytetAFKA,723
|
2
|
-
hiddifypanel/VERSION,sha256=
|
3
|
-
hiddifypanel/VERSION.py,sha256=
|
2
|
+
hiddifypanel/VERSION,sha256=_ZRyrPKisfIHa5TqBigcTPOnjIyUD6wht88-KXlefuo,8
|
3
|
+
hiddifypanel/VERSION.py,sha256=rqyH5w5AtkqexMmSCusOmqow61Fp_R_JRtxjF_3Wiqw,187
|
4
4
|
hiddifypanel/__init__.py,sha256=kigwDO8d9jXyPZLvJAWd6zo-GX3pG_xWf-q2aStz80Y,377
|
5
5
|
hiddifypanel/__main__.py,sha256=IVchnXpK6bm8T3N--mN17HBQNLMeLAjyP7iwzULexB4,218
|
6
6
|
hiddifypanel/auth.py,sha256=LJmH4ROqZv5ej_4m1b0xvbEw2meJTzDR1mFCDm523kE,8041
|
@@ -44,7 +44,7 @@ hiddifypanel/hutils/node/parent.py,sha256=UbyfvfP4fTSn6HN9oZDjYsKYIejiqW6eApKIfP
|
|
44
44
|
hiddifypanel/hutils/node/shared.py,sha256=FDSj3e-i3pb3mEv5vcUeX0Km1nxYg1CeAruIq7RwFmU,2540
|
45
45
|
hiddifypanel/hutils/proxy/__init__.py,sha256=V2dGkYT3tji__5YOSmKOMChFYXtlENe1fX6eHqK70Pc,129
|
46
46
|
hiddifypanel/hutils/proxy/clash.py,sha256=JiT3wj48b9ezCGxZoEp5FrhvwfmNKslcF5GMoH9-8OU,7061
|
47
|
-
hiddifypanel/hutils/proxy/shared.py,sha256=
|
47
|
+
hiddifypanel/hutils/proxy/shared.py,sha256=Cb_LfcO34XWIoREPXdQoaJUR0JpXfSTle7npe7amW-g,24253
|
48
48
|
hiddifypanel/hutils/proxy/singbox.py,sha256=Fmmzoake-gpnRB5yfTyQvd1dB-10WKwhJt4vhiKzJZQ,11722
|
49
49
|
hiddifypanel/hutils/proxy/wireguard.py,sha256=gij01BYXII-RxAh3Yky0o3yce20HJKeHtu1KNwb0Uzk,934
|
50
50
|
hiddifypanel/hutils/proxy/xray.py,sha256=ze9EiXLaTlMHp9q7fkOmJ7_NwogRnewcWj1Ui9Ofi4c,11306
|
@@ -72,7 +72,7 @@ hiddifypanel/panel/common.py,sha256=pMxdgt37ubIZroFBuvHfN5qXNp8kytVTIzVxzZA_X_I,
|
|
72
72
|
hiddifypanel/panel/custom_widgets.py,sha256=ojnLz-kAa1juZVW1JoCy8FAjvWNORKNpFIb8OnY0lLw,3767
|
73
73
|
hiddifypanel/panel/hiddify.py,sha256=nwLTMYa_LyNuS26BPOO8jfyrslHX2MbQxN0o4lxCTd4,15687
|
74
74
|
hiddifypanel/panel/hlogger.py,sha256=1AQQCs1lg0Y1AYIASRjxWAdFE92HENeg3z1rFycOoY0,1215
|
75
|
-
hiddifypanel/panel/init_db.py,sha256=
|
75
|
+
hiddifypanel/panel/init_db.py,sha256=3Hyj-1jRw3rMk7RJgtTzQtbDbmGR-B5YSeWJY6_VaOE,39429
|
76
76
|
hiddifypanel/panel/run_commander.py,sha256=cXCFVvZ6iTzab3EOZ-Eq3aOeIqfgzgt2ppNaxm_3OJI,3205
|
77
77
|
hiddifypanel/panel/usage.py,sha256=kQAz9nfHt3Mcfa8kLHdrpD408DZEFDT7T1xFV6MlDQE,11991
|
78
78
|
hiddifypanel/panel/admin/Actions.py,sha256=o_ENbphriVrbRJkx9nvrkpaliuMIfp34sscMkZJ3P5s,8578
|
@@ -842,17 +842,17 @@ hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjI
|
|
842
842
|
hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
|
843
843
|
hiddifypanel/templates/hiddify-flask-admin/actions.html,sha256=2NeITe2e-lPKCk_o511tCIqVtrPu8LYHE1wTCtrFUrI,1331
|
844
844
|
hiddifypanel/templates/hiddify-flask-admin/list.html,sha256=MBGrTqZpzNLe4sZy0RozvXNr8seFUQc2C6v88BJtNWc,11095
|
845
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=
|
845
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=0bexVqOW_Dc1jNxNzVNS3ov6fLjk7JsESTydNOXS7_4,81218
|
846
846
|
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=HxKCOjnn66CP4Q7iJpQ2nkV7heHiCo3hR364urYKpRY,84567
|
847
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
847
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=LZx04PFw3SsVmzFFrr5S6VZYqHgbGazVggY5y8eWcVo,103271
|
848
848
|
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=2h4MNaTUOxHl8B3C17983aPh72YG5gm9d3SLKrgKcms,108504
|
849
|
-
hiddifypanel/translations/my/LC_MESSAGES/messages.mo,sha256=
|
849
|
+
hiddifypanel/translations/my/LC_MESSAGES/messages.mo,sha256=yA_CB4pPFytCoFYH0a_KLlDsnKEKX4TXOuilAFpmsa4,139090
|
850
850
|
hiddifypanel/translations/my/LC_MESSAGES/messages.po,sha256=PvYBwQWXaUpAoqy90oow-sH-ZyPE7Fm_l-3FrXT_vEA,141985
|
851
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
851
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=tTWbuW2pL0B50TVMlP3PBeuygdF8QIruG2rh8ytgXD0,80947
|
852
852
|
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=L_On4NoKVP6hXcWBwnLNjOXPGgevYvO-ttcMdHfzqK0,86067
|
853
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
853
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=MZwUvdlW0tw_7Lyuiw79pbCVq51Jo8fw3lbMbZ9rXME,108744
|
854
854
|
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=yRc8bKXu_SQBKpCKWGTiV4H_0IgserCY3_1cvLED5-s,114070
|
855
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=
|
855
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=NpZljyTisrwFnBSagwVxKjaTS005kohHrVf_ktYxCrQ,75446
|
856
856
|
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=ySV8tjRzhEjbJx6JQbLMhWnoMb6CTJqEVIKuYwJI0dA,80177
|
857
857
|
hiddifypanel/translations.i18n/en.json,sha256=70eyfU2b7NFuig6Yrql39dFs0JPuthe4dVbb5gTWDtw,73450
|
858
858
|
hiddifypanel/translations.i18n/fa.json,sha256=tClb4Oo8bLejitKUPz_s2Dlu43dRp6PCqa2cvPOtGd4,97413
|
@@ -861,9 +861,9 @@ hiddifypanel/translations.i18n/my.json,sha256=1jSy8S2bP681KV9MT5Mq4lFzrh6a982bTj
|
|
861
861
|
hiddifypanel/translations.i18n/pt.json,sha256=r_8xflnQBbooU9jNMaZ8QjLqvKegIyGUKMSFGj4F6HE,75096
|
862
862
|
hiddifypanel/translations.i18n/ru.json,sha256=wNMbGlKMMFfxShxYPO7wknmuEKjXHCfNqGH2HiA0zRU,102883
|
863
863
|
hiddifypanel/translations.i18n/zh.json,sha256=d8Jtgm1GMGFAiEXzcRmHLmbDo7YtJynUvpHGpzt3CMw,69629
|
864
|
-
hiddifypanel-10.86.
|
865
|
-
hiddifypanel-10.86.
|
866
|
-
hiddifypanel-10.86.
|
867
|
-
hiddifypanel-10.86.
|
868
|
-
hiddifypanel-10.86.
|
869
|
-
hiddifypanel-10.86.
|
864
|
+
hiddifypanel-10.86.1.dist-info/licenses/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
|
865
|
+
hiddifypanel-10.86.1.dist-info/METADATA,sha256=tNUpWitvuvx5Et0bDCRaA_ZgeZ-Gi9j40VO6e4wcAns,25625
|
866
|
+
hiddifypanel-10.86.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
867
|
+
hiddifypanel-10.86.1.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
|
868
|
+
hiddifypanel-10.86.1.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
|
869
|
+
hiddifypanel-10.86.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|