diff --git a/changelog.md b/changelog.md index d539757..0d35a48 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Changelog +## 2024-12-26 - 3.0.53 - fix(infohtml) +Remove Sentry script and logo from HTML template + +- Removed Sentry script from the HTML template. +- Removed Lossless GmbH logo and contact info. +- Updated footer link to point to foss.global. + ## 2024-12-25 - 3.0.52 - fix(dependencies) Bump package versions in dependencies and exports. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index b91ac1a..8d81807 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@api.global/typedserver', - version: '3.0.52', + version: '3.0.53', description: 'A TypeScript-based project for easy serving of static files with support for live reloading, compression, and typed requests.' } diff --git a/ts/infohtml/template.ts b/ts/infohtml/template.ts index 293dc05..257132f 100644 --- a/ts/infohtml/template.ts +++ b/ts/infohtml/template.ts @@ -96,26 +96,9 @@ export const simpleInfo = async ( name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> - - -
${(() => { const returnArray: plugins.smartntml.deesElement.TemplateResult[] = []; @@ -129,15 +112,6 @@ export const simpleInfo = async ( } else { returnArray.push(html`
${optionsArg.text}
`); } - if (optionsArg.sentryDsn && optionsArg.sentryMessage) { - returnArray.push( - html`
- We recorded this event. Should you continue to see this page against your - expectations, feel free to mail us at - hello@lossless.com -
` - ); - } if (optionsArg.redirectTo) { returnArray.push( html`
@@ -149,9 +123,7 @@ export const simpleInfo = async ( })()}