versioning: 0.0.6, ux: move buttons, feat: add cloud providers, feat: increese tool call limit
Build Release EXE / build-windows-exe (release) Successful in 51s

This commit is contained in:
2026-05-08 14:48:51 -04:00
parent a5a718b3e4
commit 6bd1e81a51
14 changed files with 1103 additions and 198 deletions
+98 -4
View File
@@ -269,6 +269,8 @@ body::before {
}
.actions {
display: flex;
flex-direction: column;
padding: 28px;
overflow: auto;
min-height: 0;
@@ -555,6 +557,38 @@ h2 {
background: rgba(255, 250, 240, 0.96);
}
.message-images {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
gap: 10px;
margin-bottom: 12px;
}
.message-image {
overflow: hidden;
border: 1px solid rgba(88, 66, 47, 0.18);
border-radius: 14px;
background: rgba(255, 255, 255, 0.78);
}
.message-image img {
display: block;
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
}
.message-image-label {
display: block;
padding: 8px 10px;
color: #6d5b4e;
font-size: 12px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.message.warning-message {
border-color: rgba(212, 175, 55, 0.6);
background: #f5eac4;
@@ -720,6 +754,60 @@ h2 {
padding: 20px;
}
.composer-main {
display: grid;
gap: 12px;
}
.composer-images {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: 10px;
}
.composer-image {
position: relative;
overflow: hidden;
border: 1px solid rgba(88, 66, 47, 0.16);
border-radius: 14px;
background: rgba(255, 255, 255, 0.88);
box-shadow: 0 12px 26px rgba(38, 58, 27, 0.08);
}
.composer-image img {
display: block;
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
}
.composer-image-name {
display: block;
padding: 8px 10px 10px;
color: #6d5b4e;
font-size: 12px;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.composer-image-remove {
position: absolute;
top: 8px;
right: 8px;
width: 28px;
height: 28px;
min-height: 28px;
padding: 0;
border-radius: 999px;
border: 1px solid rgba(88, 66, 47, 0.18);
background: rgba(255, 250, 240, 0.92);
color: var(--brown);
font-size: 16px;
line-height: 1;
}
textarea {
width: 100%;
min-height: 58px;
@@ -1005,7 +1093,7 @@ button.secondary {
}
.side-section {
margin-bottom: 28px;
margin-bottom: 0;
}
.side-section + .side-section {
@@ -1014,8 +1102,14 @@ button.secondary {
}
.sidebar-tools {
display: grid;
display: flex;
flex-direction: column;
gap: 14px;
margin-top: auto;
position: sticky;
bottom: -28px;
padding-bottom: 28px;
background: linear-gradient(180deg, rgba(247, 241, 220, 0) 0%, var(--cream) 22%, var(--cream) 100%);
}
.sidebar-tool-buttons {
@@ -1110,8 +1204,8 @@ button.secondary {
}
.sidebar-panel {
padding-top: 12px;
border-top: 1px solid var(--line);
padding-bottom: 12px;
border-bottom: 1px solid var(--line);
}
.config-form {