Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions frontend/src/global/mimetype.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,25 +169,13 @@ export const DNSTypes = [
value: 'HuaweiCloud',
},
{
label: i18n.global.t('website.volcengine'),
value: 'Volcengine',
},
{
label: 'DNSPod (' + i18n.global.t('ssl.deprecated') + ')',
value: 'DnsPod',
label: 'GoDaddy',
value: 'Godaddy',
},
{
label: 'Cloudflare',
value: 'CloudFlare',
},
{
label: 'CloudDNS',
value: 'CloudDns',
},
{
label: 'ClouDNS',
value: 'ClouDNS',
},
{
label: 'NameSilo',
value: 'NameSilo',
Expand All @@ -197,12 +185,16 @@ export const DNSTypes = [
value: 'NameCheap',
},
{
label: 'Name.com',
value: 'NameCom',
label: 'CloudDNS',
value: 'CloudDns',
},
{
label: 'GoDaddy',
value: 'Godaddy',
label: 'ClouDNS',
value: 'ClouDNS',
},
{
label: 'Name.com',
value: 'NameCom',
},
{
label: 'FreeMyIP',
Expand All @@ -216,6 +208,14 @@ export const DNSTypes = [
label: i18n.global.t('website.westCN'),
value: 'WestCN',
},
{
label: i18n.global.t('website.volcengine'),
value: 'Volcengine',
},
{
label: 'DNSPod (' + i18n.global.t('ssl.deprecated') + ')',
value: 'DnsPod',
},
];

export const Fields = [
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The provided code snippet contains several differences from what you posted earlier, likely due to changes made after that version was submitted. Here is a concise list of key discrepancies:

  1. Removed DNs Provider Options: The original file contained options for various DNS providers, including Huawei Cloud, Volcengine, DNSPod (now deprecated), CloudDNS, ClouDNS (repeated twice), NameSilo, GoDaddy, FreeMyIP, WestCN, Volcengine again, and another occurrence of DNSPod. This set has been significantly reduced.

  2. Modified Provider Names: Some provider names have been changed from their previous form to more current or standard names. For example:

    • "DNSPod (" + i18n.global.t('ssl.deprecated') + ")" has become simply "DNSPod".
    • "Name.com" remains unchanged.
    • Other names like "CloudDNS", "ClouDNS", etc., were removed from the final list.
  3. Additional DNs Providers Added: New options for "GoDaddy," "FreeMyIP," "WestCN, " and "VolcEngine" and their respective domains have been added.

These modifications suggest updates to the system, possibly in response to changes in the available services or improved user experience requirements.

Expand Down
Loading