hiddifypanel 10.20.1__py3-none-any.whl → 10.20.2__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 +1 -1
- hiddifypanel/panel/admin/SettingAdmin.py +4 -2
- hiddifypanel/templates/fake.html +298 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/en/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/fa/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/pt/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/ru/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo +0 -0
- hiddifypanel/translations/zh/LC_MESSAGES/messages.po +3 -0
- hiddifypanel/translations.i18n/en.json +1 -0
- hiddifypanel/translations.i18n/fa.json +1 -0
- hiddifypanel/translations.i18n/pt.json +1 -0
- hiddifypanel/translations.i18n/ru.json +1 -0
- hiddifypanel/translations.i18n/zh.json +1 -0
- {hiddifypanel-10.20.1.dist-info → hiddifypanel-10.20.2.dist-info}/METADATA +1 -1
- {hiddifypanel-10.20.1.dist-info → hiddifypanel-10.20.2.dist-info}/RECORD +25 -25
- {hiddifypanel-10.20.1.dist-info → hiddifypanel-10.20.2.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.20.1.dist-info → hiddifypanel-10.20.2.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.20.1.dist-info → hiddifypanel-10.20.2.dist-info}/entry_points.txt +0 -0
- {hiddifypanel-10.20.1.dist-info → hiddifypanel-10.20.2.dist-info}/top_level.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.20.
|
1
|
+
10.20.2
|
hiddifypanel/VERSION.py
CHANGED
@@ -55,7 +55,9 @@ class SettingAdmin(FlaskView):
|
|
55
55
|
if k.type == str:
|
56
56
|
if "_domain" in k or "_fakedomain" in k:
|
57
57
|
v = v.lower()
|
58
|
-
|
58
|
+
if k == ConfigEnum.warp_sites and 'https://' in v:
|
59
|
+
hutils.flask.flash(_("config.warp-https-domain-for-warp-site"), 'error')
|
60
|
+
return render_template('config.html', form=form)
|
59
61
|
if "port" in k:
|
60
62
|
for p in v.split(","):
|
61
63
|
for k2, v2 in c_items.items():
|
@@ -249,7 +251,7 @@ def get_config_form():
|
|
249
251
|
|
250
252
|
elif c.key == ConfigEnum.warp_sites:
|
251
253
|
validators = [wtf.validators.Length(max=2048),
|
252
|
-
wtf.validators.Regexp(r'^
|
254
|
+
wtf.validators.Regexp(r'^[\w.-]+\.\w+(?:\.\w+)?(?:\r?\n|$)', re.IGNORECASE, _("config.invalid-pattern-for-warp-sites") + f' {c.key}')
|
253
255
|
]
|
254
256
|
render_kw = {'class': "ltr", 'maxlength': 2048}
|
255
257
|
field = wtf.TextAreaField(_(f'config.{c.key}.label'), validators, default=c.value,
|
hiddifypanel/templates/fake.html
CHANGED
@@ -0,0 +1,298 @@
|
|
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.vless_enable.label")}}
|
216
|
+
{{_("config.vless_enable.description")}}
|
217
|
+
{{_("config.trojan_enable.label")}}
|
218
|
+
{{_("config.trojan_enable.description")}}
|
219
|
+
{{_("config.reality_enable.label")}}
|
220
|
+
{{_("config.reality_enable.description")}}
|
221
|
+
{{_("config.tcp_enable.label")}}
|
222
|
+
{{_("config.tcp_enable.description")}}
|
223
|
+
{{_("config.quic_enable.label")}}
|
224
|
+
{{_("config.quic_enable.description")}}
|
225
|
+
{{_("config.xtls_enable.label")}}
|
226
|
+
{{_("config.xtls_enable.description")}}
|
227
|
+
{{_("config.h2_enable.label")}}
|
228
|
+
{{_("config.h2_enable.description")}}
|
229
|
+
{{_("config.db_version.label")}}
|
230
|
+
{{_("config.db_version.description")}}
|
231
|
+
{{_("config.branding_title.label")}}
|
232
|
+
{{_("config.branding_title.description")}}
|
233
|
+
{{_("config.branding_site.label")}}
|
234
|
+
{{_("config.branding_site.description")}}
|
235
|
+
{{_("config.branding_freetext.label")}}
|
236
|
+
{{_("config.branding_freetext.description")}}
|
237
|
+
{{_("config.not_found.label")}}
|
238
|
+
{{_("config.not_found.description")}}
|
239
|
+
{{_("config.path_vmess.label")}}
|
240
|
+
{{_("config.path_vmess.description")}}
|
241
|
+
{{_("config.path_vless.label")}}
|
242
|
+
{{_("config.path_vless.description")}}
|
243
|
+
{{_("config.path_trojan.label")}}
|
244
|
+
{{_("config.path_trojan.description")}}
|
245
|
+
{{_("config.path_v2ray.label")}}
|
246
|
+
{{_("config.path_v2ray.description")}}
|
247
|
+
{{_("config.path_ss.label")}}
|
248
|
+
{{_("config.path_ss.description")}}
|
249
|
+
{{_("config.path_httpupgrade.label")}}
|
250
|
+
{{_("config.path_httpupgrade.description")}}
|
251
|
+
{{_("config.path_ws.label")}}
|
252
|
+
{{_("config.path_ws.description")}}
|
253
|
+
{{_("config.path_tcp.label")}}
|
254
|
+
{{_("config.path_tcp.description")}}
|
255
|
+
{{_("config.path_grpc.label")}}
|
256
|
+
{{_("config.path_grpc.description")}}
|
257
|
+
|
258
|
+
{{_("config.admin.label")}}{{_("config.admin.description")}}
|
259
|
+
{{_("config.branding.label")}}{{_("config.branding.description")}}
|
260
|
+
{{_("config.general.label")}}{{_("config.general.description")}}
|
261
|
+
{{_("config.proxies.label")}}{{_("config.proxies.description")}}
|
262
|
+
{{_("config.domain_fronting.label")}}{{_("config.domain_fronting.description")}}
|
263
|
+
{{_("config.telegram.label")}}{{_("config.telegram.description")}}
|
264
|
+
{{_("config.http.label")}}{{_("config.http.description")}}
|
265
|
+
{{_("config.tls.label")}}{{_("config.tls.description")}}
|
266
|
+
{{_("config.mux.label")}}{{_("config.mux.description")}}
|
267
|
+
{{_("config.tls_trick.label")}}{{_("config.tls_trick.description")}}
|
268
|
+
{{_("config.ssh.label")}}{{_("config.ssh.description")}}
|
269
|
+
{{_("config.ssfaketls.label")}}{{_("config.ssfaketls.description")}}
|
270
|
+
{{_("config.shadowtls.label")}}{{_("config.shadowtls.description")}}
|
271
|
+
{{_("config.restls.label")}}{{_("config.restls.description")}}
|
272
|
+
{{_("config.tuic.label")}}{{_("config.tuic.description")}}
|
273
|
+
{{_("config.hysteria.label")}}{{_("config.hysteria.description")}}
|
274
|
+
{{_("config.ssr.label")}}{{_("config.ssr.description")}}
|
275
|
+
{{_("config.kcp.label")}}{{_("config.kcp.description")}}
|
276
|
+
{{_("config.hidden.label")}}{{_("config.hidden.description")}}
|
277
|
+
{{_("config.advanced.label")}}{{_("config.advanced.description")}}
|
278
|
+
{{_("config.too_advanced.label")}}{{_("config.too_advanced.description")}}
|
279
|
+
{{_("config.warp.label")}}{{_("config.warp.description")}}
|
280
|
+
{{_("config.reality.label")}}{{_("config.reality.description")}}
|
281
|
+
{{_("config.wireguard.label")}}{{_("config.wireguard.description")}}
|
282
|
+
{{_("config.shadowsocks.label")}}{{_("config.shadowsocks.description")}}
|
283
|
+
|
284
|
+
{{_("direct")}}
|
285
|
+
{{_("sub_link_only")}}
|
286
|
+
{{_("cdn")}}
|
287
|
+
{{_("auto_cdn_ip")}}
|
288
|
+
{{_("relay")}}
|
289
|
+
{{_("reality")}}
|
290
|
+
{{_("old_xtls_direct")}}
|
291
|
+
{{_("worker")}}
|
292
|
+
{{_("fake")}}
|
293
|
+
|
294
|
+
{{_("no_reset")}}
|
295
|
+
{{_("monthly")}}
|
296
|
+
{{_("weekly")}}
|
297
|
+
{{_("daily")}}
|
298
|
+
|
Binary file
|
@@ -2162,6 +2162,9 @@ msgstr "Active VMess Protocol"
|
|
2162
2162
|
msgid "config.vmess_enable.label"
|
2163
2163
|
msgstr "♈️ Enable VMess"
|
2164
2164
|
|
2165
|
+
msgid "config.warp-https-domain-for-warp-site"
|
2166
|
+
msgstr "config.warp-https-domain-for-warp-site"
|
2167
|
+
|
2165
2168
|
msgid "config.warp.description"
|
2166
2169
|
msgstr ""
|
2167
2170
|
"Warp is a tool that hides your server IP in outbound traffic. It means if the users are visiting a website the Warp IP is exposed instead of our server IP.\n"
|
Binary file
|
@@ -2157,6 +2157,9 @@ msgstr "فعال کردن پروتکل VMess"
|
|
2157
2157
|
msgid "config.vmess_enable.label"
|
2158
2158
|
msgstr "♈️ فعال کردن VMess"
|
2159
2159
|
|
2160
|
+
msgid "config.warp-https-domain-for-warp-site"
|
2161
|
+
msgstr ""
|
2162
|
+
|
2160
2163
|
msgid "config.warp.description"
|
2161
2164
|
msgstr ""
|
2162
2165
|
"وارپ ابزاری هست که آی پی سرور شما را در ترافیک خروجی مخفی میکند. بدین صورت وقتی کاربران از وبسایتی بازدید میکنند، آیپی وارپ به جای آیپی سرور شما نمایش داده میشود.\n"
|
Binary file
|
@@ -2083,6 +2083,9 @@ msgstr ""
|
|
2083
2083
|
msgid "config.vmess_enable.label"
|
2084
2084
|
msgstr "♈️ Habilitar VMess"
|
2085
2085
|
|
2086
|
+
msgid "config.warp-https-domain-for-warp-site"
|
2087
|
+
msgstr ""
|
2088
|
+
|
2086
2089
|
msgid "config.warp.description"
|
2087
2090
|
msgstr ""
|
2088
2091
|
"Warp é uma ferramenta que esconde o IP do seu servidor dos sites onde os usuários navegam \n"
|
Binary file
|
@@ -2178,6 +2178,9 @@ msgstr ""
|
|
2178
2178
|
msgid "config.vmess_enable.label"
|
2179
2179
|
msgstr "♈️ Включить VMess"
|
2180
2180
|
|
2181
|
+
msgid "config.warp-https-domain-for-warp-site"
|
2182
|
+
msgstr ""
|
2183
|
+
|
2181
2184
|
msgid "config.warp.description"
|
2182
2185
|
msgstr ""
|
2183
2186
|
"Warp — это инструмент, который скрывает IP-адрес вашего сервера от сайтов, которые посещают ваши пользователи.\n"
|
Binary file
|
@@ -2013,6 +2013,9 @@ msgstr "据多位人士透露,VMess 导致该系统被政府检测到。所以
|
|
2013
2013
|
msgid "config.vmess_enable.label"
|
2014
2014
|
msgstr "♈️启用VMess"
|
2015
2015
|
|
2016
|
+
msgid "config.warp-https-domain-for-warp-site"
|
2017
|
+
msgstr ""
|
2018
|
+
|
2016
2019
|
msgid "config.warp.description"
|
2017
2020
|
msgstr ""
|
2018
2021
|
"Warp 是一种在出站流量中隐藏服务器 IP 的工具。这意味着如果用户访问网站,则暴露的是 Warp IP,而不是我们的服务器 IP。\n"
|
@@ -906,6 +906,7 @@
|
|
906
906
|
"description": "Active VMess Protocol",
|
907
907
|
"label": "♈️ Enable VMess"
|
908
908
|
},
|
909
|
+
"warp-https-domain-for-warp-site": "config.warp-https-domain-for-warp-site",
|
909
910
|
"warp": {
|
910
911
|
"description": "Warp is a tool that hides your server IP in outbound traffic. It means if the users are visiting a website the Warp IP is exposed instead of our server IP.\n<br>\nFor example, if you have a problem with captcha on Google, it might be fixed this way.",
|
911
912
|
"label": "WARP➕"
|
@@ -906,6 +906,7 @@
|
|
906
906
|
"description": "فعال کردن پروتکل VMess",
|
907
907
|
"label": "♈️ فعال کردن VMess"
|
908
908
|
},
|
909
|
+
"warp-https-domain-for-warp-site": "",
|
909
910
|
"warp": {
|
910
911
|
"description": "وارپ ابزاری هست که آی پی سرور شما را در ترافیک خروجی مخفی میکند. بدین صورت وقتی کاربران از وبسایتی بازدید میکنند، آیپی وارپ به جای آیپی سرور شما نمایش داده میشود.\n<br>\nبرای مثال اگر با کپچای گوگل مشکل دارید با استفاده از این ابزار مشکل رفع شود",
|
911
912
|
"label": "WARP"
|
@@ -906,6 +906,7 @@
|
|
906
906
|
"description": "É relatado por várias pessoas que o VMess faz com que o sistema seja detectado pelo governo. Então não é recomendado",
|
907
907
|
"label": "♈️ Habilitar VMess"
|
908
908
|
},
|
909
|
+
"warp-https-domain-for-warp-site": "",
|
909
910
|
"warp": {
|
910
911
|
"description": "Warp é uma ferramenta que esconde o IP do seu servidor dos sites onde os usuários navegam \n<br>\nPor exemplo, se você tiver um problema com o Google, ele pode ser corrigido.",
|
911
912
|
"label": "WARP Plus"
|
@@ -906,6 +906,7 @@
|
|
906
906
|
"description": "Несколько человек сообщили, что VMess позволляет правительствам обнаруживать систему. Не рекомендуется",
|
907
907
|
"label": "♈️ Включить VMess"
|
908
908
|
},
|
909
|
+
"warp-https-domain-for-warp-site": "",
|
909
910
|
"warp": {
|
910
911
|
"description": "Warp — это инструмент, который скрывает IP-адрес вашего сервера от сайтов, которые посещают ваши пользователи.\n<br>\nНапример, если у вас возникла проблема с Google, ее можно исправить.",
|
911
912
|
"label": "WARP➕"
|
@@ -906,6 +906,7 @@
|
|
906
906
|
"description": "据多位人士透露,VMess 导致该系统被政府检测到。所以不推荐",
|
907
907
|
"label": "♈️启用VMess"
|
908
908
|
},
|
909
|
+
"warp-https-domain-for-warp-site": "",
|
909
910
|
"warp": {
|
910
911
|
"description": "Warp 是一种在出站流量中隐藏服务器 IP 的工具。这意味着如果用户访问网站,则暴露的是 Warp IP,而不是我们的服务器 IP。\n<br>\n例如,如果您在 Google 上遇到验证码问题,则可能会通过这种方式修复。",
|
911
912
|
"label": "扭曲➕"
|
@@ -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=0SC9RKpQrAqGCi5LhmbuaCLtJoXeaRObzKcKkId5sc4,8
|
3
|
+
hiddifypanel/VERSION.py,sha256=JwcG-AYqf2L_n7GXU9SwecibZKg0_YS9sU8XEkXOMb0,113
|
4
4
|
hiddifypanel/__init__.py,sha256=aLukp3ORszdcH4G9J-MlxhjHN6yFlOuOE6mm-L3aG_g,266
|
5
5
|
hiddifypanel/__main__.py,sha256=IVchnXpK6bm8T3N--mN17HBQNLMeLAjyP7iwzULexB4,218
|
6
6
|
hiddifypanel/auth.py,sha256=5GUwwKCRY90RS0WTKPfqzuOYuLuwGLpNLpnKmubf7DE,7405
|
@@ -75,7 +75,7 @@ hiddifypanel/panel/admin/DomainAdmin.py,sha256=n6vNX58Bc7LxYwkXcAIOKf8GZuES3-AgW
|
|
75
75
|
hiddifypanel/panel/admin/NodeAdmin.py,sha256=QAHQjF7e7F4KqsWNWpMt7SoLANlFEborVtWQV9OXJ2E,3102
|
76
76
|
hiddifypanel/panel/admin/ProxyAdmin.py,sha256=e-tCTfsEjqjbRezhVJvFyQZHh-uluvHFZXXwc4aFRDE,5319
|
77
77
|
hiddifypanel/panel/admin/QuickSetup.py,sha256=X8d492PLQu8vNtabh-X2R2IDZVs_5pmWeyn-Qz5_qXk,7560
|
78
|
-
hiddifypanel/panel/admin/SettingAdmin.py,sha256=
|
78
|
+
hiddifypanel/panel/admin/SettingAdmin.py,sha256=U0gQoinXb0ZNVQ44Z_PudQJS7Zao1fsdAFNCDgYnbuE,19120
|
79
79
|
hiddifypanel/panel/admin/Terminal.py,sha256=fjLVLspXYHOwZGyMU_KbytWe1zf-m6KbmvBPEDps45w,1737
|
80
80
|
hiddifypanel/panel/admin/UserAdmin.py,sha256=pAiZRoDxQRjcZOUhGu5nRqglTuippeXgiGxTOf-Thv4,17145
|
81
81
|
hiddifypanel/panel/admin/__init__.py,sha256=hb0A2HuK_nBZRCNPumwahXX-25FMxODKYlNbk2ItF08,3015
|
@@ -810,7 +810,7 @@ hiddifypanel/templates/admin-layout.html,sha256=LEoZUJQNpIruNM9ET57PCy4E2RZ2BmVQ
|
|
810
810
|
hiddifypanel/templates/admin.ht.old,sha256=e9FBo9YPi7zFVidg8jS6JhOOsYdBbNPxfpTWG1dbIeg,8384
|
811
811
|
hiddifypanel/templates/donation.html,sha256=Oft3WENpSnwpbDgMw3MnhQIlQhuN_TDKm54qd4_FwIk,741
|
812
812
|
hiddifypanel/templates/error.html,sha256=Tnu3mMZ6zvFcATU6_OY1stljVPd9Djnxm3LV7Zx4zck,476
|
813
|
-
hiddifypanel/templates/fake.html,sha256=
|
813
|
+
hiddifypanel/templates/fake.html,sha256=wsZyqmASo9w0nfUVgWU6uqJjZx-YMiZmyRHXkL5ahSE,12067
|
814
814
|
hiddifypanel/templates/flaskadmin-layout.html,sha256=PkF74ld3HZ-j5_nVzVxmispnmmo3ni4WII7OXnN9VOs,7612
|
815
815
|
hiddifypanel/templates/github_issue_body.j2,sha256=6Z4QF-cOAaUxDtRQXT8H4O9SrZ3TGoxgpjnfIpGbsxo,474
|
816
816
|
hiddifypanel/templates/lte-master.html,sha256=jYhcNj8SuMOPT35OEG4e1sLWm03Vq53n4ynf3SdOWj4,1585
|
@@ -820,24 +820,24 @@ hiddifypanel/templates/redirect.html,sha256=K9x_O4P96vEkqBhOXIhoGrWw1KIqd2bL0BjI
|
|
820
820
|
hiddifypanel/templates/static.html,sha256=jp6q4wtx-k2A_cjqJoNiMS7Ee30arE45qI3ev4d5ky4,165
|
821
821
|
hiddifypanel/templates/hiddify-flask-admin/actions.html,sha256=2NeITe2e-lPKCk_o511tCIqVtrPu8LYHE1wTCtrFUrI,1331
|
822
822
|
hiddifypanel/templates/hiddify-flask-admin/list.html,sha256=MBGrTqZpzNLe4sZy0RozvXNr8seFUQc2C6v88BJtNWc,11095
|
823
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=
|
824
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=
|
825
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
826
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=
|
827
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
828
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=
|
829
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
830
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=
|
831
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=
|
832
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=
|
833
|
-
hiddifypanel/translations.i18n/en.json,sha256=
|
834
|
-
hiddifypanel/translations.i18n/fa.json,sha256=
|
835
|
-
hiddifypanel/translations.i18n/pt.json,sha256=
|
836
|
-
hiddifypanel/translations.i18n/ru.json,sha256=
|
837
|
-
hiddifypanel/translations.i18n/zh.json,sha256=
|
838
|
-
hiddifypanel-10.20.
|
839
|
-
hiddifypanel-10.20.
|
840
|
-
hiddifypanel-10.20.
|
841
|
-
hiddifypanel-10.20.
|
842
|
-
hiddifypanel-10.20.
|
843
|
-
hiddifypanel-10.20.
|
823
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=tHp0sFfOsNXw6RNjZnLpCyc_A0q6EYmtByGaCkvcsRY,74693
|
824
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=v6PlLU1eIxR_h5cYw4pBPv9L7iZxw6Wdv0S4g1eTvjU,77879
|
825
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=HLaQ3qXNSTxMgF3W4wAqhOscILImnLvvOi_MtsjcIJY,96482
|
826
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=PMC66aQd9rokd1oWeBe5l5VssaEC288-jlXyzA3HxLg,101121
|
827
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=VMQNpZ23_-Xui8kE2FGOXL-gn2PCeE6O0BAmJFD8ZHc,60612
|
828
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=Qbrt9R8Tcrw5BAVTwJBmxqcxe3yhSn0JkZXa05L_inU,69927
|
829
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=dXr3Sc9GFB6MpmvovU8DMmCprjAjhL1YKTHY_z5mX4w,95543
|
830
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=fGsvedAEIZDbVaHPt4oL-KmfuM_rm1neeThVjud1Zsk,102065
|
831
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=_426sp5py_wQAdi2G_QbYvamjdAGl63-KAcJlB1fjiI,60878
|
832
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=xug8Baflp7o2JGSWqFk0bztqhv6SYGT9jFQcMuMPwDY,69098
|
833
|
+
hiddifypanel/translations.i18n/en.json,sha256=G7WBuSM8YUhaaoMgeFg87C5WNbPajna_ERxfpi9QlPs,67845
|
834
|
+
hiddifypanel/translations.i18n/fa.json,sha256=Vn1QdRtRCWTpEzvaZD9KahTmuxKX-UAJe_NgQaIuL2g,91087
|
835
|
+
hiddifypanel/translations.i18n/pt.json,sha256=oKPEk8FEtsSdQyas1VNf6R_AhCXdspIpPws_VdmDUX8,60214
|
836
|
+
hiddifypanel/translations.i18n/ru.json,sha256=mIS8ADcBgUfO4B3XSAlMTg2RkWIJdxk1b_vpkt3USGI,92031
|
837
|
+
hiddifypanel/translations.i18n/zh.json,sha256=VJOeR3-PrlCTks3kqMiAYH5FFq1GWUW5251Ulqx1Hww,59631
|
838
|
+
hiddifypanel-10.20.2.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
|
839
|
+
hiddifypanel-10.20.2.dist-info/METADATA,sha256=W65SUgp-0DIU0FMtuHwdIL7zoC9-L2sMaQJ3ASYQO0k,4009
|
840
|
+
hiddifypanel-10.20.2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
841
|
+
hiddifypanel-10.20.2.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
|
842
|
+
hiddifypanel-10.20.2.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
|
843
|
+
hiddifypanel-10.20.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|