chore: update css, js, py files

This commit is contained in:
retoor 2026-01-03 14:04:12 +01:00
parent 20543245f8
commit bfec6f9d69
6 changed files with 13 additions and 14 deletions

View File

@ -17,6 +17,14 @@
## Version 1.17.0 - 2026-01-03
update css, js, py files
**Changes:** 4 files, 17 lines
**Languages:** CSS (11 lines), JavaScript (2 lines), Python (4 lines)
## Version 1.16.0 - 2026-01-03 ## Version 1.16.0 - 2026-01-03
update css, js files update css, js files

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "Snek" name = "Snek"
version = "1.16.0" version = "1.17.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"

View File

@ -295,7 +295,6 @@ footer {
} }
.chat-input { .chat-input {
position: relative;
padding: 15px; padding: 15px;
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -374,7 +374,7 @@ textToLeetAdvanced(text) {
this.fileUploadGrid = new FileUploadGrid(); this.fileUploadGrid = new FileUploadGrid();
this.fileUploadGrid.setAttribute("channel", this.channelUid); this.fileUploadGrid.setAttribute("channel", this.channelUid);
this.fileUploadGrid.style.display = "none"; this.fileUploadGrid.style.display = "none";
this.appendChild(this.fileUploadGrid); this.parentElement.insertBefore(this.fileUploadGrid, this);
this.textarea.setAttribute("placeholder", "Type a message..."); this.textarea.setAttribute("placeholder", "Type a message...");
this.textarea.setAttribute("rows", "2"); this.textarea.setAttribute("rows", "2");

View File

@ -1,16 +1,12 @@
.fug-root { .fug-root {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background: #111; background: #111;
border: 1px solid #333; border: 1px solid #333;
border-radius: 8px; border-radius: 8px;
margin-bottom: 8px; padding: 8px;
z-index: 100; margin: 0 15px 8px 15px;
color: white; color: white;
font-family: sans-serif; font-family: sans-serif;
max-width: 100%; max-width: calc(100% - 30px);
} }
.fug-grid { .fug-grid {
display: flex; display: flex;

View File

@ -203,16 +203,12 @@ class ChannelAttachmentUploadView(BaseView):
pathlib.Path(attachment["path"]).parent.mkdir(parents=True, exist_ok=True) pathlib.Path(attachment["path"]).parent.mkdir(parents=True, exist_ok=True)
async with aiofiles.open(attachment["path"], "wb") as file: async with aiofiles.open(attachment["path"], "wb") as file:
print("File openend.", filename)
async for msg in ws: async for msg in ws:
if msg.type == web.WSMsgType.BINARY: if msg.type == web.WSMsgType.BINARY:
print("Binary",filename)
if file is not None: if file is not None:
await file.write(msg.data) await file.write(msg.data)
await ws.send_json({"type": "progress", "filename": filename, "bytes": await file.tell()}) await ws.send_json({"type": "progress", "filename": filename, "bytes": await file.tell()})
elif msg.type == web.WSMsgType.TEXT: elif msg.type == web.WSMsgType.TEXT:
print("TExt",filename)
print(msg.json())
data = msg.json() data = msg.json()
if data.get('type') == 'end': if data.get('type') == 'end':
relative_url = urllib.parse.quote(attachment["relative_url"]) relative_url = urllib.parse.quote(attachment["relative_url"])