hiddifypanel 10.80.2__py3-none-any.whl → 10.80.3__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/commercial/restapi/v2/user/apps_api.py +24 -48
- hiddifypanel/panel/user/templates/base_singbox_config.json.j2 +6 -0
- hiddifypanel/static/apps-icon/hiddify_next.ico +0 -0
- hiddifypanel/static/apps-icon/hiddifyng.ico +0 -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 +3 -0
- hiddifypanel/translations.i18n/fa.json +3 -0
- hiddifypanel/translations.i18n/pt.json +3 -0
- hiddifypanel/translations.i18n/ru.json +3 -0
- hiddifypanel/translations.i18n/zh.json +3 -0
- {hiddifypanel-10.80.2.dist-info → hiddifypanel-10.80.3.dist-info}/METADATA +1 -1
- {hiddifypanel-10.80.2.dist-info → hiddifypanel-10.80.3.dist-info}/RECORD +26 -26
- {hiddifypanel-10.80.2.dist-info → hiddifypanel-10.80.3.dist-info}/LICENSE.md +0 -0
- {hiddifypanel-10.80.2.dist-info → hiddifypanel-10.80.3.dist-info}/WHEEL +0 -0
- {hiddifypanel-10.80.2.dist-info → hiddifypanel-10.80.3.dist-info}/entry_points.txt +0 -0
hiddifypanel/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
10.80.
|
1
|
+
10.80.3
|
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-
|
5
|
+
__release_time__= datetime.strptime('2024-12-15T19:01:27','%Y-%m-%dT%H:%M:%S')
|
6
6
|
is_released_version=True
|
@@ -109,16 +109,17 @@ class AppAPI(MethodView):
|
|
109
109
|
case Platform.android:
|
110
110
|
hiddify_next_dto = self.__get_hiddify_next_app_dto()
|
111
111
|
singbox_dto = self.__get_singbox_app_dto()
|
112
|
-
hiddifyng_dto = self.__get_hiddifyng_app_dto()
|
112
|
+
# hiddifyng_dto = self.__get_hiddifyng_app_dto()
|
113
113
|
v2rayng_dto = self.__get_v2rayng_app_dto()
|
114
|
-
hiddify_clash_android_dto = self.__get_hiddify_clash_android_app_dto()
|
114
|
+
# hiddify_clash_android_dto = self.__get_hiddify_clash_android_app_dto()
|
115
115
|
nekobox_dto = self.__get_nekobox_app_dto()
|
116
|
-
apps_data += ([hiddify_next_dto, singbox_dto, v2rayng_dto, nekobox_dto
|
116
|
+
apps_data += ([hiddify_next_dto, singbox_dto, v2rayng_dto, nekobox_dto])
|
117
117
|
case Platform.windows:
|
118
118
|
hiddify_next_dto = self.__get_hiddify_next_app_dto()
|
119
|
-
hiddify_clash_dto = self.__get_hiddify_clash_desktop_app_dto()
|
120
|
-
hiddifyn_dto = self.__get_hiddifyn_app_dto()
|
121
|
-
|
119
|
+
# hiddify_clash_dto = self.__get_hiddify_clash_desktop_app_dto()
|
120
|
+
# hiddifyn_dto = self.__get_hiddifyn_app_dto()
|
121
|
+
v2rayn_dto = self.__get_v2rayn_app_dto()
|
122
|
+
apps_data += ([hiddify_next_dto, v2rayn_dto])
|
122
123
|
case Platform.ios:
|
123
124
|
hiddify_next_dto = self.__get_hiddify_next_app_dto()
|
124
125
|
singbox_dto = self.__get_singbox_app_dto()
|
@@ -130,13 +131,13 @@ class AppAPI(MethodView):
|
|
130
131
|
apps_data += ([hiddify_next_dto, singbox_dto, streisand_dto, stash_dto, shadowrocket_dto, foxray_dto, loon_dto])
|
131
132
|
case Platform.linux:
|
132
133
|
hiddify_next_dto = self.__get_hiddify_next_app_dto()
|
133
|
-
hiddify_clash_dto = self.__get_hiddify_clash_desktop_app_dto()
|
134
|
-
apps_data += ([hiddify_next_dto
|
134
|
+
# hiddify_clash_dto = self.__get_hiddify_clash_desktop_app_dto()
|
135
|
+
apps_data += ([hiddify_next_dto])
|
135
136
|
case Platform.mac:
|
136
|
-
singbox_dto = self.__get_singbox_app_dto()
|
137
|
-
hiddify_clash_dto = self.__get_hiddify_clash_desktop_app_dto()
|
138
137
|
hiddify_next_dto = self.__get_hiddify_next_app_dto()
|
139
|
-
|
138
|
+
singbox_dto = self.__get_singbox_app_dto()
|
139
|
+
# hiddify_clash_dto = self.__get_hiddify_clash_desktop_app_dto()
|
140
|
+
apps_data += ([hiddify_next_dto, singbox_dto])
|
140
141
|
|
141
142
|
return apps_data
|
142
143
|
|
@@ -156,22 +157,22 @@ class AppAPI(MethodView):
|
|
156
157
|
return None
|
157
158
|
|
158
159
|
def __get_all_apps_dto(self):
|
159
|
-
|
160
|
+
v2rayn_app_dto = self.__get_v2rayn_app_dto()
|
160
161
|
v2rayng_app_dto = self.__get_v2rayng_app_dto()
|
161
|
-
hiddifyng_app_dto = self.__get_hiddifyng_app_dto()
|
162
|
-
hiddify_android_app_dto = self.__get_hiddify_clash_android_app_dto()
|
162
|
+
# hiddifyng_app_dto = self.__get_hiddifyng_app_dto()
|
163
|
+
# hiddify_android_app_dto = self.__get_hiddify_clash_android_app_dto()
|
163
164
|
foxray_app_dto = self.__get_foxray_app_dto()
|
164
165
|
shadowrocket_app_dto = self.__get_shadowrocket_app_dto()
|
165
166
|
streisand_app_dto = self.__get_streisand_app_dto()
|
166
167
|
loon_app_dto = self.__get_loon_app_dto()
|
167
168
|
stash_app_dto = self.__get_stash_app_dto()
|
168
|
-
hiddify_clash_app_dto = self.__get_hiddify_clash_desktop_app_dto()
|
169
|
+
# hiddify_clash_app_dto = self.__get_hiddify_clash_desktop_app_dto()
|
169
170
|
singbox_app_dto = self.__get_singbox_app_dto()
|
170
171
|
hiddify_next_app_dto = self.__get_hiddify_next_app_dto()
|
171
172
|
return [
|
172
|
-
|
173
|
+
v2rayn_app_dto, v2rayng_app_dto,
|
173
174
|
foxray_app_dto, shadowrocket_app_dto, streisand_app_dto,
|
174
|
-
loon_app_dto, stash_app_dto,
|
175
|
+
loon_app_dto, stash_app_dto, singbox_app_dto, hiddify_next_app_dto
|
175
176
|
]
|
176
177
|
|
177
178
|
def __get_app_icon_url(self, app_name):
|
@@ -213,15 +214,15 @@ class AppAPI(MethodView):
|
|
213
214
|
install_dto.url = url
|
214
215
|
return install_dto
|
215
216
|
|
216
|
-
def
|
217
|
+
def __get_v2rayn_app_dto(self):
|
217
218
|
dto = AppSchema()
|
218
|
-
dto.title = _('app.
|
219
|
-
dto.description = _('app.
|
220
|
-
dto.icon_url = self.__get_app_icon_url(_('app.
|
219
|
+
dto.title = _('app.v2rayng.title')
|
220
|
+
dto.description = _('app.v2rayng.description')
|
221
|
+
dto.icon_url = self.__get_app_icon_url(_('app.v2rayn.title'))
|
221
222
|
dto.guide_url = 'https://www.youtube.com/watch?v=o9L2sI2T53Q'
|
222
|
-
dto.deeplink = f'
|
223
|
+
dto.deeplink = f'v2rayn://install-sub/?url={self.user_panel_encoded_url}'
|
223
224
|
|
224
|
-
ins_url = f'
|
225
|
+
ins_url = f'https://github.com/2dust/v2rayN/releases/latest/download/v2rayN-windows-64-SelfContained-With-Core.7z'
|
225
226
|
dto.install = [self.__get_app_install_dto(AppInstallType.portable, ins_url)]
|
226
227
|
return dto
|
227
228
|
|
@@ -253,31 +254,6 @@ class AppAPI(MethodView):
|
|
253
254
|
dto.install = [self.__get_app_install_dto(AppInstallType.apk, github_ins_url), self.__get_app_install_dto(AppInstallType.google_play, google_play_ins_url)]
|
254
255
|
return dto
|
255
256
|
|
256
|
-
def __get_hiddifyng_app_dto(self):
|
257
|
-
dto = AppSchema()
|
258
|
-
dto.title = _('app.hiddifyng.title')
|
259
|
-
dto.description = _('app.hiddifyng.description')
|
260
|
-
dto.icon_url = self.__get_app_icon_url(_('app.hiddifyng.title'))
|
261
|
-
dto.guide_url = 'https://www.youtube.com/watch?v=qDbI72J-INM'
|
262
|
-
dto.deeplink = f'hiddify://install-sub/?url={self.user_panel_encoded_url}'
|
263
|
-
|
264
|
-
latest_url, version = get_latest_release_url(f'{self.hiddify_github_repo}/HiddifyNG/')
|
265
|
-
github_ins_url = latest_url.split('releases/')[0] + f'releases/download/{version}/HiddifyNG.apk'
|
266
|
-
google_play_ins_url = 'https://play.google.com/store/apps/details?id=ang.hiddify.com'
|
267
|
-
dto.install = [self.__get_app_install_dto(AppInstallType.apk, github_ins_url), self.__get_app_install_dto(AppInstallType.google_play, google_play_ins_url)]
|
268
|
-
return dto
|
269
|
-
|
270
|
-
def __get_hiddify_clash_android_app_dto(self):
|
271
|
-
dto = AppSchema()
|
272
|
-
dto.title = _('app.hiddify-clash-android.title')
|
273
|
-
dto.description = _('app.hiddify-clash-android.description')
|
274
|
-
dto.icon_url = self.__get_app_icon_url(_('app.hiddify-clash-android.title'))
|
275
|
-
dto.guide_url = 'https://www.youtube.com/watch?v=mUTfYd1_UCM'
|
276
|
-
dto.deeplink = f'clash://install-config/?url={self.user_panel_encoded_url}'
|
277
|
-
latest_url, version = get_latest_release_url(f'{self.hiddify_github_repo}/HiddifyClashAndroid/')
|
278
|
-
ins_url = latest_url.split('releases/')[0] + f'releases/download/{version}/hiddify-{version}-meta-alpha-universal-release.apk'
|
279
|
-
dto.install = [self.__get_app_install_dto(AppInstallType.apk, ins_url),]
|
280
|
-
return dto
|
281
257
|
|
282
258
|
def __get_foxray_app_dto(self):
|
283
259
|
dto = AppSchema()
|
@@ -1,4 +1,5 @@
|
|
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
|
+
{% set V1_9= g.user_agent['is_singbox'] and g.user_agent['singbox_version'][0]==1 and g.user_agent['singbox_version'][1]<10 %}
|
2
3
|
{
|
3
4
|
"outbounds": [
|
4
5
|
{
|
@@ -218,12 +219,17 @@
|
|
218
219
|
"tag": "dns-in",
|
219
220
|
"type": "direct"
|
220
221
|
},
|
222
|
+
|
221
223
|
{
|
222
224
|
"type": "tun",
|
223
225
|
"tag": "tun-in",
|
224
226
|
"domain_strategy": "prefer_ipv4",
|
225
227
|
"interface_name": "tun0",
|
228
|
+
{% if V1_9 %}
|
226
229
|
"inet4_address": "172.19.0.1\/30",
|
230
|
+
{%else%}
|
231
|
+
"address": ["172.19.0.1\/30"],
|
232
|
+
{%endif%}
|
227
233
|
"mtu": 9000,
|
228
234
|
"auto_route": true,
|
229
235
|
"strict_route": true,
|
Binary file
|
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=otYokz9_k5tfNEGOMR2JrqysQUgC7IbLhZfgh1g9m7U,8
|
3
|
+
hiddifypanel/VERSION.py,sha256=uZFto86gnVRDGd7LC-Cv9atKXvHiasNfOWyEvE7Rdjo,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
|
@@ -163,7 +163,7 @@ hiddifypanel/panel/commercial/restapi/v2/parent/status_api.py,sha256=Gyaf4IUjkMg
|
|
163
163
|
hiddifypanel/panel/commercial/restapi/v2/parent/sync_api.py,sha256=K0uekG7KA6QmnAp6OSl4-2Mv58SXBwDi_Qn5MjCH5yM,2624
|
164
164
|
hiddifypanel/panel/commercial/restapi/v2/parent/usage_api.py,sha256=FOvb6nFuWcucTEtZPwhINpbZQDdprgk4orpwwi02jK4,2373
|
165
165
|
hiddifypanel/panel/commercial/restapi/v2/user/__init__.py,sha256=sIV_lVcH0ImNyvhU-4vFyQavh-Pt5MJnZVK22JUd-lo,1233
|
166
|
-
hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py,sha256=
|
166
|
+
hiddifypanel/panel/commercial/restapi/v2/user/apps_api.py,sha256=C9FIcCjHNztry6hP1_pd1zeHWegGMVVu-rHRbRV6gGY,22850
|
167
167
|
hiddifypanel/panel/commercial/restapi/v2/user/configs_api.py,sha256=-2zZSDHt5rRVT7rMBgpRRZafxTUKAV9wzkt-VAlFsK8,5704
|
168
168
|
hiddifypanel/panel/commercial/restapi/v2/user/info_api.py,sha256=Ou-3TjwLqYYECIttjSU9rpjmfjDFbgHj2_gGnwmHj5E,3918
|
169
169
|
hiddifypanel/panel/commercial/restapi/v2/user/mtproxies.py,sha256=wK6zMOw2OTVxeMkzZGVah34GYDMJa8Keq5z7jGKfFys,1676
|
@@ -197,7 +197,7 @@ hiddifypanel/panel/user/__init__.py,sha256=E9RxA2YGc0eXLGjfJbyryeLG3bXEWJ3DoVOyI
|
|
197
197
|
hiddifypanel/panel/user/link_maker.html,sha256=g420NAm_fUI8asYjyfCiXyUOIwEQfDPonZA9xh3p0-8,177
|
198
198
|
hiddifypanel/panel/user/templates/all_configs copy.txt,sha256=u5jhAgjhH07_0csdIisuXy2HNCC9SWlP0whBAGFXA78,564
|
199
199
|
hiddifypanel/panel/user/templates/all_configs.txt,sha256=i8I6g9ujOr3RIuRoGRqY2Q75I89mbHko_JVPvQt4E_g,1260
|
200
|
-
hiddifypanel/panel/user/templates/base_singbox_config.json.j2,sha256=
|
200
|
+
hiddifypanel/panel/user/templates/base_singbox_config.json.j2,sha256=j_aUAsqHGGm35jedK0Y_k8dYulNYLyNA3S-0Kbf3bx8,7977
|
201
201
|
hiddifypanel/panel/user/templates/base_xray_config.json.j2,sha256=rfe86qX0qzO6mQOyAobCaDwiOL0yeMKPhvwQEwUf5j0,2491
|
202
202
|
hiddifypanel/panel/user/templates/clash_config copy.yml,sha256=j_IWrvoAvCUPYULXlegDHmBobev5MObZkqeUoTPHGTc,7641
|
203
203
|
hiddifypanel/panel/user/templates/clash_config.yml,sha256=MwdPGIkwS4TkitO0c6f7bIvxh6rL7QMF84DfbxUJjPs,5169
|
@@ -231,9 +231,9 @@ hiddifypanel/static/a.txt,sha256=zhVsuRCoCxgmASQJL80X4VLr7Xy_T-PXs50mVre0IKk,154
|
|
231
231
|
hiddifypanel/static/apps-icon/foxray.ico,sha256=EoudrtNVW9S18kbzNPYFc5iF3bLh3MZWivGeAV7ts9I,8243
|
232
232
|
hiddifypanel/static/apps-icon/hiddify_android.ico,sha256=eco2sCrLUMM9vDJNNsH7VIFbvsAJayCNcO0y6S82uIE,34179
|
233
233
|
hiddifypanel/static/apps-icon/hiddify_clash.ico,sha256=Lq-XqNRd5QQANwv4y7orXB3v5KERJpF8auNWB2do2CA,37408
|
234
|
-
hiddifypanel/static/apps-icon/hiddify_next.ico,sha256=
|
234
|
+
hiddifypanel/static/apps-icon/hiddify_next.ico,sha256=OUJVibXPfDd6iWwuN7iEC3uou5NkkUqwqHSZXtQplJU,4100
|
235
235
|
hiddifypanel/static/apps-icon/hiddifyn.ico,sha256=nTJviYfHfKKF_xEF-Momvb3u1Dcsgrh3Elza1-PEU0M,2372
|
236
|
-
hiddifypanel/static/apps-icon/hiddifyng.ico,sha256=
|
236
|
+
hiddifypanel/static/apps-icon/hiddifyng.ico,sha256=xFCbu3SNYHsnj3fJKeKcWjtwRcnEBGsAdQ1AAgE8p-8,850
|
237
237
|
hiddifypanel/static/apps-icon/loon.ico,sha256=vyyNOvHu-reziBacSCspo6ymBeqTLy6A0Ds9XhYWc9M,4413
|
238
238
|
hiddifypanel/static/apps-icon/nekobox.ico,sha256=9UiWzKmLjMWMcoQqa7MZeYHxsb_W1YlpUdoCOaBk-3A,32500
|
239
239
|
hiddifypanel/static/apps-icon/shadowrocket.ico,sha256=q2KldeWa2TGo9alO6xIBHv9XTSdAaJai_XOF_NpNMXo,23251
|
@@ -839,25 +839,25 @@ 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=
|
843
|
-
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=
|
844
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=
|
845
|
-
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=
|
846
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=
|
847
|
-
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=
|
848
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=
|
849
|
-
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=
|
850
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=
|
851
|
-
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=
|
852
|
-
hiddifypanel/translations.i18n/en.json,sha256=
|
853
|
-
hiddifypanel/translations.i18n/fa.json,sha256=
|
842
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.mo,sha256=62pvkDLQmW9qxzv6L1GvHdF11i-GK_cTTirDX2RRTNA,79680
|
843
|
+
hiddifypanel/translations/en/LC_MESSAGES/messages.po,sha256=DRV3OLqMkG1WSGQgyZHrpDVmYvOck5OLLEJur8lpZjw,82971
|
844
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.mo,sha256=TafLLBWi3fB45asc1OKIalB0zkO-FeshGD9i54ypHYc,102747
|
845
|
+
hiddifypanel/translations/fa/LC_MESSAGES/messages.po,sha256=TteGar_N0WNGUemYVicMz-biNSO_p1wQ-e_UyXXUdbg,107280
|
846
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.mo,sha256=1bUz8RKG0RqegzLrAjQPLlCw86eH90oMhqyXgaQkK2o,80756
|
847
|
+
hiddifypanel/translations/pt/LC_MESSAGES/messages.po,sha256=UI9lTPeaL4RARHfKWhZPHgPgUxKDAH8Eto0Iii1GgUA,85090
|
848
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.mo,sha256=OjaHMWpRoR3IT3XYraVzVG9GmhsCyLD_b85CGV44Oek,108592
|
849
|
+
hiddifypanel/translations/ru/LC_MESSAGES/messages.po,sha256=84gTk2DNyYEsOa0VXsEHRHuXYXBLyNcr6LqlLtP_ynk,113140
|
850
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.mo,sha256=R45h-LPzvsgqJ9igHKod4pHEpEyobCXQgUUjEQqkWnk,75255
|
851
|
+
hiddifypanel/translations/zh/LC_MESSAGES/messages.po,sha256=pBX06JzPGw845GnLLBHr-zKCR8xQ3p6AEuiwouuUjX8,79200
|
852
|
+
hiddifypanel/translations.i18n/en.json,sha256=tamXBdBF1GRAfhDtHQffs2ryWRtKghxxE6U5Yifv5PU,72133
|
853
|
+
hiddifypanel/translations.i18n/fa.json,sha256=jaPGN_Qi73vrcIA_GHj5yS2NtMA1V8diWCMvDQQ6_7A,96442
|
854
854
|
hiddifypanel/translations.i18n/fr.json,sha256=3D_JxOMxuQrdDCTTvsah5VXxvYcPcZFzBzeHqQZwRuI,80842
|
855
855
|
hiddifypanel/translations.i18n/my.json,sha256=UHXP_EuyX9f5mEAtcxp_40TgGykXs_ap9yp7QcsVQ88,136285
|
856
|
-
hiddifypanel/translations.i18n/pt.json,sha256=
|
857
|
-
hiddifypanel/translations.i18n/ru.json,sha256=
|
858
|
-
hiddifypanel/translations.i18n/zh.json,sha256=
|
859
|
-
hiddifypanel-10.80.
|
860
|
-
hiddifypanel-10.80.
|
861
|
-
hiddifypanel-10.80.
|
862
|
-
hiddifypanel-10.80.
|
863
|
-
hiddifypanel-10.80.
|
856
|
+
hiddifypanel/translations.i18n/pt.json,sha256=FsX-VX2elOiWPwAEFjaZReGGxVjO8pTYvwZFqeIEGOI,74366
|
857
|
+
hiddifypanel/translations.i18n/ru.json,sha256=yv__kNfwBHGtiqs0he489EFVbIQ73CTnL23nYkdvi_U,102194
|
858
|
+
hiddifypanel/translations.i18n/zh.json,sha256=OIosvQrja0F75xrPi9U9FsDDQFugOgKI9wNufQEr5vE,68899
|
859
|
+
hiddifypanel-10.80.3.dist-info/LICENSE.md,sha256=oDrt-cUsyiDGnRPjEJh-3dH2ddAuK_bIVBD8ntkOtZw,19807
|
860
|
+
hiddifypanel-10.80.3.dist-info/METADATA,sha256=mrGD_r6321NuMbG1QR4bm47zJu5MMDmfD4Wp5l6k7IQ,3957
|
861
|
+
hiddifypanel-10.80.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
862
|
+
hiddifypanel-10.80.3.dist-info/entry_points.txt,sha256=fiVgmdZ7nff9Ow1XnyMFrn1y4akk9gwnDkxpN8P3Xrw,59
|
863
|
+
hiddifypanel-10.80.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|