From 869f123a5b51903d5f0f849b50aac1686b4e963c Mon Sep 17 00:00:00 2001 From: sneak Date: Mon, 23 Feb 2026 00:42:15 +0700 Subject: [PATCH] Shorten storage endpoint display names and drop continent labels Remove verbose continent labels from S3 names, shorten GCS region codes (us-cent1, eu-west1, asia-se1, aus-se1) to fit the name column. --- src/main.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main.js b/src/main.js index 15a98e0..f8ca6a6 100644 --- a/src/main.js +++ b/src/main.js @@ -37,48 +37,48 @@ const WAN_HOSTS = [ { name: "GitHub", url: "https://github.com" }, { name: "B2", url: "https://api.backblazeb2.com" }, { - name: "S3 af-south-1 Cape Town (Africa)", + name: "S3 af-south-1 (Cape Town)", url: "https://s3.af-south-1.amazonaws.com", }, { - name: "S3 eu-west-2 London (Europe)", + name: "S3 eu-west-2 (London)", url: "https://s3.eu-west-2.amazonaws.com", }, { - name: "S3 me-south-1 Bahrain (Middle East)", + name: "S3 me-south-1 (Bahrain)", url: "https://s3.me-south-1.amazonaws.com", }, { - name: "S3 ap-northeast-1 Tokyo (Asia)", + name: "S3 ap-northeast-1 (Tokyo)", url: "https://s3.ap-northeast-1.amazonaws.com", }, { - name: "S3 ap-southeast-2 Sydney (Oceania)", + name: "S3 ap-southeast-2 (Sydney)", url: "https://s3.ap-southeast-2.amazonaws.com", }, { - name: "S3 us-west-2 Oregon (North America)", + name: "S3 us-west-2 (Oregon)", url: "https://s3.us-west-2.amazonaws.com", }, { - name: "S3 sa-east-1 São Paulo (South America)", + name: "S3 sa-east-1 (São Paulo)", url: "https://s3.sa-east-1.amazonaws.com", }, // GCS locational endpoints — compare GCP routing vs AWS per-continent { - name: "GCS us-central1 Iowa (North America)", + name: "GCS us-cent1 (Iowa)", url: "https://storage.us-central1.rep.googleapis.com", }, { - name: "GCS europe-west1 Belgium (Europe)", + name: "GCS eu-west1 (Belgium)", url: "https://storage.europe-west1.rep.googleapis.com", }, { - name: "GCS asia-southeast1 Singapore (Asia)", + name: "GCS asia-se1 (Singapore)", url: "https://storage.asia-southeast1.rep.googleapis.com", }, { - name: "GCS australia-southeast1 Sydney (Oceania)", + name: "GCS aus-se1 (Sydney)", url: "https://storage.australia-southeast1.rep.googleapis.com", }, ];