mirror of
https://gh.catmak.name/https://github.com/mihomo-party-org/mihomo-party
synced 2025-12-27 05:00:30 +08:00
1.2.0
This commit is contained in:
parent
419fec23b7
commit
a5b7ed2378
@ -6,3 +6,8 @@
|
|||||||
|
|
||||||
- YAML覆写功能支持对数组进行覆盖/前置/追加操作
|
- YAML覆写功能支持对数组进行覆盖/前置/追加操作
|
||||||
- 缓存代理组图标
|
- 缓存代理组图标
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- 修复provider过期时间解析错误
|
||||||
|
- 修复订阅名称解析错误
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mihomo-party",
|
"name": "mihomo-party",
|
||||||
"version": "1.1.2",
|
"version": "1.2.0",
|
||||||
"description": "Mihomo Party",
|
"description": "Mihomo Party",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
"author": "mihomo-party",
|
"author": "mihomo-party",
|
||||||
|
|||||||
@ -98,7 +98,9 @@ const ProxyProvider: React.FC = () => {
|
|||||||
>
|
>
|
||||||
{provider.subscriptionInfo && (
|
{provider.subscriptionInfo && (
|
||||||
<div className="h-[32px] leading-[32px] text-default-500">
|
<div className="h-[32px] leading-[32px] text-default-500">
|
||||||
{dayjs.unix(provider.subscriptionInfo.Expire).format('YYYY-MM-DD')}
|
{provider.subscriptionInfo.Expire
|
||||||
|
? dayjs.unix(provider.subscriptionInfo.Expire).format('YYYY-MM-DD')
|
||||||
|
: '长期有效'}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</SettingItem>
|
</SettingItem>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user