mirror of
https://github.com/agoramachina/claude-exporter.git
synced 2026-07-09 15:59:52 +00:00
Revert Model Display 2-col grid; back to stacked layout (v1.9.17)
The two-column layout from v1.9.16 cramped the radio descriptions. Stacked layout reads cleaner — restoring it and dropping the .model-display-grid CSS. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
d7adf70446
commit
4a6b7d6930
5 changed files with 26 additions and 44 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Claude Exporter Beta",
|
||||
"version": "1.9.16",
|
||||
"version": "1.9.17",
|
||||
"description": "Export conversations and artifacts from Claude.ai",
|
||||
"permissions": [
|
||||
"activeTab",
|
||||
|
|
|
|||
|
|
@ -149,15 +149,6 @@
|
|||
font-size: 12px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.model-display-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 12px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
.model-display-grid .radio-option {
|
||||
margin-top: 0;
|
||||
}
|
||||
.status {
|
||||
margin-top: 10px;
|
||||
padding: 10px;
|
||||
|
|
@ -273,18 +264,16 @@
|
|||
<div class="section">
|
||||
<h3>Model Display</h3>
|
||||
<p>Which model name to show in the browse view's Model column. Bounced chats (where the model has changed) get a small "*" marker either way — the tooltip shows the other model.</p>
|
||||
<div class="model-display-grid">
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="original">
|
||||
<strong>Original</strong>
|
||||
<span class="radio-desc">The model that first ran the conversation. Preserves it even after the chat gets bounced.</span>
|
||||
</label>
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="current">
|
||||
<strong>Current</strong>
|
||||
<span class="radio-desc">The model the conversation uses now. Reflects what will run if you reopen it.</span>
|
||||
</label>
|
||||
</div>
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="original">
|
||||
<strong>Original</strong>
|
||||
<span class="radio-desc">The model that first ran the conversation (first-seen). Preserves the original even after the chat gets bounced to a newer model.</span>
|
||||
</label>
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="current">
|
||||
<strong>Current</strong>
|
||||
<span class="radio-desc">The model the conversation uses right now. Reflects what will run if you reopen the chat.</span>
|
||||
</label>
|
||||
<div id="modelDisplayStatus" class="status"></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## [1.9.17]
|
||||
|
||||
- Reverted v1.9.16's two-column Model Display layout — the original stacked layout reads cleaner, especially with the longer descriptions
|
||||
|
||||
## [1.9.16]
|
||||
|
||||
- Browse dropdown's "Edit Org ID" and "Advanced Options" now open the options page in the **same tab** instead of a new one — the browser back button returns to the browse view
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Claude Exporter Beta",
|
||||
"version": "1.9.16",
|
||||
"version": "1.9.17",
|
||||
"description": "Export conversations and artifacts from Claude.ai",
|
||||
"permissions": [
|
||||
"activeTab",
|
||||
|
|
|
|||
|
|
@ -149,15 +149,6 @@
|
|||
font-size: 12px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
.model-display-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 12px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
.model-display-grid .radio-option {
|
||||
margin-top: 0;
|
||||
}
|
||||
.status {
|
||||
margin-top: 10px;
|
||||
padding: 10px;
|
||||
|
|
@ -273,18 +264,16 @@
|
|||
<div class="section">
|
||||
<h3>Model Display</h3>
|
||||
<p>Which model name to show in the browse view's Model column. Bounced chats (where the model has changed) get a small "*" marker either way — the tooltip shows the other model.</p>
|
||||
<div class="model-display-grid">
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="original">
|
||||
<strong>Original</strong>
|
||||
<span class="radio-desc">The model that first ran the conversation. Preserves it even after the chat gets bounced.</span>
|
||||
</label>
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="current">
|
||||
<strong>Current</strong>
|
||||
<span class="radio-desc">The model the conversation uses now. Reflects what will run if you reopen it.</span>
|
||||
</label>
|
||||
</div>
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="original">
|
||||
<strong>Original</strong>
|
||||
<span class="radio-desc">The model that first ran the conversation (first-seen). Preserves the original even after the chat gets bounced to a newer model.</span>
|
||||
</label>
|
||||
<label class="radio-option">
|
||||
<input type="radio" name="modelDisplay" value="current">
|
||||
<strong>Current</strong>
|
||||
<span class="radio-desc">The model the conversation uses right now. Reflects what will run if you reopen the chat.</span>
|
||||
</label>
|
||||
<div id="modelDisplayStatus" class="status"></div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue