added support for special headers and displaying their information on the main page

This commit is contained in:
coolcoala
2025-07-15 03:07:42 +03:00
parent c090ae3b11
commit 6f1d9ba1b4
6 changed files with 122 additions and 8 deletions

View File

@@ -181,6 +181,7 @@ interface IClashInfo {
}
interface IProfileItem {
currentProfile: any;
uid: string;
type?: "local" | "remote" | "merge" | "script";
name?: string;
@@ -200,6 +201,8 @@ interface IProfileItem {
};
option?: IProfileOption;
home?: string;
support_url?: string;
announce?: string;
}
interface IProfileOption {