Commit Graph

172 Commits

Author SHA1 Message Date
Georg Bauer
f19fde6879 Feat/generic OpenAI provider (#68)
* feat: added a generic openai endpoint provider for self-hosted models

* feat: proper vision and tool checkbox for generic endpoint

---------

Co-authored-by: hugo <hugoms@me.com>
2026-04-21 21:34:18 +02:00
Georg Bauer
914af9831d Feat/webworker for incremental render (#51)
* feat: web worker for incremental render

* feat: optimizing incremental render for date archives

* feat: more work on web worker

* fix: blogmark process handled defaulting wrong

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-13 13:27:45 +01:00
Georg Bauer
101036e58e fix: translation jumping on auto-translations (#50)
Co-authored-by: hugo <hugoms@me.com>
2026-03-13 09:07:10 +01:00
Copilot
b57e50f4a9 Drag-and-drop image insertion for Milkdown and Monaco editors (#47)
* Initial plan

* Implement drag-and-drop image insertion for both Milkdown and Monaco editors

Co-authored-by: rfc1437 <774975+rfc1437@users.noreply.github.com>

* Address code review: simplify Monaco type assertion, fix lint warning

Co-authored-by: rfc1437 <774975+rfc1437@users.noreply.github.com>

* feat: additional work on image drag-and-drop

* chore: updated documentation

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rfc1437 <774975+rfc1437@users.noreply.github.com>
Co-authored-by: hugo <hugoms@me.com>
2026-03-12 21:04:45 +01:00
Georg Bauer
1b4ab08c37 Cleanup/code cleanup 2026 03 (#45)
* chore: cleanup of unused exports and stuff

* fix: media and languages was broken for english media

* fix: embedding model load was broken on standalone

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-10 19:54:38 +01:00
Georg Bauer
b855d61524 Feature/post media translations (#42)
* chore: updated todo with translation ideas

* feat: first take at the implementation of translations

* fix: small addition for the translation feature

* feat: support language switching in the editor and preview

* feat: better handling of long bodies by not running them through a json envelope

* fix: unknown macros have better fallback

* feat: api for python to get translations

* fix: strip dumb prefix of content in translation

* feat: extend meta diff for translations

* feat: hook up translations to rebuild-from-disk

* feat: generation of the website prefers project language, falling back to canonical language

* fix: crashes during rendering

* feat: translation validation report

* fix: made the translation validation actually work

* chore: reorganization of menu

* fix: some topics cleanup

* chore: updated doc

* feat: translations for media

* feat: more aligned in UI/UX

* feat: edit translations possible

* chore: added full multi-language todo

* chore: updated todo for clarity

* feat: implementation of full multi-linguality

* fix: page creation creates pages

* fix: flags on every page

* fix: better prompt

* feat: made MCP server aware of language content

* feat: python tools for translations

* fix: better fill-in-translations

* fix: better prompt for translation. maybe.

* fix: losing posts from search due to translation process

* fix: translation validation handles in-db content and fill-in of missing translations fixed to flush

* fix: faster scanning for infilling of missing translations

* chore: updated agent instructions

* feat: calendar and tag cloud respect current language now

* fix: retries going up

* fix: got metadata-diff and rebuild into sync

* fix: extended meta-diff for timestamps

* fix: made website validation look at translated content, too

* fix: multi-lingual search

* chore: refactor Editor.tsx into two separate editors

* feat: do language detection when no explicit language given

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-09 14:43:18 +01:00
Georg Bauer
f1c9038803 Fix/post list excerpt rendering (#41)
* feat: use excerpts in post lists

* chore: made testing less noisy

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-07 10:15:57 +01:00
Georg Bauer
9871cb827f Feature/ai post suggestions (#40)
* feat: first cut on ai suggestion system for title and summary

* feat: completion of titling/excerpt/slug-suggestion AI quick action

* feat: feeds use existing excerpts. also documentation.

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-07 09:54:13 +01:00
Georg Bauer
7e1e8981a3 Feature/semantic similarity (#36)
* fix: mixed up migrations

* feat: semantic similarity first take

* feat: semantic similarity first round of fixes

* feat: more work on making semantic similarity work properly

* feat: getPostBySlug for the AI

* feat: show similarity in post-link-insert-modal

* chore: remove done doc

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-05 22:05:32 +01:00
Georg Bauer
c4a032346c Feature/python api image discovery (#34)
* Expose chat.analyzeMediaImage in Python API for batch image metadata generation

* Fix updateMedia losing linkedPostIds by reading existing sidecar before overwriting

* Also preserve author from sidecar when DB value is null (data drift)

* Extend MetadataDiffEngine to cover media, scripts, and templates

* Redesign MetadataDiffPanel: item-first view with field pills, filtering, and per-item multi-field diffs

* Fix task:progress startsWith crash (taskId not id) and nested button violation in field pills

* Populate field diffs for file-missing items and show fileMissing badge in UI

* feat: extended meta diff

* feat: meta diff als reconstructs orphans

* chore: updated documentation

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-04 22:37:43 +01:00
Georg Bauer
08ef72a802 fix: unified handling of editor reloading (#32)
Co-authored-by: hugo <hugoms@me.com>
2026-03-04 09:28:20 +01:00
Georg Bauer
32b66e1677 Feat/language detection (#31)
* feat: implementation of language detection

* run utility scripts in tasks

* fix: addiitonal fixes for background utilities

* feat: toast() also for utility scripts

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-03 14:36:15 +01:00
Georg Bauer
5747925503 Feature/lmstudio provider (#30)
* chore: just a plan update

* Add LM Studio as local AI provider (OpenAI-compatible, like Ollama)

* Convert WebP thumbnails to JPEG before image analysis for LM Studio compatibility

* Strengthen language enforcement in image analysis prompt for local models

* Use i18n localized prompts for image analysis instead of English instructions

* Add airplane mode (Flugmodus) with status bar toggle and offline model preferences

* Fix flightmode: persist model IDs, skip network when offline, airplane icon

* Auto-fallback to offline models in airplane mode for chat, title, and image analysis

* Auto-select first local model as offline fallback when no explicit offline model configured

* Block git fetch/pull/push and site upload in airplane mode

* fix: thumbnails optimized for AI

* fix: error handling in airplane mode

---------

Co-authored-by: hugo <hugoms@me.com>
2026-03-02 13:35:42 +01:00
6a0dbb6511 refactor: switch mindmap layout from d3-hierarchy to dagre with word wrapping 2026-03-01 22:29:49 +01:00
78aa59e0a3 fix: center and balance mindmap layout with left/right splitting 2026-03-01 22:15:08 +01:00
71d05a0fa5 feat: add render_mindmap a2ui tool with d3-hierarchy layout 2026-03-01 22:09:17 +01:00
a508981400 Block external images in chat markdown renderer (CSP compliance) 2026-03-01 20:10:25 +01:00
c911ec2354 feat: add Mistral AI as first-class alternative provider 2026-03-01 14:41:42 +01:00
aedd013d88 fix: remove button for mcp server install 2026-02-28 22:09:34 +01:00
0ce6da57ce fix: tab title for templates 2026-02-27 21:47:45 +01:00
a38954101c fix: some smaller pieces still missing 2026-02-27 21:15:03 +01:00
696b79c5d7 fix: race condition and delete checking for templates 2026-02-27 20:45:56 +01:00
6c2d2c48bf fix: hooked up python API for templates 2026-02-27 20:31:25 +01:00
f3364999ee feat: user-managed templates 2026-02-27 20:00:53 +01:00
e25a0d85a5 fix: apply editor fix also to script editor 2026-02-27 17:45:43 +01:00
84376cda01 fix: problems during editing (cursor jumping) 2026-02-27 17:41:50 +01:00
8051e716a1 feat: collapsed metadata for posts 2026-02-27 16:53:13 +01:00
bd10825e74 feat: wiki like linkage for posts 2026-02-27 16:36:45 +01:00
f9527b384b fix: transform handlers don't auto-open bottom panel unnecessarily 2026-02-27 15:05:00 +01:00
ed0551be27 fix: status bar overflow cut off dropdowns in status bar 2026-02-27 14:08:41 +01:00
a1865d63a5 fix: some small rework for doc alignment 2026-02-27 12:37:44 +01:00
18e0557ef5 fix: next round of cleanups 2026-02-27 11:26:00 +01:00
dc62937fdc fix: third round of workover 2026-02-27 09:53:36 +01:00
467ef10e77 fix: second work-over 2026-02-27 09:06:56 +01:00
copilot-swe-agent[bot]
fda97c0977 Address code review: add error logging, fix type cast, improve error messages
Co-authored-by: rfc1437 <774975+rfc1437@users.noreply.github.com>
2026-02-26 21:57:16 +00:00
copilot-swe-agent[bot]
c9b9d30c7d Add comprehensive tests for Python macro integration
Co-authored-by: rfc1437 <774975+rfc1437@users.noreply.github.com>
2026-02-26 21:48:05 +00:00
9149c21bdf fix: prompt caching, conversation length management and token usage display 2026-02-26 20:07:06 +01:00
daf8addb53 fix: a2ui actions were not wired up at all 2026-02-26 19:19:31 +01:00
8a50e50f54 feat: better heatmap styling 2026-02-26 13:18:24 +01:00
6fa7ac09b8 feat: replay of took calls for a2ui elements 2026-02-26 12:19:09 +01:00
a3c571f7cd fix: layout fixes 2026-02-26 12:09:27 +01:00
121aa6a9f7 feat: finally a good working state 2026-02-26 11:55:21 +01:00
00a9d22a36 wip: more rework and docs 2026-02-26 11:01:17 +01:00
affd62ca79 wip: complete rework first round 2026-02-26 09:27:22 +01:00
2a923c7e48 wip: desparate models fucking around 2026-02-26 00:13:52 +01:00
021cddefa3 wip: still working on agentic UI 2026-02-25 23:14:43 +01:00
20ea499a6f wip: first run of implementation 2026-02-25 20:29:01 +01:00
fcdf869a7c wip: agui integration 2026-02-25 19:51:58 +01:00
a8b50d610f fix: fixed script work on distributed apps 2026-02-24 21:31:56 +01:00
c3aacd7776 feat: hooked the APIs of the app into the pyoide core. 2026-02-24 20:58:10 +01:00