hiddifypanel 10.85.0b18__py3-none-any.whl → 10.85.0b19__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.85.0b18
1
+ 10.85.0b19
hiddifypanel/VERSION.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # import importlib.metadata
2
2
  from datetime import datetime
3
3
 
4
- __version__ = '10.85.0b18'
5
- __release_time__= datetime.strptime('2025-06-29T01:24:30','%Y-%m-%dT%H:%M:%S')
4
+ __version__ = '10.85.0b19'
5
+ __release_time__= datetime.strptime('2025-07-01T23:50:17','%Y-%m-%dT%H:%M:%S')
6
6
  is_released_version=True
hiddifypanel/database.py CHANGED
@@ -78,7 +78,7 @@ def init_app(app):
78
78
 
79
79
 
80
80
 
81
- def db_execute(query: str, return_val: bool = False, commit: bool = False, **params: dict):
81
+ def db_execute(query: str, return_val: bool = False, commit: bool = False, **params):
82
82
  # print(params)
83
83
  q = db.session.execute(text(query), params)
84
84
  if commit:
@@ -92,7 +92,7 @@ def to_link(proxy: dict) -> str | dict:
92
92
  if proxy['proto'] == 'hysteria2':
93
93
  baseurl = f'hysteria2://{proxy["uuid"]}@{proxy["server"]}:{proxy["port"]}?hiddify=1&obfs=salamander&obfs-password={proxy["hysteria_obfs_password"]}&sni={proxy["sni"]}'
94
94
  if proxy['mode'] == 'Fake' or proxy['allow_insecure']:
95
- baseurl += "&insecure=1"
95
+ baseurl += "&insecure=1&allow_insecure=1"
96
96
  return f"{baseurl}#{name_link}"
97
97
  if proxy['proto'] == ProxyProto.wireguard:
98
98
  if g.user_agent.get('is_streisand'):
@@ -290,11 +290,20 @@ def add_tcp_stream(ss: dict, proxy: dict):
290
290
  'header': {
291
291
  'type': 'http',
292
292
  'request': {
293
- 'path': [proxy['path']]
293
+ 'path': [proxy['path']],
294
+ 'method': 'GET',
295
+ "headers": {
296
+ "Host": proxy.get('host'),
297
+ "User-Agent": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.122 Mobile Safari/537.36",
298
+ "Accept-Encoding": "gzip, deflate",
299
+ "Connection": "keep-alive",
300
+ "Pragma": "no-cache"
301
+ },
302
+
294
303
  }
295
304
  }
296
- # 'acceptProxyProtocol': False
297
305
  }
306
+ # ss['tcpSettings']['header']['request']['headers']
298
307
  else:
