Refactor: remove desktop/Tauri bundle, add i18n, CI/CD pipeline
Nightly Build / build (push) Failing after 6s
Nightly Build / build (push) Failing after 6s
- Remove desktop (Tauri) bundle: docs/desktop.md, icons/, tauri.conf.json, src/desktop/mod.rs, gen/schemas/ - Remove build.rs (no longer needed) - Add i18n system (crates/core-api, plugin-mobile-connector, web) - Refactor config system (src/config.rs, boot_format.rs) - Add mobile connector features (app, router, device pairing) - Plugin system improvements (skald-core) - Update dependencies (Cargo.lock, Cargo.toml) - CI/CD: Gitea Actions workflows (nightly + release), package.sh, verify-version.sh, builds.skaldagent.net config
This commit is contained in:
@@ -139,6 +139,7 @@ export class ChatPage extends ChatSession {
|
||||
</div>
|
||||
|
||||
<div class="chat-page-input-area">
|
||||
${this._renderNoModelsBanner()}
|
||||
<div class="chat-page-composer"
|
||||
@dragover=${(e) => e.preventDefault()}
|
||||
@drop=${(e) => this._onDrop(e)}>
|
||||
@@ -153,6 +154,7 @@ export class ChatPage extends ChatSession {
|
||||
<textarea
|
||||
class="chat-page-textarea"
|
||||
rows="1"
|
||||
?disabled=${this._noModels}
|
||||
placeholder=${t('chat.mobile.placeholder')}
|
||||
@input=${(e) => this._autoResize(e.target)}
|
||||
@paste=${(e) => this._onPaste(e)}
|
||||
@@ -195,6 +197,7 @@ export class ChatPage extends ChatSession {
|
||||
: nothing}
|
||||
<button
|
||||
class="chat-page-send"
|
||||
?disabled=${this._noModels}
|
||||
@click=${() => this._send()}
|
||||
title=${t('chat.send')}
|
||||
><i class="bi bi-send-fill"></i></button>
|
||||
|
||||
Reference in New Issue
Block a user