Commit graph

30 commits

Author SHA1 Message Date
sudipnext
8c3bc13542 Merge branch 'main' into refactor/presenton-chat-stream 2026-04-27 19:54:01 +05:45
sudipnext
4e87dc8b70 refactor: Update database session management and enhance chat memory services
- Replaced `get_container_db_async_session` with `async_session_maker` for improved session handling in background tasks.
- Refactored chat memory services to utilize a shared `mem0` client for better memory management.
- Introduced new methods for retrieving and storing chat history, integrating with SQL and memory layers.
- Enhanced error handling and response management in chat-related services.
- Cleaned up unused code and improved overall structure for maintainability.
2026-04-25 19:10:39 +05:45
sauravniraula
11904c6cb0
refactor: cleans old unused export files from both docker and electron and uses package for export 2026-04-24 10:12:23 +05:45
Saurav Niraula
6522299f25
Merge pull request #456 from voidborne-d/fix/db-connection-pool-config
fix: configure SQLAlchemy connection pool and dispose engines on shutdown
2026-04-15 18:35:31 +05:45
sudipnext
c13fce42af feat: enhance error handling and add new Ollama models 2026-04-13 21:01:09 +05:45
sudipnext
1aca07a647 feat: add font resolution for presentations and update model to include fonts 2026-04-13 12:31:08 +05:45
sudipnext
fd16768945 refactor: remove Sentry test error handling from main and renderer processes 2026-04-12 19:33:40 +05:45
Sudip Parajuli
48db43e86b
Merge branch 'main' into feat/sentry-setup 2026-04-11 14:54:13 +05:45
sudipnext
9f2168a4c0 fix: allow theme to be None in presentation update 2026-04-10 00:54:46 +05:45
Sudip Parajuli
bd8fd77113
Merge pull request #502 from presenton/fix/various-issues
Fix/various issues
2026-04-08 19:40:06 +05:45
sauravniraula
087d64ed62
feat: implements new template generation flow; refactor: removes old template generation flow and adds new endpoints 2026-04-08 11:25:13 +05:45
sudipnext
cab99c6bd2 feat: Implement stock image search functionality with Pexels and Pixabay integration 2026-04-07 18:00:16 +05:45
sudipnext
cc8f0bb862 feat: Enhance presentation generation features and improve asset handling
- Added MAX_NUMBER_OF_SLIDES constant to limit slide generation.
- Updated GeneratePresentationRequest model to allow optional slide count and language detection.
- Implemented language resolution in edit_slide and generate_presentation_outlines utilities.
- Enhanced user prompts to include optional parameters for slide count and table of contents.
- Introduced outline utilities for managing table of contents and slide outlines.
- Improved image and icon processing in slides to utilize outline image URLs.
- Updated frontend components to resolve backend asset URLs for icons and images.
- Refactored upload components to handle optional slide count and language selection.
- Enhanced API utility functions to resolve backend asset URLs correctly.
2026-04-06 18:28:43 +05:45
sudipnext
b37aae4987 feat: add Sentry error capture methods to ElectronAPI for renderer and main processes 2026-04-06 11:29:08 +05:45
sudipnext
b1e3d826dd feat: integrate Sentry for error tracking in Next.js application
- Added @sentry/nextjs dependency to package.json
- Created sentry.edge.config.ts for edge feature initialization
- Created sentry.server.config.ts for server-side initialization
- Configured Sentry with DSN, tracesSampleRate, logs, and PII settings
2026-04-03 14:22:36 +05:45
sudipnext
172b8e657d feat: enhance Codex user profile management with username, email, and subscription status 2026-04-03 13:26:07 +05:45
sudipnext
6a6afc7ab7 feat: enhance document handling with new conversion service and MIME type support 2026-03-29 18:58:16 +05:45
sudipnext
3207422651 feat: add language parameter to decomposeDocuments API call
- Updated the decomposeDocuments method in PresentationGenerationApi to accept an optional language parameter.
- Modified the UploadPage component to pass the selected language from the config when calling the decomposeDocuments method.
2026-03-28 15:34:53 +05:45
Sudip Parajuli
a516664683
Merge pull request #465 from presenton/libreoffice-win-fix
Libreoffice win fix
2026-03-25 11:30:33 +05:45
sudipnext
43f433597b feat: enhance Windows compatibility for LibreOffice checks and subprocess handling 2026-03-25 09:24:00 +05:45
shiva raj badu
f58f2758ed
fix:Theme issues 2026-03-24 13:08:47 +05:45
sudipnext
7a56045db3 feat: implement theme management and color generation endpoints 2026-03-22 19:43:54 +05:45
voidborne-d
f8156df6f5 fix: configure SQLAlchemy connection pool and dispose engines on shutdown
- Add configurable pool settings via environment variables:
  DB_POOL_SIZE, DB_MAX_OVERFLOW, DB_POOL_TIMEOUT, DB_POOL_RECYCLE,
  DB_POOL_PRE_PING (defaults: 5, 10, 30s, 1800s, true)
- Enable pool_pre_ping by default to detect and recycle stale connections
- Add dispose_engines() called during FastAPI lifespan shutdown to
  release all connections back to the database
- Skip pool configuration for SQLite (uses file-lock, not connection pools)
- Apply changes to both servers/ and electron/ FastAPI instances

Fixes #453 (stale connections exhausting pool)
Fixes #454 (missing pool configuration)
2026-03-20 06:08:54 +00:00
sudipnext
7660379b7d feat: enhance image handling in FastAPI and Next.js with web-safe URLs 2026-03-13 13:34:25 +05:45
sudipnext
d185d10462 feat: implement image path resolution utility to streamline image handling in FastAPI endpoints and PPTX presentation creator 2026-03-08 20:55:20 +05:45
sudipnext
2d462d8df4 feat: implement database migration on startup and update dependencies for FastAPI 2026-03-08 20:05:44 +05:45
sudipnext
73b60ebd8c feat: add LibreOffice availability check and configure soffice binary path for subprocess calls 2026-03-04 15:02:31 +05:45
sudipnext
1523511e97 feat: optimize asset fetching by starting tasks immediately for parallel processing 2026-03-02 17:17:46 +05:45
sudipnext
00be7ee946 feat: integrate Codex OAuth flow and enhance user configuration
- Added Codex-related fields to UserConfig and LLMConfig for managing OAuth tokens and model settings.
- Implemented Codex authentication endpoints and integrated them into the application.
- Enhanced LLMClient to support Codex as a valid provider, including token management and refresh logic.
- Updated UI components to include Codex configuration options and authentication status handling.
- Refactored environment variable utilities to accommodate Codex-specific settings.
2026-02-28 09:08:10 +05:45
sudipnext
9959b5a677 updated 2026-02-20 12:02:23 +05:45