mirror of
https://github.com/EthanMarti/infio-copilot.git
synced 2026-01-16 08:21:55 +00:00
update release log
This commit is contained in:
parent
2291e635ae
commit
2132318a40
@ -1,4 +1,7 @@
|
|||||||
releases:
|
releases:
|
||||||
|
- version: "0.8.6"
|
||||||
|
features:
|
||||||
|
- "fix mobile version build index error"
|
||||||
- version: "0.8.5"
|
- version: "0.8.5"
|
||||||
features:
|
features:
|
||||||
- "add mobile version for pro user, fix update error"
|
- "add mobile version for pro user, fix update error"
|
||||||
|
|||||||
@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"id": "infio-copilot",
|
"id": "infio-copilot",
|
||||||
"name": "Infio Copilot",
|
"name": "Infio Copilot",
|
||||||
"version": "0.8.5",
|
"version": "0.8.6",
|
||||||
"minAppVersion": "0.15.0",
|
"minAppVersion": "0.15.0",
|
||||||
"description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes",
|
"description": "A Cursor-inspired AI assistant for notes that offers smart autocomplete and interactive chat with your selected notes",
|
||||||
"author": "Felix.D",
|
"author": "Felix.D",
|
||||||
"authorUrl": "https://github.com/infiolab",
|
"authorUrl": "https://github.com/infiolab",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-infio-copilot",
|
"name": "obsidian-infio-copilot",
|
||||||
"version": "0.8.5",
|
"version": "0.8.6",
|
||||||
"description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes",
|
"description": "A Cursor-inspired AI assistant that offers smart autocomplete and interactive chat with your selected notes",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
94
styles.css
94
styles.css
@ -106,7 +106,7 @@
|
|||||||
|
|
||||||
.infio-chat-header-buttons {
|
.infio-chat-header-buttons {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--size-4-2);
|
gap: var(--size-2-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.infio-chat-container {
|
.infio-chat-container {
|
||||||
@ -127,15 +127,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Remove default outer padding for Chat view's Obsidian wrapper to avoid extra bottom space */
|
|
||||||
.workspace-leaf-content[data-type="infio-chat-view"] > .view-content {
|
|
||||||
padding-bottom: 1rem !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.workspace-leaf-content[data-type="infio-chat-view"] > .view-header {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Chat Messages and Content
|
* Chat Messages and Content
|
||||||
* - Message containers
|
* - Message containers
|
||||||
@ -655,110 +646,48 @@ button:not(.clickable-icon).infio-chat-list-dropdown {
|
|||||||
gap: var(--size-4-1);
|
gap: var(--size-4-1);
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
height: var(--size-4-4);
|
||||||
|
|
||||||
.infio-chat-user-input-controls__model-select-container {
|
.infio-chat-user-input-controls__model-select-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: var(--size-2-2);
|
gap: var(--size-2-2);
|
||||||
flex: 1 1 auto;
|
|
||||||
min-width: 0;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.infio-chat-user-input-controls__buttons {
|
.infio-chat-user-input-controls__buttons {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: var(--size-4-4);
|
gap: var(--size-4-3);
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Ensure selectors' height matches bar height and can shrink */
|
|
||||||
.infio-chat-input-mode-select,
|
|
||||||
.infio-chat-input-model-select {
|
|
||||||
radius: var(--radius-m);
|
|
||||||
padding: 0 var(--size-4-2);
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Make model name truncate more aggressively inside the controls bar */
|
|
||||||
.infio-chat-input-model-select__model-name {
|
|
||||||
max-width: 120px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.infio-chat-user-input-controls .infio-chat-user-input-submit-button {
|
.infio-chat-user-input-controls .infio-chat-user-input-submit-button {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
gap: var(--size-4-1);
|
||||||
font-size: var(--font-smallest);
|
font-size: var(--font-smallest);
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
padding: 0 !important;
|
padding: 0 var(--size-2-1);
|
||||||
border-radius: var(--radius-s) !important;
|
border-radius: var(--radius-s);
|
||||||
aspect-ratio: 1 / 1;
|
height: var(--size-4-4);
|
||||||
flex: 0 0 var(--size-4-4);
|
|
||||||
box-sizing: border-box;
|
|
||||||
appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
|
transition: color 0.15s ease-in-out;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: var(--text-normal);
|
color: var(--text-normal);
|
||||||
background-color: var(--background-modifier-hover);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.infio-chat-user-input-submit-button-icons {
|
.infio-chat-user-input-submit-button-icons {
|
||||||
width: 20px!important;
|
|
||||||
height: 20px!important;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Unique circular submit button with accent background */
|
|
||||||
.infio-chat-user-input-controls .infio-chat-user-input-submit-circle-button {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: var(--size-4-2);
|
|
||||||
font-size: var(--font-smallest);
|
|
||||||
color: var(--text-on-accent);
|
|
||||||
background-color: var(--interactive-accent);
|
|
||||||
border: none;
|
|
||||||
box-shadow: none;
|
|
||||||
padding: 0 !important;
|
|
||||||
border-radius: 50% !important;
|
|
||||||
aspect-ratio: 1 / 1;
|
|
||||||
flex: 0 0 var(--size-4-4);
|
|
||||||
box-sizing: border-box;
|
|
||||||
appearance: none;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
cursor: pointer;
|
|
||||||
transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.infio-chat-user-input-controls .infio-chat-user-input-submit-circle-button:hover {
|
|
||||||
background-color: var(--interactive-accent-hover);
|
|
||||||
transform: scale(1.05);
|
|
||||||
}
|
|
||||||
|
|
||||||
.infio-chat-user-input-controls .infio-chat-user-input-submit-circle-button:active {
|
|
||||||
transform: scale(0.95);
|
|
||||||
}
|
|
||||||
|
|
||||||
.infio-chat-user-input-controls .infio-chat-user-input-submit-circle-button .infio-chat-user-input-submit-circle-button-icons {
|
|
||||||
width: 20px!important;
|
|
||||||
height: 20px!important;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.infio-chat-user-input-controls .infio-chat-user-input-vault-button {
|
.infio-chat-user-input-controls .infio-chat-user-input-vault-button {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -2457,7 +2386,8 @@ input[type='text'].infio-chat-list-dropdown-item-title-input {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* removed empty rule: .infio-llm-add-model-button */
|
.infio-llm-add-model-button {
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ai block, use edit inline
|
* ai block, use edit inline
|
||||||
@ -2643,6 +2573,7 @@ select.infio-ai-block-model-select::-ms-expand {
|
|||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
padding-bottom: 488px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 确保 diff 相关样式也限制作用域 */
|
/* 确保 diff 相关样式也限制作用域 */
|
||||||
@ -2755,11 +2686,14 @@ button.infio-chat-input-model-select {
|
|||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border: 1;
|
border: 1;
|
||||||
padding: var(--size-2-1) var(--size-2-2);
|
padding: var(--size-2-1) var(--size-2-2);
|
||||||
|
font-size: var(--font-smallest);
|
||||||
|
font-weight: var(--font-medium);
|
||||||
color: var(--text-muted);
|
color: var(--text-muted);
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
height: var(--size-4-4);
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
gap: var(--size-2-2);
|
gap: var(--size-2-2);
|
||||||
border-radius: var(--radius-s);
|
border-radius: var(--radius-s);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user