7 Commits

Author SHA1 Message Date
351114ab79 fix 2025-06-15 22:16:42 +09:00
fbedc4fa85 fix binary 2025-06-15 21:18:08 +09:00
2f522820b1 fix path 2025-06-15 21:15:35 +09:00
5d97576544 v0.1.6: Major improvements to OAuth display and stream configuration
- Fix AI Chat History display layout and content formatting
- Unify comment layout structure across all comment types
- Remove hardcoded values from stream.rs, add config.toml support
- Optimize AI comment generation with character limits
- Improve translation length limits (3000 characters)
- Add comprehensive AI configuration management

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-15 20:44:02 +09:00
d16b88a499 test update json 2025-06-15 20:41:02 +09:00
4df7f72312 update binary 2025-06-15 15:46:34 +09:00
af28cefba0 add index.json 2025-06-15 15:31:53 +09:00
6 changed files with 10 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "ailog"
version = "0.1.7"
version = "0.1.6"
edition = "2021"
authors = ["syui"]
description = "A static blog generator with AI features"

View File

@@ -1,3 +1,3 @@
<!-- OAuth Comment System - Load globally for session management -->
<script type="module" crossorigin src="/assets/comment-atproto-mfW-OeY_.js"></script>
<link rel="stylesheet" crossorigin href="/assets/comment-atproto-Cm5qR-aM.css">
<script type="module" crossorigin src="/assets/comment-atproto-BV-Fzslr.js"></script>
<link rel="stylesheet" crossorigin href="/assets/comment-atproto-6vwaM28e.css">

View File

@@ -262,8 +262,8 @@ function setupAskAIEventListeners() {
}
}
// Enter key to send message (only when not composing Japanese input)
if (e.key === 'Enter' && e.target.id === 'aiQuestion' && !e.shiftKey && !e.isComposing) {
// Enter key to send message
if (e.key === 'Enter' && e.target.id === 'aiQuestion' && !e.shiftKey) {
e.preventDefault();
askQuestion();
}

View File

@@ -1,3 +1,3 @@
<!-- OAuth Comment System - Load globally for session management -->
<script type="module" crossorigin src="/assets/comment-atproto-mfW-OeY_.js"></script>
<link rel="stylesheet" crossorigin href="/assets/comment-atproto-Cm5qR-aM.css">
<script type="module" crossorigin src="/assets/comment-atproto-BV-Fzslr.js"></script>
<link rel="stylesheet" crossorigin href="/assets/comment-atproto-6vwaM28e.css">

View File

@@ -909,8 +909,4 @@
padding: 40px 20px;
color: #656d76;
font-style: italic;
}
.chat-message.comment-style {
border-left: 4px solid var(--theme-color);
}

View File

@@ -1493,9 +1493,10 @@ function App() {
</div>
)}
{/* Comment Form - Only show on post pages when Comments tab is active */}
{user && appConfig.rkey && activeTab === 'comments' && (
{/* Comment Form - Only show on post pages */}
{user && appConfig.rkey && (
<div className="comment-form">
<h3>Post a Comment</h3>
<textarea
id="comment-text"
name="commentText"