chore: remove umami analytics integration
This commit is contained in:
parent
48b360bce1
commit
e798fd50a8
@ -2,6 +2,14 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.2.0 - 2025-12-17
|
||||||
|
|
||||||
|
Removes Umami analytics integration, eliminating user tracking functionality. Developers must handle analytics separately if needed.
|
||||||
|
|
||||||
|
**Changes:** 2 files, 2 lines
|
||||||
|
**Languages:** HTML (1 lines), Python (1 lines)
|
||||||
|
|
||||||
## Version 1.1.0 - 2025-12-17
|
## Version 1.1.0 - 2025-12-17
|
||||||
|
|
||||||
Fixes potential errors in forum message handling by adding a null check for the star field, preventing crashes when the field is missing. Updates the message list display to handle starred messages more reliably.
|
Fixes potential errors in forum message handling by adding a null check for the star field, preventing crashes when the field is missing. Updates the message list display to handle starred messages more reliably.
|
||||||
|
|||||||
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "Snek"
|
name = "Snek"
|
||||||
version = "1.1.0"
|
version = "1.2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
#license = { file = "LICENSE", content-type="text/markdown" }
|
#license = { file = "LICENSE", content-type="text/markdown" }
|
||||||
description = "Snek Chat Application by Molodetz"
|
description = "Snek Chat Application by Molodetz"
|
||||||
|
|||||||
@ -15,7 +15,6 @@ async def csp_middleware(request, handler):
|
|||||||
f"script-src 'self' {origin} 'nonce-{nonce}'; "
|
f"script-src 'self' {origin} 'nonce-{nonce}'; "
|
||||||
f"style-src 'self' 'unsafe-inline' {origin} 'nonce-{nonce}'; "
|
f"style-src 'self' 'unsafe-inline' {origin} 'nonce-{nonce}'; "
|
||||||
"img-src *; "
|
"img-src *; "
|
||||||
"connect-src 'self' https://umami.molodetz.nl; "
|
|
||||||
"font-src *; "
|
"font-src *; "
|
||||||
"object-src 'none'; "
|
"object-src 'none'; "
|
||||||
"base-uri 'self'; "
|
"base-uri 'self'; "
|
||||||
|
|||||||
@ -24,7 +24,6 @@
|
|||||||
<script src="/html-frame.js" type="module"></script>
|
<script src="/html-frame.js" type="module"></script>
|
||||||
<script src="/generic-form.js?rid={{ rid }}" type="module"></script>
|
<script src="/generic-form.js?rid={{ rid }}" type="module"></script>
|
||||||
<link rel="stylesheet" href="/html-frame.css">
|
<link rel="stylesheet" href="/html-frame.css">
|
||||||
<script async defer src="https://umami.molodetz.nl/script.js" data-website-id="d127c3e4-dc70-4041-a1c8-bcc32c2492ea"></script>
|
|
||||||
{% block head %}
|
{% block head %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user