299
308
  ss['tcpSettings'] = {
300
309
  'header': {
@@ -17,52 +17,46 @@ from loguru import logger
17
17
  MAX_DB_VERSION = 120
18
18
 
19
19
 
20
- def _v102(child_id):
20
+ def _v103(child_id):
21
21
 
22
22
  add_usage_proc= """
23
23
  DROP PROCEDURE IF EXISTS add_usage_json;
24
24
 
25
- CREATE PROCEDURE add_usage_json(IN usage_data JSON)
25
+ CREATE PROCEDURE add_usage_json(IN usage_data JSON, IN cur_time DATETIME)
26
26
  BEGIN
27
27
  DECLARE u_id INT DEFAULT NULL;
28
28
  DECLARE u_uuid CHAR(36) DEFAULT NULL;
29
29
  DECLARE u_usage BIGINT;
30
30
  DECLARE done BOOL DEFAULT FALSE;
31
+ DECLARE cur_date DATE;
32
+
31
33
 
32
34
  DECLARE cur CURSOR FOR
33
- SELECT jt.id, jt.uuid, jt.usage FROM JSON_TABLE(
35
+ SELECT jt.uuid, jt.usage FROM JSON_TABLE(
34
36
  usage_data,
35
37
  '$[*]' COLUMNS (
36
- id INT PATH '$.id' NULL ON ERROR,
37
- uuid CHAR(36) PATH '$.uuid' NULL ON ERROR,
38
+ uuid CHAR(36) PATH '$.uuid',
38
39
  `usage` BIGINT PATH '$.usage'
39
40
  )
40
41
  ) AS jt;
41
42
 
42
43
  DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
43
-
44
+ SET cur_date = DATE(cur_time);
44
45
  OPEN cur;
45
46
 
46
47
  read_loop: LOOP
47
- FETCH cur INTO u_id, u_uuid, u_usage;
48
+ FETCH cur INTO u_uuid, u_usage;
48
49
  IF done THEN
49
50
  LEAVE read_loop;
50
51
  END IF;
51
52
 
52
- IF u_id IS NOT NULL THEN
53
- UPDATE user
54
- SET current_usage = current_usage + u_usage,
55
- last_online = NOW(),
56
- start_date = CASE WHEN start_date IS NULL THEN CURDATE() ELSE start_date END
57
- WHERE id = u_id;
58
- ELSEIF u_uuid IS NOT NULL THEN
59
- UPDATE user
60
- SET current_usage = current_usage + u_usage,
61
- last_online = NOW(),
62
- start_date = CASE WHEN start_date IS NULL THEN CURDATE() ELSE start_date END
63
-
64
- WHERE uuid = u_uuid;
65
- END IF;
53
+
54
+ UPDATE `user`
55
+ SET current_usage = current_usage + u_usage,
56
+ last_online = cur_time,
57
+ start_date = CASE WHEN start_date IS NULL THEN cur_date ELSE start_date END
58
+ WHERE uuid = u_uuid;
59
+
66
60
 
67
61
  COMMIT;
68
62
  END LOOP;
@@ -866,8 +860,8 @@ def upgrade_database():
866
860
 
867
861
  def init_db():
868
862
  # set_hconfig(ConfigEnum.db_version, 71)
869
- db_version = current_db_version()
870
863
  # set_hconfig(ConfigEnum.db_version,101)
864
+ db_version = current_db_version()
871
865
  if db_version == latest_db_version():
872
866
  return
873
867
 
@@ -104,7 +104,8 @@ def add_users_usage_new(usages: list[dict], child_id, sync=False):
104
104
  before_enabled_users = user_driver.get_enabled_users()
105
105
 
106
106
  daily_usage = {}
107
- today = datetime.date.today()
107
+ cur_time=datetime.datetime.now()
108
+ today = cur_time.date()
108
109
  db_changes = False
109
110
  for adm in db.session.query(AdminUser).all():
110
111
  daily_usage[adm.id] = db.session.query(DailyUsage).filter(DailyUsage.date == today, DailyUsage.admin_id == adm.id, DailyUsage.child_id == child_id).first()
@@ -118,8 +119,8 @@ def add_users_usage_new(usages: list[dict], child_id, sync=False):
118
119
  db.session.commit()
119
120
 
120
121
  apply_changes = _reset_priodic_usage()
121
-
122
- db_execute("CALL add_usage_json(:usage_data)", usage_data=json.dumps(usages), commit=True)
122
+
123
+ db_execute("CALL add_usage_json(:usage_data,:cur_time)", usage_data=json.dumps(usages),cur_time=cur_time.strftime('%Y-%m-%d %H:%M:%S'), commit=True)
123
124
 
124
125
  usage_map = {u['uuid']: u for u in usages}
125
126
 
@@ -161,7 +162,7 @@ def add_users_usage_new(usages: list[dict], child_id, sync=False):
161
162
  if apply_changes:
162
163
  hiddify.quick_apply_users()
163
164
 
164
- return {"status": 'success', "comments": usages, "date": hutils.convert.time_to_json(datetime.datetime.now())}
165
+ return {"status": 'success', "comments": usages, "date": hutils.convert.time_to_json(cur_time)}
165
166
 
166
167
 
167
168
  # def _add_users_usage(users_usage_data: Dict[User, Dict], child_id, sync=False):
@@ -1,5 +1,6 @@
1
1
  {% set V1_7= g.user_agent['is_singbox'] and g.user_agent['singbox_version'][0]==1 and g.user_agent['singbox_version'][1]<8 %}
2
2
  {% set V1_9= g.user_agent['is_singbox'] and g.user_agent['singbox_version'][0]==1 and g.user_agent['singbox_version'][1]<10 %}
3
+ {% set V1_10= g.user_agent['is_singbox'] and g.user_agent['singbox_version'][0]==1 and g.user_agent['singbox_version'][1]<11 %}
3
4
 
4
5
  {
5
6
  "outbounds": [
@@ -7,10 +8,7 @@
7
8
  "tag": "direct",
8
9
  "type": "direct"
9
10
  },
10
- {
11
- "tag": "bypass",
12
- "type": "direct"
13
- },
11
+ {% if V1_10 %}
14
12
  {
15
13
  "tag": "block",
16
14
  "type": "block"
@@ -18,6 +16,11 @@
18
16
  {
19
17
  "tag": "dns-out",
20
18
  "type": "dns"
19
+ },
20
+ {%endif%}
21
+ {
22
+ "tag": "bypass",
23
+ "type": "direct"
21
24
  }
22
25
  ],
23
26
  "route": {
@@ -40,39 +43,59 @@
40
43
  "tag": "geosite-{{hconfig(ConfigEnum.country)|replace('zh', 'cn')}}",
41
44
  "type": "remote",
42
45
  "format": "binary",
43
- "url": "https:\/\/github.com\/hiddify\/hiddify-geo\/raw\/rule-set\/country\/geosite-{{hconfig(ConfigEnum.country)|replace('zh', 'cn')}}.srs",
44
- "download_detour": {% if hconfig(ConfigEnum.country)=='zh' %}"Select" {%else%}"bypass"{%endif%}
46
+ "url": "https://github.com/hiddify/hiddify-geo/raw/rule-set/country/geosite-{{hconfig(ConfigEnum.country)|replace('zh', 'cn')}}.srs",
47
+ "download_detour": "Select"
45
48
  },
46
49
  {
47
50
  "tag": "geoip-{{hconfig(ConfigEnum.country)|replace('zh', 'cn')}}",
48
51
  "type": "remote",
49
52
  "format": "binary",
50
- "url": "https:\/\/github.com\/hiddify\/hiddify-geo\/raw\/rule-set\/country\/geoip-{{hconfig(ConfigEnum.country)|replace('zh', 'cn')}}.srs",
51
- "download_detour": {% if hconfig(ConfigEnum.country)=='zh' %}"Select" {%else%}"bypass"{%endif%}
53
+ "url": "https://github.com/hiddify/hiddify-geo/raw/rule-set/country/geoip-{{hconfig(ConfigEnum.country)|replace('zh', 'cn')}}.srs",
54
+ "download_detour": "Select"
52
55
  }
53
56
  {%endif%}
54
57
  {# {
55
58
  "tag": "geosite-category-ads-all",
56
59
  "type": "remote",
57
60
  "format": "binary",
58
- "url": "https:\/\/raw.githubusercontent.com\/Chocolate4U\/Iran-sing-box-rules\/rule-set\/geosite-category-ads-all.srs",
59
- "download_detour": {% if hconfig(ConfigEnum.country)=='cn' %}"Select" {%else%}"bypass"{%endif%}
61
+ "url": "https://raw.githubusercontent.com/Chocolate4U/Iran-sing-box-rules/rule-set/geosite-category-ads-all.srs",
62
+ "download_detour": "Select"
60
63
  } #}
61
64
  ],
62
65
  {%endif%}
63
66
  "rules": [
67
+
68
+ {% if V1_10 %}
64
69
  {
65
70
  "outbound": "dns-out",
66
- "port": [
67
- 53
68
- ]
71
+ "port": [53]
69
72
  },
70
73
  {
71
- "inbound": [
72
- "dns-in"
73
- ],
74
+ "inbound": ["dns-in"],
74
75
  "outbound": "dns-out"
75
76
  },
77
+ {%else%}
78
+ {
79
+ "port": [53],
80
+ "action": "hijack-dns"
81
+ },
82
+ {
83
+ "inbound": ["dns-in"],
84
+ "action": "hijack-dns"
85
+ },
86
+ {%endif%}
87
+ {% if not V1_10 %}
88
+ {
89
+ "inbound": ["tun-in","mixed-in"],
90
+ "action": "resolve",
91
+ "strategy": "prefer_ipv4"
92
+ },
93
+ {
94
+ "inbound": ["tun-in","mixed-in"],
95
+ "action": "sniff",
96
+ "timeout": "1s"
97
+ },
98
+ {%endif%}
76
99
  {%if hconfig(ConfigEnum.country)in ["ir","zh","ru"]%}
77
100
  {
78
101
  "domain_suffix": [
@@ -88,7 +111,11 @@
88
111
  {%else%}
89
112
  "rule_set": "geosite-category-ads-all",
90
113
  {%endif%}
114
+ {% if V1_10 %}
91
115
  "outbound": "block"
116
+ {%else%}
117
+ "action": "reject"
118
+ {%endif%}
92
119
  }, #}
93
120
  {%if hconfig(ConfigEnum.country) in ["ir","zh","ru"]%}
94
121
  {% if V1_7 %}
@@ -112,7 +139,11 @@
112
139
  "port": [
113
140
  443
114
141
  ],
142
+ {% if V1_10 %}
115
143
  "outbound": "block"
144
+ {%else%}
145
+ "action": "reject"
146
+ {%endif%}
116
147
  },
117
148
  {
118
149
  "ip_cidr": [
@@ -208,7 +239,6 @@
208
239
  {
209
240
  "type": "tun",
210
241
  "tag": "tun-in",
211
- "domain_strategy": "prefer_ipv4",
212
242
  "interface_name": "tun0",
213
243
  {% if V1_9 %}
214
244
  "inet4_address": "172.19.0.1\/30",
@@ -219,9 +249,12 @@
219
249
  "auto_route": true,
220
250
  "strict_route": true,
221
251
  "stack": "system",
222
- "endpoint_independent_nat": true,
252
+ {% if V1_10 %}
223
253
  "sniff": true,
224
- "sniff_override_destination": false
254
+ "domain_strategy": "prefer_ipv4",
255
+ "sniff_override_destination": false,
256
+ {% endif %}
257
+ "endpoint_independent_nat": true
225
258
  },
226
259
  {
227
260
  "domain_strategy": "prefer_ipv4",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hiddifypanel
3
- Version: 10.85.0b18
3
+ Version: 10.85.0b19
4
4
  Summary: hiddifypanel multi proxy panel
5
5
  Author: hiddify
6
6
  License:
@@ -1,6 +1,6 @@
1
1
  hiddifypanel/Events.py,sha256=AlnRdjVul0jP-NCT4-zoaQgowoOo-JhdQB4ytetAFKA,723
2
- hiddifypanel/VERSION,sha256=42yWqwPdGHeNvFE10UahH5thQysGKaRR2DtMfiyWi8E,11
3
- hiddifypanel/VERSION.py,sha256=vP_PxEyr5tAnubf_5AuFU4g-0EE_f0H9yl1OB13S7xk,190
2
+ hiddifypanel/VERSION,sha256=j6pgdMCPRwnoGtAa_xX_8uxpZnQWq892K2G9dSnou_E,11
3
+ hiddifypanel/VERSION.py,sha256=AcYqI9b5Hz3Z024FRwSajk30dqeGw6mQdzw9il-1YH4,190
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
@@ -8,7 +8,7 @@ hiddifypanel/base.py,sha256=LwEQPv6QVLY6V9EUQ_-C_Sg0p64QRajLTauACIc4m-w,2705
8
8
  hiddifypanel/base_setup.py,sha256=W64zORy8BRukhpRXMnCb-SMejQc3bmuwtyWbanGiJ3M,2802
9
9
  hiddifypanel/cache.py,sha256=YBogDyZ0jze8IIdPi34YYcbYF4iHsZgpfpt4gZLha0Q,1527
10
10
  hiddifypanel/celery.py,sha256=VdU2QOJwerd7pkCQLeDsLpfMWpdARtF7sEEJwud0SDY,3200
11
- hiddifypanel/database.py,sha256=OkFNG9RGdtk3ZXImYjlzpVey7weu5a4Yme3Vo3qsptk,2634
11
+ hiddifypanel/database.py,sha256=TjIZqIt3bSc0ljRxcWYCQ12WwEVYlWVrAXj3KTeC1s0,2628
12
12
  hiddifypanel/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
13
  hiddifypanel/apps/asgi_app.py,sha256=Wz1rbJylXxkKthWQI5kUUXkePA8wZ37QO8g1sIbKG5o,181
14
14
  hiddifypanel/apps/celery_app.py,sha256=DWDtkbWuAVIJhStnzcTsyo3ker85gm7ZZHWm-Th7cvo,81
@@ -47,8 +47,8 @@ hiddifypanel/hutils/proxy/clash.py,sha256=V9Y2UIw-CYTXD_Q73Oeq3WLw6chsPrMIiNxYnl
47
47
  hiddifypanel/hutils/proxy/shared.py,sha256=MRfdDjfijZxJwoUA6wg9FROdf_wFp9JuJZgMo8SaLnM,22261
48
48
  hiddifypanel/hutils/proxy/singbox.py,sha256=Fmmzoake-gpnRB5yfTyQvd1dB-10WKwhJt4vhiKzJZQ,11722
49
49
  hiddifypanel/hutils/proxy/wireguard.py,sha256=gij01BYXII-RxAh3Yky0o3yce20HJKeHtu1KNwb0Uzk,934
50
- hiddifypanel/hutils/proxy/xray.py,sha256=YAfNgF0ZOM-aIk5lvl2tJSzLTNhCJjreGb4xSrsoa64,10973
51
- hiddifypanel/hutils/proxy/xrayjson.py,sha256=0Bhgj9uaXLTmUUPieg4IxERxO6vRcMkKq_YwUM6v_50,15698
50
+ hiddifypanel/hutils/proxy/xray.py,sha256=xqGGjUmSkrj6WN3azKnXiFBDXtAMGZTTowyaEjsQiQA,10990
51
+ hiddifypanel/hutils/proxy/xrayjson.py,sha256=GcqvrJzVm7utzdpZ3aWzD4iivE8Et4XP0f5Raa3C_rg,16196
52
52
  hiddifypanel/models/__init__.py,sha256=PngFjQL9WvQP4EioNHRz1tTeyIgLoNvZ7WpmAhwKHnU,677
53
53
  hiddifypanel/models/admin.py,sha256=bbvpbquyPTmRjqwVT4zVC3bIF39zZYv8snlOR5XIF90,7517
54
54
  hiddifypanel/models/base_account.py,sha256=jVO4haLwTsiE7u4fWoDhhRZ_NjbO7hVJhry8k-Vnrzk,3507
@@ -72,9 +72,9 @@ hiddifypanel/panel/common.py,sha256=pMxdgt37ubIZroFBuvHfN5qXNp8kytVTIzVxzZA_X_I,
72
72
  hiddifypanel/panel/custom_widgets.py,sha256=_zA0WZRZOCyh6Z1gW62aRQLMAOM_m85B2oZoIOU59Ys,2637
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=eBh6K35zfxrvUA7t3UrIeo704ELx7lgl4NGEqfj08WQ,40133
75
+ hiddifypanel/panel/init_db.py,sha256=UajST64K2BqqrgDEgMuZJ5VzXRB-29GpJ5Txa6EdT2s,39859
76
76
  hiddifypanel/panel/run_commander.py,sha256=cXCFVvZ6iTzab3EOZ-Eq3aOeIqfgzgt2ppNaxm_3OJI,3205
77
- hiddifypanel/panel/usage.py,sha256=j6K_3WfzKp7Fqn6AxHCgm8JeeTMrfjU5zsSLZ7bdES0,11913
77
+ hiddifypanel/panel/usage.py,sha256=kQAz9nfHt3Mcfa8kLHdrpD408DZEFDT7T1xFV6MlDQE,11991
78
78
  hiddifypanel/panel/admin/Actions.py,sha256=o_ENbphriVrbRJkx9nvrkpaliuMIfp34sscMkZJ3P5s,8578
79
79
  hiddifypanel/panel/admin/AdminstratorAdmin.py,sha256=X8MI3DtW62vJqFRp97M_CxSdB-NFNMlZOSDsd5hn8HA,10482
80
80
  hiddifypanel/panel/admin/Backup.py,sha256=BKSoAZgw1j16P1Jh9vMqGj7ZfB2m-WafDK0C5vil5FY,3634
@@ -199,7 +199,7 @@ hiddifypanel/panel/user/link_maker.html,sha256=g420NAm_fUI8asYjyfCiXyUOIwEQfDPon
199
199
  hiddifypanel/panel/user/user.py,sha256=N9R9igRp0MM2sgJhH8eLxyUflsa-NDeTFUsw3U_f8SM,16654
200
200
  hiddifypanel/panel/user/templates/all_configs copy.txt,sha256=u5jhAgjhH07_0csdIisuXy2HNCC9SWlP0whBAGFXA78,564
201
201
  hiddifypanel/panel/user/templates/all_configs.txt,sha256=i8I6g9ujOr3RIuRoGRqY2Q75I89mbHko_JVPvQt4E_g,1260
202
- hiddifypanel/panel/user/templates/base_singbox_config.json.j2,sha256=DJ92bl-nN5Y23JtN5wl6SHoxOaepqPr7t0la2xppkBg,7790
202
+ hiddifypanel/panel/user/templates/base_singbox_config.json.j2,sha256=FiDOQgBZrPq8PGVKfgFOmMOUi5-rDo_vBWaRPo3JJss,8624
203
203
  hiddifypanel/panel/user/templates/base_xray_config.json.j2,sha256=a2J0ptlOe9jO5yYI7zB-zOJ-F_wsG8zNpVB8p7vfCX4,2546
204
204
  hiddifypanel/panel/user/templates/clash_config copy.yml,sha256=j_IWrvoAvCUPYULXlegDHmBobev5MObZkqeUoTPHGTc,7641
205
205
  hiddifypanel/panel/user/templates/clash_config.yml,sha256=T_dLEJLblbZmFR7SVBXccJCrFfUd0BMYcArQtbzqEJY,6374
@@ -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=hxTdfsYd02F_QB4GtD3E--xkbUan8dD35wWYAlK8evU,80248
845
+ hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=zsLIyQWqbcCVULOO0xg3YtvPtk6gszuW-T3nG7ESVVY,80248
846
846
  hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=ZQn1-QHu0FwpHIluExU9U1p738DrpK_vBaucF1ndyvo,83564
847
- hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=MLwKIn5ZZxd--pOAppwzeQZAM_pp6P4AcsJ6JyYH4eM,102665
847
+ hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=UsAXzWqf3YSdEL4OCqIOTPtwlms3cld3_bGNen5EILI,102665
848
848
  hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=xEU_jSeWnc70mvoPJ7f0d_9lG5U-mvo3BQzcRRvB4o8,107420
849
- hiddifypanel/translations/my/LC_MESSAGES/messages.mo,sha256=KxhdYG8mCLWyjys8UaOIMSh20K0aSmy5JfajyGGfiHE,139090
849
+ hiddifypanel/translations/my/LC_MESSAGES/messages.mo,sha256=yJeVCV8viDSmsuKYDd36d_I6Nb6on4zbCkhMnlYBfgo,139090
850
850
  hiddifypanel/translations/my/LC_MESSAGES/messages.po,sha256=GcrOHDJC2wjo1L8lLmwLOs_dwoqcf0f6rXXjDv8JnsE,141985
851
- hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=QbBR_sPPS8Xn4ouGUMfJkv-DlQrEUX2tjMF9mDdS8Ns,80797
851
+ hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=1JhmpJbbJkQCuz-IxCTljyQpZ8VoklRZvFfafIQVG2w,80797
852
852
  hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=pX1dG9wcQEYRBpxU3mL-gY_q2YNkVwbRmrI6wNHjkm8,85364
853
- hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=pzCjwAHsCSJBVH3DzdaC-wkzU6kLimUhdC3g7jhdsbw,108594
853
+ hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=3GwZgmHvtpBlwplCehhvdsJqCGuQ3oweiCZ9FkCmZ0A,108594
854
854
  hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=mc8TFxwLUu8iBH8iK-aGUpQoKDRCjb2sh6fZK1w1inU,113367
855
- hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=xLvogpJ2i9pHYFWygji6BkhMsN6lzhg-EVPSLantl2s,75296
855
+ hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=6v3tBqO2EoTHIL9SgdnAEVbJZ3yiE5t9f0fB_4kzRHs,75296
856
856
  hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=ze5ipeKdB4ISOMkT0ERufBPdlWDT5m3xUj0OSeBdkpk,79474
857
857
  hiddifypanel/translations.i18n/en.json,sha256=4rDoVjPSUqs8OCh8dHf923wjHmgJNguelTN3b1EwLqA,72605
858
858
  hiddifypanel/translations.i18n/fa.json,sha256=3WMq36rLV-1E9GTVTovDlEPIoOJ5cedOBDdke-OcyXE,96515
@@ -861,9 +861,9 @@ hiddifypanel/translations.i18n/my.json,sha256=QAXg__5TCqfx3Ck0cw5YQsSXX_3kqUhMOd
861
861
  hiddifypanel/translations.i18n/pt.json,sha256=bO1-qEZJ9yf6Pz_6Vz18xDLezp3pCYwK8_aTLMJA1Iw,74570
862
862
  hiddifypanel/translations.i18n/ru.json,sha256=kCI1TBgj1T0VnvRfrgxCnLt_fA6ZuD9kjRt0vkmyvb0,102357
863
863
  hiddifypanel/translations.i18n/zh.json,sha256=A50l-_uQ4lsZwcF3UyGcyZxsR3hAjmvnMrJLnTcVZbI,69103
864
- hiddifypanel-10.85.0b18.dist-info/licenses/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
865
- hiddifypanel-10.85.0b18.dist-info/METADATA,sha256=BoCQezIp56XAUwXavdYHivZIF2MF67tDH9Aucd882i4,25628
866
- hiddifypanel-10.85.0b18.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
867
- hiddifypanel-10.85.0b18.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
868
- hiddifypanel-10.85.0b18.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
869
- hiddifypanel-10.85.0b18.dist-info/RECORD,,
864
+ hiddifypanel-10.85.0b19.dist-info/licenses/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
865
+ hiddifypanel-10.85.0b19.dist-info/METADATA,sha256=GdQ4FAs83TOtmavqGI0l7iZYm8oudap91hP6SYgfUtY,25628
866
+ hiddifypanel-10.85.0b19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
867
+ hiddifypanel-10.85.0b19.dist-info/entry_points.txt,sha256=Xzpqlh3nwBtZhoV9AANJykano056VJvYzaujxPztJaM,60
868
+ hiddifypanel-10.85.0b19.dist-info/top_level.txt,sha256=rv-b3qFWUZQTBy0kyBfsr7L6tPpeO7AaQlLHXn-HI5M,13
869
+ hiddifypanel-10.85.0b19.dist-info/RECORD,,