]> git.ipfire.org Git - thirdparty/google/fonts.git/commitdiff
update tags.html
authorMarc Foley <m.foley.88@gmail.com>
Tue, 23 Sep 2025 13:58:09 +0000 (14:58 +0100)
committerGitHub <noreply@github.com>
Tue, 23 Sep 2025 13:58:09 +0000 (14:58 +0100)
tags.html

index ba689eb40e38d06de74d350b6268dc92c51db4b9..a197a6caa997a73b70e0cedd0081ebae756e5d9f 100644 (file)
--- a/tags.html
+++ b/tags.html
@@ -747,7 +747,7 @@ function axesCombos(axes) {
         const url = URL.createObjectURL(blob);
         const a = document.createElement('a');
         a.href = url;
-        a.download = "families_new.csv";
+        a.download = "families.csv";
         document.body.appendChild(a);
         a.click();
         document.body.removeChild(a);
@@ -759,9 +759,9 @@ function axesCombos(axes) {
         alert("Tag data copied to clipboard. A github pull request page will open in a new tab. Please remove the old data and paste in the new.");
         navigator.clipboard.writeText(csv);
         if (this.commit !== "refs/heads/main") {
-          window.open(`https://github.com/google/fonts/edit/${this.commit}/tags/all/families_new.csv`);
+          window.open(`https://github.com/google/fonts/edit/${this.commit}/tags/all/families.csv`);
         } else {
-          window.open("https://github.com/google/fonts/edit/main/tags/all/families_new.csv")
+          window.open("https://github.com/google/fonts/edit/main/tags/all/families.csv")
         }
       },
       loadCSV() {
@@ -773,7 +773,7 @@ function axesCombos(axes) {
         }
         this.history = [];
         this.tags = [];
-        const csvFilePath = `https://raw.githubusercontent.com/google/fonts/${this.commit}/tags/all/families_new.csv`; // Update this path to your CSV file
+        const csvFilePath = `https://raw.githubusercontent.com/google/fonts/${this.commit}/tags/all/families.csv`; // Update this path to your CSV file
         fetch(csvFilePath)
           .then(response => {
             if (response.status === 404) {