Skip to content

Commit 060e5ef

Browse files
author
Kristian Ziga
committed
Merge branch 'main' into fix/multi-select-not-precise-checkbox
2 parents f9e9c14 + 3dd46e8 commit 060e5ef

132 files changed

Lines changed: 2338 additions & 721 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/deploy-docs.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Deploy docs site to GitHub Pages
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
pages: write
9+
id-token: write
10+
11+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
12+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
13+
concurrency:
14+
group: 'pages'
15+
cancel-in-progress: false
16+
17+
jobs:
18+
# Build job
19+
build:
20+
runs-on: ubuntu-latest
21+
defaults:
22+
run:
23+
working-directory: ./docs-site
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
- name: Setup Node
28+
uses: actions/setup-node@v4
29+
with:
30+
node-version: '22'
31+
cache: 'npm'
32+
cache-dependency-path: docs-site/package-lock.json
33+
- name: Install dependencies
34+
run: npm ci
35+
- name: Build
36+
run: npm run build
37+
- name: Upload artifact
38+
uses: actions/upload-pages-artifact@v3
39+
with:
40+
path: ./docs-site/build
41+
42+
# Deployment job
43+
deploy:
44+
environment:
45+
name: github-pages
46+
url: ${{ steps.deployment.outputs.page_url }}
47+
runs-on: ubuntu-latest
48+
needs: build
49+
steps:
50+
- name: Deploy to GitHub Pages
51+
id: deployment
52+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ start-docker.sh
3232
./session-*.md
3333
.claude-trace
3434
repomix-output.txt
35+
36+
docs-site

.repomixignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
ai-docs/
22
docs/
33
patches/
4+
docs-site

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- parsing <think> tags as reasoning part of the response
66
- fixed multiselect checkboxes
7+
- implemented better support for themes + new themes added
78

89
## [0.26.0]
910

ai-docs/edit-format-selector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Add EditFormatSelector to ProjectBar after Weak model selector:
3939
```tsx
4040
// src/renderer/src/components/project/ProjectBar.tsx
4141
<div className="flex items-center space-x-1">
42-
<BsFilter className="w-4 h-4 text-neutral-100 mr-1" />
42+
<BsFilter className="w-4 h-4 text-text-primary mr-1" />
4343
<EditFormatSelector
4444
currentFormat={modelsData.editFormat || 'diff'}
4545
onFormatChange={(format) => runCommand(`set-edit-format ${format}`)}

package-lock.json

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@
122122
"rehype-slug": "^6.0.0",
123123
"simple-git": "^3.27.0",
124124
"socket.io": "^4.8.1",
125+
"tailwind-merge": "^3.3.1",
125126
"textarea-caret": "^3.1.0",
126127
"tmp": "^0.2.3",
127128
"tree-kill": "^1.2.2",

resources/connector/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ async def process_changes():
562562
group = {
563563
"id": str(uuid.uuid4()),
564564
"name": f"AI request detected in files: {changed_files}",
565-
"color": "#884239"
565+
"color": "var(--color-agent-ai-request)"
566566
}
567567
prompt_context = PromptContext(str(uuid.uuid4()), group)
568568

src/common/locales/en.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,19 @@
320320
"zoom": "Zoom level",
321321
"theme": "Theme",
322322
"themeOptions": {
323-
"dark": "Dark",
324-
"light": "Light"
323+
"dark": "Default (Dark)",
324+
"light": "Default (Light)",
325+
"ocean": "Ocean",
326+
"forest": "Forest",
327+
"lavender": "Lavender",
328+
"bw": "Black & White",
329+
"midnight": "Midnight",
330+
"neon": "Neon",
331+
"neopunk": "Neopunk",
332+
"charcoal": "Charcoal",
333+
"aurora": "Aurora",
334+
"serenity": "Serenity",
335+
"cappuccino": "Cappuccino"
325336
},
326337
"aiderRestartConfirm": {
327338
"title": "Restart Required",

src/common/locales/zh.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,17 @@
316316
"theme": "主题",
317317
"themeOptions": {
318318
"dark": "深色",
319-
"light": "浅色"
319+
"light": "浅色",
320+
"ocean": "海洋",
321+
"forest": "森林",
322+
"lavender": "薰衣草",
323+
"bw": "黑白",
324+
"midnight": "午夜",
325+
"neon": "霓虹",
326+
"neopunk": "赛博朋克",
327+
"charcoal": "炭灰",
328+
"aurora": "极光",
329+
"serenity": "宁静"
320330
},
321331
"aiderRestartConfirm": {
322332
"title": "需要重启",

0 commit comments

Comments
 (0)