aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared (follow)
Commit message (Collapse)AuthorAgeFilesLines
* feat(rss): Add import tags from RSS feed categories (#2031)Mohamed Bassem2025-11-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat(feeds): Add import tags from RSS feed categories - Add importTags boolean field to rssFeedsTable schema (default: false) - Create database migration 0063_add_import_tags_to_feeds.sql - Update zod schemas (zFeedSchema, zNewFeedSchema, zUpdateFeedSchema) to include importTags - Update Feed model to handle importTags in create and update methods - Update feedWorker to: - Read title and categories from RSS parser - Attach categories as tags to bookmarks when importTags is enabled - Log warnings if tag attachment fails Resolves #1996 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Mohamed Bassem <MohamedBassem@users.noreply.github.com> * feat(web): Add importTags option to feed settings UI - Add importTags toggle to FeedsEditorDialog (create feed) - Add importTags toggle to EditFeedDialog (edit feed) - Display as a bordered switch control with descriptive text - Defaults to false for new feeds Co-authored-by: Mohamed Bassem <MohamedBassem@users.noreply.github.com> * fix migration * remove extra migration --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Mohamed Bassem <MohamedBassem@users.noreply.github.com>
* feat: Make search job timeout configurableMohamed Bassem2025-11-021-0/+2
|
* fix: Stricter SSRF validation (#2082)Mohamed Bassem2025-11-021-1/+24
| | | | | | | | | | | | | | | | | | | * fix: Stricter SSRF validation * skip dns resolution if running in proxy context * more fixes * Add LRU cache * change the env variable for internal hostnames * make dns resolution timeout configerable * upgrade ipaddr * handle ipv6 * handle proxy bypass for request interceptor
* feat: Allow configuring inline asset size thresholdMohamed Bassem2025-10-261-0/+2
|
* fix(inferance): skip token slicing when content is already witin max lengthMohamed Bassem2025-10-261-0/+3
|
* fix: update OpenAI API to use max_completion_tokens instead of max_tokens ↵Benjamin Michaelis2025-10-252-2/+8
| | | | | | | | | | (#2000) * fix: update OpenAI API to use max_completion_tokens instead of max_tokens The OpenAI API has deprecated max_tokens in favor of max_completion_tokens for newer models. This change updates both text and image model calls. * feat: add support for max_completion_tokens in OpenAI inference configuration
* feat: Add source field to track bookmark creation sources (#2037)Mohamed Bassem2025-10-121-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat: Add source field to track bookmark creation sources Add a new 'source' field to the bookmarks table to track where bookmarks were created from. Possible values: api, web, cli, mobile, singlefile, rss. Changes: - Add source field to bookmarks table schema - Update Zod schemas to include source field - Update tRPC createBookmark procedure to store source - Update all callsites to pass appropriate source value: - api: Default to "api" if not provided - singlefile: Set to "singlefile" - rss: Set to "rss" in feedWorker - cli: Set to "cli" - mobile: Set to "mobile" in all mobile app bookmark creation - browser-extension: Set to "web" - web: Set to "web" in all web app bookmark creation - Create migration file for database schema change Fixes #2036 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Mohamed Bassem <MohamedBassem@users.noreply.github.com> * feat: Add extension source type for browser extension - Add 'extension' to bookmark source enum - Update browser extension to use 'extension' instead of 'web' Co-authored-by: Mohamed Bassem <MohamedBassem@users.noreply.github.com> * fix CI * fix CI * fix the migration file * add import source * make source nullish --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: Mohamed Bassem <MohamedBassem@users.noreply.github.com>
* feat: support passing multiple proxy values (#2039)Mohamed Bassem2025-10-121-2/+18
| | | | | | | * feat: support passing multiple proxy values * fix typo * trim and filter
* feat: Add service dependency checks in the server overview pageMohamed Bassem2025-10-121-0/+8
|
* fix: Correct grammatical errors in prompts (#2020)atsggx2025-10-111-2/+2
| | | Corrected "who's" to "whose" in buildImagePrompt and buildTextPrompt.
* feat: Restate-based queue plugin (#2011)Mohamed Bassem2025-10-051-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: Initial restate integration * add retry * add delay + idempotency * implement concurrency limits * add admin stats * add todos * add id provider * handle onComplete failures * add tests * add pub key and fix logging * add priorities * fail call after retries * more fixes * fix retries left * some refactoring * fix package.json * upgrade sdk * some test cleanups
* feat: Revamp import experience (#2001)Mohamed Bassem2025-10-044-18/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * WIP: import v2 * remove new session button * don't redirect after import * store and lint to root list * models + tests * redesign the progress * simplify the import session for ow * drop status from session schema * split the import session page * i18n * fix test * remove pagination * fix some colors in darkmode * one last fix * add privacy filter * privacy check * fix interactivity of import progress * fix test
* feat: Add tag search and pagination (#1987)Mohamed Bassem2025-09-282-0/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * feat: Add tag search and use in the homepage * use paginated query in the all tags view * wire the load more buttons * add skeleton to all tags page * fix attachedby aggregation * fix loading states * fix hasNextPage * use action buttons for load more buttons * migrate the tags auto complete to the search api * Migrate the tags editor to the new search API * Replace tag merging dialog with tag auto completion * Merge both search and list APIs * fix tags.list * add some tests for the endpoint * add relevance based sorting * change cursor * update the REST API * fix review comments * more fixes * fix lockfile * i18n * fix visible tags
* refactor: Move callsites to liteque to be behind a pluginMohamed Bassem2025-09-145-236/+100
|
* refactor: strongly type the search plugin interfaceMohamed Bassem2025-09-141-3/+19
|
* feat(search): add title search qualifier (#1940)Mohamed Bassem2025-09-133-1/+50
| | | | | | | * fix(search): include link titles in title matcher * docs(search): add title qualifier * docs: remove title qualifier from v0.27 guide
* feat: Add cookie support for browser page accessMohamed Bassem2025-09-071-0/+2
| | | | | | | | | | | * feat: Add cookie support for browser page access Implemented cookie functionality for browser page access, including BROWSER_COOKIE_PATH configuration to specify the cookies JSON file path. * fix the docs --------- Co-authored-by: lizz <lizong1204@gmail.com>
* feat(workers): add worker enable/disable lists (#1885)Mohamed Bassem2025-09-071-0/+20
|
* feat: add gif asset type support (#1876)Drashi2025-09-071-0/+2
| | | | | | | | | * feat: add gif asset type support * skip inference for gis --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* fix: Reduce polling interval on meilisearch tasksMohamed Bassem2025-09-061-2/+1
|
* fix: Incremental polling interval for ongoing crawlsMohamed Bassem2025-08-311-13/+32
|
* fix: Respect wal mode for the queue dbMohamed Bassem2025-08-302-2/+4
|
* fix: handle list with slashes in their names and truncate long list names. ↵Mohamed Bassem2025-08-307-7/+986
| | | | fixes #1597
* feat(mobile): Retheme the mobile app (#1872)Mohamed Bassem2025-08-261-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add nativewindui * migrate to nativewindui text * Replace buttons with nativewindui buttons * Use nativewindui search input * fix the divider color * More changes * fix manage tag icon * fix styling of bookmark card * fix ios compilation * fix search clear * fix tag pill border color * Store theme setting in app settings * fix setting color appearance * fix coloring of search input * fix following system theme * add a save button to info * fix the grey colors on android * fix icon active tint color * drop the use of TextField
* feat: Export prometheus metrics from the workersMohamedBassem2025-08-221-0/+8
|
* feat: generate a random prometheus token on startupMohamedBassem2025-08-221-1/+3
|
* feat: Support video uploads and attachments (#1847)Evan Sharp2025-08-221-0/+10
| | | | | | | | This commit allows the following mime types to be uploaded and attached as video assets on bookmarks. - video/mp4 - video/webm - video/x-matroska
* deps: Upgrade expo & nextjs to react 19 (#1565)Mohamed Bassem2025-08-201-10/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Attempt to upgrade expo 53 * Attempt upgrade nextjs * Fix a bunch of peer deps * upgrade some docs deps * fix typecheck * update the shadcn calendar component * more fixes * more fixes * revert ollama upgrade * update react version to use carets * remove react-select from landing * fix the typescript error caused by customFetch * upgrade the new grid user setting to nextjs 15 * mobile: enable react canary to support react 19.1 * upgrade react native menu * fix navigation context error
* fix: Trim trailing slashes from nextauth urls. Fixes #1799MohamedBassem2025-08-031-1/+5
|
* refactor: Refactor crawlerWorker to use tryCatchMohamedBassem2025-07-271-0/+24
|
* fix: fix hidden env variable parse error. fixes #1790MohamedBassem2025-07-271-167/+164
|
* feat: Support NO_COLOR for logging. Fixes #1778MohamedBassem2025-07-272-1/+3
|
* refactor: Extract meilisearch as a pluginMohamedBassem2025-07-274-71/+92
|
* chore: More turbo fixesMohamedBassem2025-07-271-2/+2
|
* fix: Fix package boundary violationsMohamedBassem2025-07-271-0/+1
|
* deps: Upgrade viteMohamed Bassem2025-07-261-1/+1
|
* feat: Hide AI settings tab if inference is not configured. #1781Mohamed Bassem2025-07-261-3/+2
|
* feat: Add a max output tokens env variableMohamed Bassem2025-07-202-1/+5
|
* i18n: Add new translationsMohamed Bassem2025-07-201-0/+5
|
* fix: Run workers in prod without tsx. Fixes #1673Mohamed Bassem2025-07-191-1/+1
|
* feat: Allow setting browserless crawling per userMohamed Bassem2025-07-192-4/+9
|
* feat: Allow enabling journaling mode on the dbMohamed Bassem2025-07-191-0/+6
|
* fix: Rename the proxy settings such that they don't interfer with other requestsMohamed Bassem2025-07-191-6/+6
|
* feat: Add stripe based subscriptionsMohamed Bassem2025-07-131-0/+28
|
* feat: Add delete account supportMohamed Bassem2025-07-131-0/+1
|
* fix: Drop auth failure loggerMohamed Bassem2025-07-131-19/+0
|
* feat: Add proper proxy support. fixes #1265Mohamed Bassem2025-07-131-0/+10
|
* fix: Prioritize crawling user added links over bulk imports. fixes #1717Mohamed Bassem2025-07-123-37/+33
|
* feat: Support forget and reset passwordMohamed Bassem2025-07-121-1/+7
|
* feat: Add API ratelimitsMohamed Bassem2025-07-101-0/+6
|