diff --git a/infra/releases/2026-05-30_23-14-47_HML.md b/infra/releases/2026-05-30_23-14-47_HML.md new file mode 100644 index 00000000..2ecfdd83 --- /dev/null +++ b/infra/releases/2026-05-30_23-14-47_HML.md @@ -0,0 +1,33 @@ +# Release HML + +Data: sáb 30 mai 2026 23:14:48 -03 + +Ambiente: +HML + +Descrição: +Favivon - Correção + +Branch: +develop + +Arquivos alterados antes do commit: + M package-lock.json + M src/sections/Footer.tsx +?? infra/releases/2026-05-30_23-14-47_HML.md +?? public/favicon.png + +Status: +Preparado para publicação + +Commit: +643f4a3f + +Arquivos no commit: +infra/releases/2026-05-30_23-14-47_HML.md +package-lock.json +public/favicon.png +src/sections/Footer.tsx + +Status final: +Publicado no Gitea / aguardando pipeline HML diff --git a/package-lock.json b/package-lock.json index 58fc4421..f1e02db1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4473,6 +4473,9 @@ "arm" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4487,6 +4490,9 @@ "arm" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -4501,6 +4507,9 @@ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4515,6 +4524,9 @@ "arm64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -4529,6 +4541,9 @@ "loong64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4543,6 +4558,9 @@ "loong64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -4557,6 +4575,9 @@ "ppc64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4571,6 +4592,9 @@ "ppc64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -4585,6 +4609,9 @@ "riscv64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4599,6 +4626,9 @@ "riscv64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ @@ -4613,6 +4643,9 @@ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4627,6 +4660,9 @@ "x64" ], "dev": true, + "libc": [ + "glibc" + ], "license": "MIT", "optional": true, "os": [ @@ -4641,6 +4677,9 @@ "x64" ], "dev": true, + "libc": [ + "musl" + ], "license": "MIT", "optional": true, "os": [ diff --git a/public/favicon.png b/public/favicon.png new file mode 100644 index 00000000..66a3968e Binary files /dev/null and b/public/favicon.png differ diff --git a/src/sections/Footer.tsx b/src/sections/Footer.tsx index 4356b313..229a13c1 100644 --- a/src/sections/Footer.tsx +++ b/src/sections/Footer.tsx @@ -15,7 +15,7 @@ const Footer = () => { const [version, setVersion] = useState(''); useEffect(() => { - fetch('/version.json') + fetch('/version.json?t=' + Date.now()) .then(r => r.json()) .then(data => setVersion(data.version)) .catch(() => setVersion(''));