halbot 1995.1.54 → 1995.1.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/web/ogimage.mjs +1 -1
- package/web/turn.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "halbot",
|
|
3
3
|
"description": "Just another AI powered Telegram bot, which is simple design, easy to use, extendable and fun.",
|
|
4
|
-
"version": "1995.1.
|
|
4
|
+
"version": "1995.1.55",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/Leask/halbot",
|
|
7
7
|
"type": "module",
|
package/web/ogimage.mjs
CHANGED
|
@@ -76,7 +76,7 @@ const process = async (ctx, next) => {
|
|
|
76
76
|
backgroundColor: '#0a0a0c', // HAL9000 Dark bg
|
|
77
77
|
backgroundImage: 'radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.05) 2%, transparent 0%), radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.05) 2%, transparent 0%)',
|
|
78
78
|
backgroundSize: '100px 100px',
|
|
79
|
-
padding: '60px',
|
|
79
|
+
padding: '35px 60px 95px 60px',
|
|
80
80
|
fontFamily: '"Inter"',
|
|
81
81
|
color: '#ffffff',
|
|
82
82
|
},
|
package/web/turn.mjs
CHANGED
|
@@ -113,7 +113,7 @@ const process = async (ctx, next) => {
|
|
|
113
113
|
const ogImageUrl = `https://${ctx.host}/og-image/${ctx.params.token}`;
|
|
114
114
|
|
|
115
115
|
// Construct dynamic meta tags
|
|
116
|
-
const pageTitle = `Chat
|
|
116
|
+
const pageTitle = `HAL9000 Chat: ${result.chat_id}`;
|
|
117
117
|
const escapedDesc = previewText.replace(/"/g, '"');
|
|
118
118
|
const escapedTitle = pageTitle.replace(/"/g, '"');
|
|
119
119
|
|