diff --git a/assets/favicons/heute.at.png b/assets/favicons/heute.at.png new file mode 100644 index 0000000..72491e5 Binary files /dev/null and b/assets/favicons/heute.at.png differ diff --git a/data/Niederösterreich.json b/data/Niederösterreich.json index b8fa39d..513e3b7 100644 --- a/data/Niederösterreich.json +++ b/data/Niederösterreich.json @@ -105,6 +105,11 @@ "type": "news", "url": "https://www.heute.at/s/regenbogen-zebrastreifen-als-zeichen-der-solidaritaet-100262709", "date": "2023-03-28" + }, + { + "type": "news", + "url": "https://www.spoe-moedling.at/regenbogen-zebrastreifen/", + "date": "2023-05-03" } ], "geosource": { diff --git a/data/Salzburg.json b/data/Salzburg.json index e878720..3fd3071 100644 --- a/data/Salzburg.json +++ b/data/Salzburg.json @@ -51,8 +51,8 @@ { "id": 932441635, "name": "Hallein", - "type": "HalleinPrideFlag", - "comment": "Farben vertauscht", + "type": "prideFlag", + "comment": "", "sources": [ { "type": "news", @@ -68,6 +68,11 @@ "type": "news", "url": "https://salzburg.orf.at/stories/3177392/", "date": "2022-10-10" + }, + { + "type": "news", + "url": "https://www.salzburg24.at/news/salzburg/tennengau/halleiner-regenbogen-zebrastreifen-bekommt-neuen-anstrich-138649279", + "date": "2023-05-12" } ], "geosource": { diff --git a/src/favicon.ts b/src/favicon.ts index dda51a6..272d319 100644 --- a/src/favicon.ts +++ b/src/favicon.ts @@ -18,6 +18,7 @@ import a1Icon from "../assets/favicons/a1.net.png" import orfIcon from "../assets/favicons/orf.png" import apaIcon from "../assets/favicons/apa.png" import facebookIcon from "../assets/favicons/facebook.svg" +import heuteIcon from "../assets/favicons/heute.at.png" export function faviconByHostname(hostname: string): string | undefined { @@ -57,6 +58,8 @@ export function faviconByHostname(hostname: string): string | undefined { return apaIcon case "www.facebook.com": return facebookIcon + case "www.heute.at": + return heuteIcon } if (hostname.includes("spoe")) { diff --git a/src/style.scss b/src/style.scss index 63877a4..c5c7ea1 100644 --- a/src/style.scss +++ b/src/style.scss @@ -25,6 +25,10 @@ html, body { text-decoration: none; } + img { + padding: 1px; + } + .name { font-weight: bold; text-align: center; diff --git a/tsconfig.json b/tsconfig.json index b11018f..585556c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -91,7 +91,7 @@ // "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */ // "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ // "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ - "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ +// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ // "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ // "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ // "allowUnusedLabels": true, /* Disable error reporting for unused labels. */