Compare commits

..

2 commits

Author SHA1 Message Date
Gitea Actions [Bot]
253be04240 chore(main): release 1.3.0 2025-03-15 18:03:41 +00:00
f69b3bb759 feat: add chat support to index.html
All checks were successful
release-please / release-please (push) Successful in 2m1s
2025-03-15 19:01:38 +01:00
2 changed files with 11 additions and 1 deletions

View file

@ -1,10 +1,11 @@
# Changelog
## 1.0.0 (2025-01-26)
## [1.3.0](https://git.kjan.de/jank/jklink/compare/v1.2.0...v1.3.0) (2025-03-15)
### Features
* add chat support to index.html ([f69b3bb](https://git.kjan.de/jank/jklink/commit/f69b3bb7596e477b2d8eb01f9b3fa12c9ccfebc6))
* Add custom slug support for links ([8e18324](https://git.kjan.de/jank/jklink/commit/8e1832416ba4f98543fcd1240ea0c0cc1425af21))
* **create-link:** Add snackbar notification for slug conflict ([0dba945](https://git.kjan.de/jank/jklink/commit/0dba945ac2c93dd4b1eeefaac060050999db88f9))
* **dashboard:** add link confirmation dialog before navigation ([4c77b4f](https://git.kjan.de/jank/jklink/commit/4c77b4f139fd6c88a1eedcbc450b3e489a46e20d))

View file

@ -17,5 +17,14 @@
</head>
<body class="h-full base-100 mat-typography">
<app-root></app-root>
<script src="https://support.kjan.de/assets/chat/chat-no-jquery.min.js"></script>
<script>
(function() {
new ZammadChat({
fontSize: '12px',
chatId: 1
});
})();
</script>
</body>
</html>