hiddifypanel 10.80.0.dev17__py3-none-any.whl → 10.80.0.dev19__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 CHANGED
@@ -1 +1 @@
1
- 10.80.0.dev17
1
+ 10.80.0.dev19
hiddifypanel/VERSION.py CHANGED
@@ -2,5 +2,5 @@ import importlib.metadata
2
2
  from datetime import datetime
3
3
 
4
4
  __version__ = importlib.metadata.version(__package__ or __name__)
5
- __release_time__= datetime.strptime('2024-12-11T02:29:51','%Y-%m-%dT%H:%M:%S')
5
+ __release_time__= datetime.strptime('2024-12-15T00:48:54','%Y-%m-%dT%H:%M:%S')
6
6
  is_released_version=True
@@ -50,10 +50,11 @@ def configs_as_json(domains: list[Domain], user: User, expire_days: int, remarks
50
50
  unsupported_transport = {}
51
51
  if g.user_agent.get('is_v2rayng'):
52
52
  # TODO: ensure which protocols are not supported in v2rayng
53
- unsupported_protos = {ProxyProto.wireguard, ProxyProto.hysteria, ProxyProto.hysteria2,
54
- ProxyProto.tuic, ProxyProto.ss, ProxyProto.ssr, ProxyProto.ssh}
53
+ unsupported_protos = { ProxyProto.hysteria, ProxyProto.hysteria2,
54
+ ProxyProto.tuic, ProxyProto.ssr, ProxyProto.ssh}
55
55
  if not hutils.flask.is_client_version(hutils.flask.ClientVersion.v2ryang, 1, 8, 18):
56
56
  unsupported_transport = {ProxyTransport.httpupgrade}
57
+ unsupported_protos.update({ProxyProto.wireguard})
57
58
 
58
59
  # multiple outbounds needs multiple whole base config not just one with multiple outbounds (at least for v2rayng)
59
60
  # https://github.com/2dust/v2rayNG/pull/2827#issue-2127534078
@@ -135,7 +136,9 @@ def add_wireguard_settings(base: dict, proxy: dict):
135
136
  base['settings']['mtu'] = 1380 # optional
136
137
  base['settings']['peers'] = [{
137
138
  'endpoint': f'{proxy["server"]}:{int(proxy["port"])}',
138
- 'publicKey': proxy["wg_server_pub"]
139
+ 'publicKey': proxy["wg_server_pub"],
140
+ "preSharedKey": proxy['wg_psk']
141
+
139
142
  # 'allowedIPs':'', 'preSharedKey':'', 'keepAlive':'' # optionals
140
143
  }]
141
144
 
@@ -174,8 +174,8 @@ class DomainAdmin(AdminLTEModelView):
174
174
 
175
175
  cloudflare_updated=self._update_cloudflare(model, ipv4_list,ipv6_list)
176
176
 
177
- if not (cloudflare_updated or "*" in model.domain or model.domain == ""):
178
- self._validate_domain_ips(model, server_ips)
177
+
178
+ self._validate_domain_ips(model, server_ips)
179
179
 
180
180
  # Handle CDN IP settings
181
181
  if model.mode == DomainType.direct and model.cdn_ip:
@@ -279,13 +279,13 @@ class DomainAdmin(AdminLTEModelView):
279
279
  """Validate domain IP resolution and matching"""
280
280
 
281
281
  # Skip validation for wildcard or empty domains
282
- if model.domain.startswith('*') or not model.domain:
282
+ if (model.domain.startswith('*') or not model.domain) and model.mode not in [DomainType.direct]:
283
283
  return True
284
284
  if model.mode in [DomainType.fake, DomainType.reality, DomainType.relay]:
285
285
  return True
286
286
  # Resolve domain IPs with timeout
287
287
  try:
288
- dips = hutils.network.get_domain_ips(model.domain, timeout=10)
288
+ dips = hutils.network.get_domain_ips(model.domain)
289
289
  except Exception as e:
290
290
  logger.error(f"Error resolving domain {model.domain}: {str(e)}")
291
291
  raise ValidationError(_("Domain cannot be resolved! Please check DNS settings"))
@@ -21,6 +21,12 @@ class UserView(FlaskView):
21
21
  def index(self):
22
22
  return self.auto_sub()
23
23
 
24
+ @route('/ua')
25
+ def user_agent(self):
26
+ ua= str(g.user_agent)+"\n"+str(request.user_agent)
27
+ print(ua)
28
+ return ua
29
+
24
30
  def auto_sub(self):
25
31
  if g.user_agent['is_browser']:
26
32
  return self.new()
@@ -0,0 +1,320 @@
1
+ {{_("config.dbvalues.label")}}
2
+ {{_("config.dbvalues.description")}}
3
+ {{_("config.create_easysetup_link.label")}}
4
+ {{_("config.create_easysetup_link.description")}}
5
+ {{_("config.wireguard_enable.label")}}
6
+ {{_("config.wireguard_enable.description")}}
7
+ {{_("config.wireguard_port.label")}}
8
+ {{_("config.wireguard_port.description")}}
9
+ {{_("config.wireguard_ipv6.label")}}
10
+ {{_("config.wireguard_ipv6.description")}}
11
+ {{_("config.wireguard_ipv4.label")}}
12
+ {{_("config.wireguard_ipv4.description")}}
13
+ {{_("config.wireguard_private_key.label")}}
14
+ {{_("config.wireguard_private_key.description")}}
15
+ {{_("config.wireguard_public_key.label")}}
16
+ {{_("config.wireguard_public_key.description")}}
17
+ {{_("config.wireguard_noise_trick.label")}}
18
+ {{_("config.wireguard_noise_trick.description")}}
19
+ {{_("config.ssh_server_redis_url.label")}}
20
+ {{_("config.ssh_server_redis_url.description")}}
21
+ {{_("config.ssh_server_port.label")}}
22
+ {{_("config.ssh_server_port.description")}}
23
+ {{_("config.ssh_server_enable.label")}}
24
+ {{_("config.ssh_server_enable.description")}}
25
+ {{_("config.first_setup.label")}}
26
+ {{_("config.first_setup.description")}}
27
+ {{_("config.core_type.label")}}
28
+ {{_("config.core_type.description")}}
29
+ {{_("config.warp_enable.label")}}
30
+ {{_("config.warp_enable.description")}}
31
+ {{_("config.warp_mode.label")}}
32
+ {{_("config.warp_mode.description")}}
33
+ {{_("config.warp_plus_code.label")}}
34
+ {{_("config.warp_plus_code.description")}}
35
+ {{_("config.warp_sites.label")}}
36
+ {{_("config.warp_sites.description")}}
37
+ {{_("config.dns_server.label")}}
38
+ {{_("config.dns_server.description")}}
39
+ {{_("config.reality_fallback_domain.label")}}
40
+ {{_("config.reality_fallback_domain.description")}}
41
+ {{_("config.reality_server_names.label")}}
42
+ {{_("config.reality_server_names.description")}}
43
+ {{_("config.reality_short_ids.label")}}
44
+ {{_("config.reality_short_ids.description")}}
45
+ {{_("config.reality_private_key.label")}}
46
+ {{_("config.reality_private_key.description")}}
47
+ {{_("config.reality_public_key.label")}}
48
+ {{_("config.reality_public_key.description")}}
49
+ {{_("config.reality_port.label")}}
50
+ {{_("config.reality_port.description")}}
51
+ {{_("config.restls1_2_domain.label")}}
52
+ {{_("config.restls1_2_domain.description")}}
53
+ {{_("config.restls1_3_domain.label")}}
54
+ {{_("config.restls1_3_domain.description")}}
55
+ {{_("config.show_usage_in_sublink.label")}}
56
+ {{_("config.show_usage_in_sublink.description")}}
57
+ {{_("config.cloudflare.label")}}
58
+ {{_("config.cloudflare.description")}}
59
+ {{_("config.license.label")}}
60
+ {{_("config.license.description")}}
61
+ {{_("config.country.label")}}
62
+ {{_("config.country.description")}}
63
+ {{_("config.package_mode.label")}}
64
+ {{_("config.package_mode.description")}}
65
+ {{_("config.utls.label")}}
66
+ {{_("config.utls.description")}}
67
+ {{_("config.telegram_bot_token.label")}}
68
+ {{_("config.telegram_bot_token.description")}}
69
+ {{_("config.is_parent.label")}}
70
+ {{_("config.is_parent.description")}}
71
+ {{_("config.parent_panel.label")}}
72
+ {{_("config.parent_panel.description")}}
73
+ {{_("config.parent_domain.label")}}
74
+ {{_("config.parent_domain.description")}}
75
+ {{_("config.parent_admin_proxy_path.label")}}
76
+ {{_("config.parent_admin_proxy_path.description")}}
77
+ {{_("config.panel_mode.label")}}
78
+ {{_("config.panel_mode.description")}}
79
+ {{_("config.log_level.label")}}
80
+ {{_("config.log_level.description")}}
81
+ {{_("config.unique_id.label")}}
82
+ {{_("config.unique_id.description")}}
83
+ {{_("config.last_hash.label")}}
84
+ {{_("config.last_hash.description")}}
85
+ {{_("config.cdn_forced_host.label")}}
86
+ {{_("config.cdn_forced_host.description")}}
87
+ {{_("config.lang.label")}}
88
+ {{_("config.lang.description")}}
89
+ {{_("config.admin_lang.label")}}
90
+ {{_("config.admin_lang.description")}}
91
+ {{_("config.admin_secret.label")}}
92
+ {{_("config.admin_secret.description")}}
93
+ {{_("config.tls_ports.label")}}
94
+ {{_("config.tls_ports.description")}}
95
+ {{_("config.tls_fragment_enable.label")}}
96
+ {{_("config.tls_fragment_enable.description")}}
97
+ {{_("config.tls_fragment_size.label")}}
98
+ {{_("config.tls_fragment_size.description")}}
99
+ {{_("config.tls_fragment_sleep.label")}}
100
+ {{_("config.tls_fragment_sleep.description")}}
101
+ {{_("config.tls_mixed_case.label")}}
102
+ {{_("config.tls_mixed_case.description")}}
103
+ {{_("config.tls_padding_enable.label")}}
104
+ {{_("config.tls_padding_enable.description")}}
105
+ {{_("config.tls_padding_length.label")}}
106
+ {{_("config.tls_padding_length.description")}}
107
+ {{_("config.mux_enable.label")}}
108
+ {{_("config.mux_enable.description")}}
109
+ {{_("config.mux_protocol.label")}}
110
+ {{_("config.mux_protocol.description")}}
111
+ {{_("config.mux_max_connections.label")}}
112
+ {{_("config.mux_max_connections.description")}}
113
+ {{_("config.mux_min_streams.label")}}
114
+ {{_("config.mux_min_streams.description")}}
115
+ {{_("config.mux_max_streams.label")}}
116
+ {{_("config.mux_max_streams.description")}}
117
+ {{_("config.mux_padding_enable.label")}}
118
+ {{_("config.mux_padding_enable.description")}}
119
+ {{_("config.mux_brutal_enable.label")}}
120
+ {{_("config.mux_brutal_enable.description")}}
121
+ {{_("config.mux_brutal_up_mbps.label")}}
122
+ {{_("config.mux_brutal_up_mbps.description")}}
123
+ {{_("config.mux_brutal_down_mbps.label")}}
124
+ {{_("config.mux_brutal_down_mbps.description")}}
125
+ {{_("config.http_ports.label")}}
126
+ {{_("config.http_ports.description")}}
127
+ {{_("config.kcp_ports.label")}}
128
+ {{_("config.kcp_ports.description")}}
129
+ {{_("config.kcp_enable.label")}}
130
+ {{_("config.kcp_enable.description")}}
131
+ {{_("config.decoy_domain.label")}}
132
+ {{_("config.decoy_domain.description")}}
133
+ {{_("config.proxy_path.label")}}
134
+ {{_("config.proxy_path.description")}}
135
+ {{_("config.proxy_path_admin.label")}}
136
+ {{_("config.proxy_path_admin.description")}}
137
+ {{_("config.proxy_path_client.label")}}
138
+ {{_("config.proxy_path_client.description")}}
139
+ {{_("config.firewall.label")}}
140
+ {{_("config.firewall.description")}}
141
+ {{_("config.netdata.label")}}
142
+ {{_("config.netdata.description")}}
143
+ {{_("config.http_proxy_enable.label")}}
144
+ {{_("config.http_proxy_enable.description")}}
145
+ {{_("config.block_iran_sites.label")}}
146
+ {{_("config.block_iran_sites.description")}}
147
+ {{_("config.allow_invalid_sni.label")}}
148
+ {{_("config.allow_invalid_sni.description")}}
149
+ {{_("config.auto_update.label")}}
150
+ {{_("config.auto_update.description")}}
151
+ {{_("config.speed_test.label")}}
152
+ {{_("config.speed_test.description")}}
153
+ {{_("config.only_ipv4.label")}}
154
+ {{_("config.only_ipv4.description")}}
155
+ {{_("config.shared_secret.label")}}
156
+ {{_("config.shared_secret.description")}}
157
+ {{_("config.telegram_enable.label")}}
158
+ {{_("config.telegram_enable.description")}}
159
+ {{_("config.telegram_adtag.label")}}
160
+ {{_("config.telegram_adtag.description")}}
161
+ {{_("config.telegram_lib.label")}}
162
+ {{_("config.telegram_lib.description")}}
163
+ {{_("config.telegram_fakedomain.label")}}
164
+ {{_("config.telegram_fakedomain.description")}}
165
+ {{_("config.v2ray_enable.label")}}
166
+ {{_("config.v2ray_enable.description")}}
167
+ {{_("config.torrent_block.label")}}
168
+ {{_("config.torrent_block.description")}}
169
+ {{_("config.tuic_enable.label")}}
170
+ {{_("config.tuic_enable.description")}}
171
+ {{_("config.tuic_port.label")}}
172
+ {{_("config.tuic_port.description")}}
173
+ {{_("config.hysteria_enable.label")}}
174
+ {{_("config.hysteria_enable.description")}}
175
+ {{_("config.hysteria_port.label")}}
176
+ {{_("config.hysteria_port.description")}}
177
+ {{_("config.hysteria_obfs_enable.label")}}
178
+ {{_("config.hysteria_obfs_enable.description")}}
179
+ {{_("config.hysteria_up_mbps.label")}}
180
+ {{_("config.hysteria_up_mbps.description")}}
181
+ {{_("config.hysteria_down_mbps.label")}}
182
+ {{_("config.hysteria_down_mbps.description")}}
183
+ {{_("config.shadowsocks2022_enable.label")}}
184
+ {{_("config.shadowsocks2022_enable.description")}}
185
+ {{_("config.shadowsocks2022_method.label")}}
186
+ {{_("config.shadowsocks2022_method.description")}}
187
+ {{_("config.shadowsocks2022_port.label")}}
188
+ {{_("config.shadowsocks2022_port.description")}}
189
+ {{_("config.ssfaketls_enable.label")}}
190
+ {{_("config.ssfaketls_enable.description")}}
191
+ {{_("config.ssfaketls_fakedomain.label")}}
192
+ {{_("config.ssfaketls_fakedomain.description")}}
193
+ {{_("config.shadowtls_enable.label")}}
194
+ {{_("config.shadowtls_enable.description")}}
195
+ {{_("config.shadowtls_fakedomain.label")}}
196
+ {{_("config.shadowtls_fakedomain.description")}}
197
+ {{_("config.ssr_enable.label")}}
198
+ {{_("config.ssr_enable.description")}}
199
+ {{_("config.ssr_fakedomain.label")}}
200
+ {{_("config.ssr_fakedomain.description")}}
201
+ {{_("config.vmess_enable.label")}}
202
+ {{_("config.vmess_enable.description")}}
203
+ {{_("config.domain_fronting_domain.label")}}
204
+ {{_("config.domain_fronting_domain.description")}}
205
+ {{_("config.domain_fronting_http_enable.label")}}
206
+ {{_("config.domain_fronting_http_enable.description")}}
207
+ {{_("config.domain_fronting_tls_enable.label")}}
208
+ {{_("config.domain_fronting_tls_enable.description")}}
209
+ {{_("config.ws_enable.label")}}
210
+ {{_("config.ws_enable.description")}}
211
+ {{_("config.grpc_enable.label")}}
212
+ {{_("config.grpc_enable.description")}}
213
+ {{_("config.httpupgrade_enable.label")}}
214
+ {{_("config.httpupgrade_enable.description")}}
215
+ {{_("config.splithttp_enable.label")}}
216
+ {{_("config.splithttp_enable.description")}}
217
+ {{_("config.vless_enable.label")}}
218
+ {{_("config.vless_enable.description")}}
219
+ {{_("config.trojan_enable.label")}}
220
+ {{_("config.trojan_enable.description")}}
221
+ {{_("config.reality_enable.label")}}
222
+ {{_("config.reality_enable.description")}}
223
+ {{_("config.tcp_enable.label")}}
224
+ {{_("config.tcp_enable.description")}}
225
+ {{_("config.quic_enable.label")}}
226
+ {{_("config.quic_enable.description")}}
227
+ {{_("config.xtls_enable.label")}}
228
+ {{_("config.xtls_enable.description")}}
229
+ {{_("config.h2_enable.label")}}
230
+ {{_("config.h2_enable.description")}}
231
+ {{_("config.db_version.label")}}
232
+ {{_("config.db_version.description")}}
233
+ {{_("config.last_priodic_usage_check.label")}}
234
+ {{_("config.last_priodic_usage_check.description")}}
235
+ {{_("config.branding_title.label")}}
236
+ {{_("config.branding_title.description")}}
237
+ {{_("config.branding_site.label")}}
238
+ {{_("config.branding_site.description")}}
239
+ {{_("config.branding_freetext.label")}}
240
+ {{_("config.branding_freetext.description")}}
241
+ {{_("config.not_found.label")}}
242
+ {{_("config.not_found.description")}}
243
+ {{_("config.path_vmess.label")}}
244
+ {{_("config.path_vmess.description")}}
245
+ {{_("config.path_vless.label")}}
246
+ {{_("config.path_vless.description")}}
247
+ {{_("config.path_trojan.label")}}
248
+ {{_("config.path_trojan.description")}}
249
+ {{_("config.path_v2ray.label")}}
250
+ {{_("config.path_v2ray.description")}}
251
+ {{_("config.path_ss.label")}}
252
+ {{_("config.path_ss.description")}}
253
+ {{_("config.path_splithttp.label")}}
254
+ {{_("config.path_splithttp.description")}}
255
+ {{_("config.path_httpupgrade.label")}}
256
+ {{_("config.path_httpupgrade.description")}}
257
+ {{_("config.path_ws.label")}}
258
+ {{_("config.path_ws.description")}}
259
+ {{_("config.path_tcp.label")}}
260
+ {{_("config.path_tcp.description")}}
261
+ {{_("config.path_grpc.label")}}
262
+ {{_("config.path_grpc.description")}}
263
+ {{_("config.sub_full_singbox_enable.label")}}
264
+ {{_("config.sub_full_singbox_enable.description")}}
265
+ {{_("config.sub_singbox_ssh_enable.label")}}
266
+ {{_("config.sub_singbox_ssh_enable.description")}}
267
+ {{_("config.sub_full_xray_json_enable.label")}}
268
+ {{_("config.sub_full_xray_json_enable.description")}}
269
+ {{_("config.sub_full_links_enable.label")}}
270
+ {{_("config.sub_full_links_enable.description")}}
271
+ {{_("config.sub_full_links_b64_enable.label")}}
272
+ {{_("config.sub_full_links_b64_enable.description")}}
273
+ {{_("config.sub_full_clash_enable.label")}}
274
+ {{_("config.sub_full_clash_enable.description")}}
275
+ {{_("config.sub_full_clash_meta_enable.label")}}
276
+ {{_("config.sub_full_clash_meta_enable.description")}}
277
+ {{_("config.hiddifycli_enable.label")}}
278
+ {{_("config.hiddifycli_enable.description")}}
279
+
280
+ {{_("config.admin.label")}}{{_("config.admin.description")}}
281
+ {{_("config.branding.label")}}{{_("config.branding.description")}}
282
+ {{_("config.general.label")}}{{_("config.general.description")}}
283
+ {{_("config.proxies.label")}}{{_("config.proxies.description")}}
284
+ {{_("config.domain_fronting.label")}}{{_("config.domain_fronting.description")}}
285
+ {{_("config.telegram.label")}}{{_("config.telegram.description")}}
286
+ {{_("config.http.label")}}{{_("config.http.description")}}
287
+ {{_("config.tls.label")}}{{_("config.tls.description")}}
288
+ {{_("config.mux.label")}}{{_("config.mux.description")}}
289
+ {{_("config.tls_trick.label")}}{{_("config.tls_trick.description")}}
290
+ {{_("config.ssh.label")}}{{_("config.ssh.description")}}
291
+ {{_("config.ssfaketls.label")}}{{_("config.ssfaketls.description")}}
292
+ {{_("config.shadowtls.label")}}{{_("config.shadowtls.description")}}
293
+ {{_("config.restls.label")}}{{_("config.restls.description")}}
294
+ {{_("config.tuic.label")}}{{_("config.tuic.description")}}
295
+ {{_("config.hysteria.label")}}{{_("config.hysteria.description")}}
296
+ {{_("config.ssr.label")}}{{_("config.ssr.description")}}
297
+ {{_("config.kcp.label")}}{{_("config.kcp.description")}}
298
+ {{_("config.hidden.label")}}{{_("config.hidden.description")}}
299
+ {{_("config.advanced.label")}}{{_("config.advanced.description")}}
300
+ {{_("config.too_advanced.label")}}{{_("config.too_advanced.description")}}
301
+ {{_("config.warp.label")}}{{_("config.warp.description")}}
302
+ {{_("config.reality.label")}}{{_("config.reality.description")}}
303
+ {{_("config.wireguard.label")}}{{_("config.wireguard.description")}}
304
+ {{_("config.shadowsocks.label")}}{{_("config.shadowsocks.description")}}
305
+
306
+ {{_("direct")}}
307
+ {{_("sub_link_only")}}
308
+ {{_("cdn")}}
309
+ {{_("auto_cdn_ip")}}
310
+ {{_("relay")}}
311
+ {{_("reality")}}
312
+ {{_("old_xtls_direct")}}
313
+ {{_("worker")}}
314
+ {{_("fake")}}
315
+
316
+ {{_("no_reset")}}
317
+ {{_("monthly")}}
318
+ {{_("weekly")}}
319
+ {{_("daily")}}
320
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hiddifypanel
3
- Version: 10.80.0.dev17
3
+ Version: 10.80.0.dev19
4
4
  Summary: hiddifypanel multi proxy panel
5
5
  Home-page: https://hiddify.com
6
6
  License: LICENSE.md
@@ -1,6 +1,6 @@
1
1
  hiddifypanel/Events.py,sha256=AlnRdjVul0jP-NCT4-zoaQgowoOo-JhdQB4ytetAFKA,723
2
- hiddifypanel/VERSION,sha256=AHOvOxslXWyidO-IqmBWwe0V0APqbK7E7_ZnrVr55_s,14
3
- hiddifypanel/VERSION.py,sha256=9aq_Of2m1EnofHTlgZ6oM9dXLdCpNhi7tgkWrdvOO44,227
2
+ hiddifypanel/VERSION,sha256=HBA3RtDpVfQsTmldLpQ1W3MfaV2vp5wLmQpRb2VpQNA,14
3
+ hiddifypanel/VERSION.py,sha256=P6pYPScqvKddESNT1G0hLeh7VM-LRBEZT3Ph8XgfJ5o,227
4
4
  hiddifypanel/__init__.py,sha256=kigwDO8d9jXyPZLvJAWd6zo-GX3pG_xWf-q2aStz80Y,377
5
5
  hiddifypanel/__main__.py,sha256=IVchnXpK6bm8T3N--mN17HBQNLMeLAjyP7iwzULexB4,218
6
6
  hiddifypanel/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -44,7 +44,7 @@ hiddifypanel/hutils/proxy/shared.py,sha256=Zg4qMqp-fzWXHMqZsE1stluVDgT71AlFVlJAx
44
44
  hiddifypanel/hutils/proxy/singbox.py,sha256=Fmmzoake-gpnRB5yfTyQvd1dB-10WKwhJt4vhiKzJZQ,11722
45
45
  hiddifypanel/hutils/proxy/wireguard.py,sha256=gij01BYXII-RxAh3Yky0o3yce20HJKeHtu1KNwb0Uzk,934
46
46
  hiddifypanel/hutils/proxy/xray.py,sha256=0vEHL9yq5Si7W_fgI8tn9zwNAWhwBE7djun05cAUDF8,10808
47
- hiddifypanel/hutils/proxy/xrayjson.py,sha256=iEfMlLZfzYzp5eCj8AuL9nXmuPJavKZaoAjtASEIhNY,14990
47
+ hiddifypanel/hutils/proxy/xrayjson.py,sha256=g3i97P4TUNLzPx6nthn_Yr3_DmKV-mLTjpTeUseM6vM,15062
48
48
  hiddifypanel/hutils/random.py,sha256=KrsarmRNL05PYzwMxDaDyv-_QcKS0YsZR2z7BnllAqI,1789
49
49
  hiddifypanel/hutils/system.py,sha256=nX7ZvmXKfHu6_cFVOGZRG-7ch2glqgzQL2iWraQc4S0,4350
50
50
  hiddifypanel/hutils/utils.py,sha256=qOvyBFQxBFAV9HYtZn8XVgIauNbVIE2A6WGSpf-NyQM,2349
@@ -67,7 +67,7 @@ hiddifypanel/panel/admin/AdminstratorAdmin.py,sha256=X8MI3DtW62vJqFRp97M_CxSdB-N
67
67
  hiddifypanel/panel/admin/Backup.py,sha256=BKSoAZgw1j16P1Jh9vMqGj7ZfB2m-WafDK0C5vil5FY,3634
68
68
  hiddifypanel/panel/admin/ConfigAdmin.py,sha256=0hnLY-8BxrpVnrAcQaedWjHnRUq1X_Styi_ZCZ2ivds,2876
69
69
  hiddifypanel/panel/admin/Dashboard.py,sha256=JOqZLHxPOYKQYQVJ7AtHAkilH-anJZQyK1rQrgCJUeA,3798
70
- hiddifypanel/panel/admin/DomainAdmin.py,sha256=gBX81QfC_n6WYAdkXmYOUuWozvZdU74_wBwz3Do7nus,16249
70
+ hiddifypanel/panel/admin/DomainAdmin.py,sha256=YGO7_zrietlDGDfCo99Thc1Z4fo1hk2q05U60WF-WIg,16204
71
71
  hiddifypanel/panel/admin/NodeAdmin.py,sha256=QAHQjF7e7F4KqsWNWpMt7SoLANlFEborVtWQV9OXJ2E,3102
72
72
  hiddifypanel/panel/admin/ProxyAdmin.py,sha256=HtuYHkZ8LCrYtjF2xO2i7lyw_KtOTBYCPu0bNWR4fOs,5364
73
73
  hiddifypanel/panel/admin/QuickSetup.py,sha256=J-pcMiNPo1ZBRfpoqpx_IkKn0ecIEkyG_YwJhkpeJyU,12667
@@ -226,7 +226,7 @@ hiddifypanel/panel/user/templates/home/windows.html,sha256=MbOTheea2aRRh6mwoAXCu
226
226
  hiddifypanel/panel/user/templates/new.html,sha256=or4miAM0izxSB1KyyRDcXuaK68aKnxV7sjWhH921PYQ,1300
227
227
  hiddifypanel/panel/user/templates/redirect_to_new_format.html,sha256=vIS0BdUzpmAiD2c2EBdGON2bCM8equvG_DO39ugXgAM,597
228
228
  hiddifypanel/panel/user/templates/singbox_config.json,sha256=X6hBbJ4DOoNesSOIxwRwZHJW2GwFR19Q8RS81d17idI,5746
229
- hiddifypanel/panel/user/user.py,sha256=KZ1PdHtTjrxR8cFZutNppvK0mThgQRtwWhk2mQGgcYc,16514
229
+ hiddifypanel/panel/user/user.py,sha256=N9R9igRp0MM2sgJhH8eLxyUflsa-NDeTFUsw3U_f8SM,16654
230
230
  hiddifypanel/static/a.txt,sha256=zhVsuRCoCxgmASQJL80X4VLr7Xy_T-PXs50mVre0IKk,1542
231
231
  hiddifypanel/static/apps-icon/foxray.ico,sha256=EoudrtNVW9S18kbzNPYFc5iF3bLh3MZWivGeAV7ts9I,8243
232
232
  hiddifypanel/static/apps-icon/hiddify_android.ico,sha256=eco2sCrLUMM9vDJNNsH7VIFbvsAJayCNcO0y6S82uIE,34179
@@ -829,7 +829,7 @@ hiddifypanel/templates/admin-layout.html,sha256=OzEUQ4gxx_pdF2-dPbm-pincmakcEGfi
829
829
  hiddifypanel/templates/admin.ht.old,sha256=e9FBo9YPi7zFVidg8jS6JhOOsYdBbNPxfpTWG1dbIeg,8384
830
830
  hiddifypanel/templates/donation.html,sha256=Oft3WENpSnwpbDgMw3MnhQIlQhuN_TDKm54qd4_FwIk,741
831
831
  hiddifypanel/templates/error.html,sha256=Tnu3mMZ6zvFcATU6_OY1stljVPd9Djnxm3LV7Zx4zck,476
832
- hiddifypanel/templates/fake.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
832
+ hiddifypanel/templates/fake.html,sha256=XdGFRlRuCxeHuKY791eYUGeeASvArpzfB8uExr4dCUA,13107
833
833
  hiddifypanel/templates/flaskadmin-layout.html,sha256=PkF74ld3HZ-j5_nVzVxmispnmmo3ni4WII7OXnN9VOs,7612
834
834
  hiddifypanel/templates/github_issue_body.j2,sha256=6Z4QF-cOAaUxDtRQXT8H4O9SrZ3TGoxgpjnfIpGbsxo,474
835
835
  hiddifypanel/templates/hiddify-flask-admin/actions.html,sha256=2NeITe2e-lPKCk_o511tCIqVtrPu8LYHE1wTCtrFUrI,1331
@@ -839,15 +839,15 @@ hiddifypanel/templates/macros.html,sha256=HlnXbIMN8i37fVusBdfw0QfVkImnFpZw9zbmtp
839
839
  hiddifypanel/templates/master.html,sha256=MduWpnW-_ksXxPb1fSOYJC0SKEYnAJ8i4XwX7AUZj38,21865
840
840
  hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjIqmnpZi0,412
841
841
  hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
842
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=YtYGH1ktXHrAePP6bAaqfM2uaiyBP3VrKie41UZVkqM,79310
842
+ hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=Nv6XcgGYwtD5Y2HxUX_DwZS-ZFod2pXPiCSKfG2krkE,79310
843
843
  hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=qr-kSGgYdV1xKvankSK88cesK_LQi0KCMzzx6mbmF_g,82591
844
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=WCNe0PreQ-ydMQmgoCVKqKjXIsUjt85zC2dFLUbjy9E,102747
844
+ hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=5HsB49nwNJxt76eqQuEQVfxDqc_wHg-de5rEVHLc4D0,102747
845
845
  hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=DUtodYC3awCjGe06o81cVEvPuowTlRn0PipZei5g0ek,107040
846
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=SQMOhcZcCdm1I4QdHYp9c4_r5Dqc8sTi0ce3cypXY4U,80756
846
+ hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=bqCnEiEZBXPJyyaU5UvbWcu3oG677hNLf_izlp1_xbc,80756
847
847
  hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=RgaOAs0szIrlvgjfdaBc_BpYUr15uc41kp6eKdBEo3E,84850
848
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=Rl2iJRndnKwsEK1L5vwrNzh7PnuXVU-vLhF5bdIKKec,108592
848
+ hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=EfFJepvg7Y_dozUFvfkLWeLPk--YjvLTcWPK9C7uccI,108592
849
849
  hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=3jvAuQ8G8sRq_wsKvxBYF-3eksIwq-l55FRKSaK9vuE,112900
850
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=gmxs19ApBea4UnrbxqugWYW1Ie4N-2gY5ZOssV9TL_c,75255
850
+ hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=5qVR5o86yI3_bUZ7a6p-GLZ2DZI8g_bOprGftWB38H4,75255
851
851
  hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=5CyCaBqz5I6N8rjv9KawXmUy45yHOlBbk9aY8-JzlQA,78960
852
852
  hiddifypanel/translations.i18n/en.json,sha256=eKdO-DIWdfgcoTLHCrd4gJ_BaPkDEViY2LZkwNzbE78,71802
853
853
  hiddifypanel/translations.i18n/fa.json,sha256=GMHU8oPOETdWU1yS36OS96XY61jZV9MGLKP7TK252CA,96251
@@ -856,8 +856,8 @@ hiddifypanel/translations.i18n/my.json,sha256=UHXP_EuyX9f5mEAtcxp_40TgGykXs_ap9y
856
856
  hiddifypanel/translations.i18n/pt.json,sha256=D0hF31ch7R2M-Ka9_-zxn_2yDL2Hzrbuk90vQydqeVQ,74175
857
857
  hiddifypanel/translations.i18n/ru.json,sha256=rEyz2tJ4-yMCn5XN59lkqmKdOoLOmw4pDuJQjPhkYKs,102003
858
858
  hiddifypanel/translations.i18n/zh.json,sha256=ULjI0PQ1NJZLtN_nxNr3Rpoe3Ybvhg-Hn0kMtguTOc0,68708
859
- hiddifypanel-10.80.0.dev17.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
860
- hiddifypanel-10.80.0.dev17.dist-info/METADATA,sha256=HgNy3wl9GXAjCZe9q3RwvKfRX_ONuXNpZ3UNasanf-8,3963
861
- hiddifypanel-10.80.0.dev17.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
862
- hiddifypanel-10.80.0.dev17.dist-info/entry_points.txt,sha256=fiVgmdZ7nff9Ow1XnyMFrn1y4akk9gwnDkxpN8P3Xrw,59
863
- hiddifypanel-10.80.0.dev17.dist-info/RECORD,,
859
+ hiddifypanel-10.80.0.dev19.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
860
+ hiddifypanel-10.80.0.dev19.dist-info/METADATA,sha256=GlavVq5LnZ6m6x19Dkvy7eWWdDO2vjZGuCUiUNAHuiY,3963
861
+ hiddifypanel-10.80.0.dev19.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
862
+ hiddifypanel-10.80.0.dev19.dist-info/entry_points.txt,sha256=fiVgmdZ7nff9Ow1XnyMFrn1y4akk9gwnDkxpN8P3Xrw,59
863
+ hiddifypanel-10.80.0.dev19.dist-info/RECORD,,