aboutsummaryrefslogtreecommitdiffstats
path: root/apps (follow)
Commit message (Collapse)AuthorAgeFilesLines
* feat: Add proper proxy support. fixes #1265Mohamed Bassem2025-07-132-9/+87
|
* fix(web): Fix the alignment in the user options pageMohamed Bassem2025-07-121-4/+1
|
* deps: Upgrade typescript to 5.8Mohamed Bassem2025-07-123-3/+3
|
* deps: Upgrade drizzleMohamed Bassem2025-07-122-2/+2
|
* fix(web): Fix dark mode in auth pagesMohamed Bassem2025-07-126-10/+10
|
* fix(tests): Fix missing mock in trpc testsMohamed Bassem2025-07-121-1/+0
|
* fix: Prioritize crawling user added links over bulk imports. fixes #1717Mohamed Bassem2025-07-126-24/+57
|
* feat: Support forget and reset passwordMohamed Bassem2025-07-125-0/+397
|
* feat(ui): Revamp the signin/signup pageMohamed Bassem2025-07-126-238/+393
|
* feat: Add invite user supportMohamed Bassem2025-07-108-106/+790
|
* feat: Add support for email verificationMohamed Bassem2025-07-104-15/+329
|
* fix: Drop the need to for the self-call for providers and NEXTAUTH_INTERNAL_URLMohamed Bassem2025-07-072-5/+9
|
* feat: Add a logout pageMohamed Bassem2025-07-071-0/+18
|
* fix: Fix search indexing after content splitMohamed Bassem2025-07-061-7/+4
|
* fix(web): Clicking on search tooltip opens the search language guide. Fixes ↵Mohamed Bassem2025-07-062-5/+10
| | | | #1540
* feat: Store large html content in the asset dbMohamed Bassem2025-07-066-10/+144
|
* fix(mobile): Fix crash when bookmark doesn't have archive or screenshot. ↵Mohamed Bassem2025-07-062-26/+65
| | | | Fixes #1584
* feat: Add a new timezone user settingMohamed Bassem2025-07-063-3/+94
|
* fix: Fix i18n in the new stats pageMohamed Bassem2025-07-063-37/+108
|
* feat: Add per user storage quotaMohamed Bassem2025-07-066-75/+216
|
* feat: Add new user stats page. Fixes #1523Mohamed Bassem2025-07-063-0/+504
|
* feat(workers): Allow custmoizing max parallelism for a bunch of workers. ↵Mohamed Bassem2025-07-056-6/+8
| | | | Fixes #724
* fix(workers): A more lenient JSON parsing for LLM responses. Fixes #1267Mohamed Bassem2025-07-041-1/+39
|
* refactor: Move the health endpoint to hono as wellMohamed Bassem2025-07-041-8/+0
|
* refactor: Move the trpc endpoint to honoMohamed Bassem2025-07-041-22/+0
|
* feat: Add per user bookmark count quotaMohamed Bassem2025-07-043-160/+197
|
* fix(web): Add icons to preview selectorsMohamed Bassem2025-07-041-4/+19
|
* fix(mcp): add empty params object (#1697)Baitazar2025-07-041-1/+3
|
* fix: switch import / export icons (#1682)Harry Peach2025-06-291-2/+2
|
* fix(workers): Disable the metascraper readability as it's causing slowness ↵Mohamed Bassem2025-06-221-2/+0
| | | | in worker
* fix(workers): Fix jsdom console logs leaking into worker logsMohamed Bassem2025-06-221-2/+3
|
* feat(workers): adding a local metascraper plugin for Reddit posts (#1302)David Woods2025-06-223-13/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * chore: metascraper 5.x comes with its own types, including @types/metascraper is now redundant; also updating to latest versions of metascraper libraries * feat (workers): creating a local metascraper plugin for Reddit posts In the past, the preview images for bookmarks from Reddit links were poorly chosen. Reddit does not use opengraph tags, so metascraper-images simply looked for all images on the page and returned the first. This tended to be the profile picture for the poster for the Reddit link. This new plugin, using the existing metascraper framework, provides a better selection of image for the bookmark when the URL domain is 'reddit'. In addition, recent changes (I believe this was a side effect of adding the metascraper-author and/or the metascaper-publisher plugins, but it could also be related to the metascraper-readibility plugin) broke what used to be a good choice of bookmark title. Previously, titles looked like 'Tinyauth just reached 1000 stars! : r/selfhosted' with both thread title and subreddit mentioned. After this update, all Reddit posts now have the same title: 'The heart of the internet'. To return to the better format, this new metascraper-reddit plugin now attempts to retrieve the better title from reddit URLs. Note that in order to gain precendence in title selection, the 'metascraperReddit()' inclusion in the crawlerWorkers.ts metascraper instantiation list had to be moved above metascraperReadability(). * chore: updated Hoarder in text to Karakeep * chore: update metascraper versions fix for metascraper types has been merged; the expect-error comment can be removed * chore: merge with master --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* feat(workers): migrate from puppeteer to playwright (#1296)Mael2025-06-222-34/+39
| | | | | | | | | | | | | | | | | | | | | | | * feat: convert to playwright Convert crawling to use Playwright instead of Chrome. - Update Dockerfile to include Playwright - Update crawler worker to use Playwright API - Update dependencies * feat: convert from Puppeteer to Playwright for crawling * feat: update docker-compose * use separate browser context for better isolation * skip chrome download in linux script * readd the stealth plugin --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* feat(mobile): Add tag clearing functionality to tag list (#1595)Ashok Úradníček2025-06-221-1/+31
|
* fix(mobile): always visible search bar in tags list (#1596)Ashok Úradníček2025-06-221-0/+1
|
* chore: More oxlint changesMohamed Bassem2025-06-2211-36/+13
|
* chore: migrate away from eslint to oxlint (#1642)xuatz2025-06-2236-96/+252
| | | | | | | * chore: migrate away from eslint to oxlint * revert turbo task name lint * it seems like we can remove the seemingly default globals
* fix: Fix webhook not firing on deletion. Fixes #1613Mohamed Bassem2025-06-211-18/+19
|
* feat(admin): add confirmation dialog for user deletion (#1648) (#1649)Deepanshu Saini2025-06-212-10/+32
| | | | | | | | | * feat(admin): add confirmation dialog for user deletion (#1648) * No need to manage dialog state --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* fix: Fix oauth creation failure due to missing UserSettings table. Fixes #1583Mohamed Bassem2025-06-212-9/+26
|
* fix(mobile): tweaks to mobile app icon padding + added iOS tinted variant ↵Alex Stevenson-Price2025-06-213-1/+4
| | | | | | | (#1620) * Added more padding to mobile app icon * Added iOS tinted app icon variant
* fix(workers): video downloader should log yt-dlp errors (#1624)irobot2025-06-211-3/+6
| | | | In the event that yt-dlp errors out, the error details should be logged. yt-dlp prints out the error message to stderr.
* i18n: Add Greek translation (#1564)apo-mak2025-06-151-0/+481
| | | | | * Add Greek translation * pnpm format:fix
* release(cli): Bump CLI version to 0.25.0Mohamed Bassem2025-06-151-1/+1
|
* fix: Fix UI infinite recursion by upgrading radix packagesMohamed Bassem2025-06-083-25/+25
|
* deps: upgrade to pnpm@9.15.9 (#1544)xuatz2025-06-084-29/+29
| | | | | | | | | | | | | * feat: upgrade to pnpm@9.15.9 * extra stuff * unpin mobile deps * unpin root package.json deps too --------- Co-authored-by: Mohamed Bassem <me@mbassem.com>
* release(mcp): Release mcp 0.25.0Mohamed Bassem2025-06-081-1/+1
|
* release(extension): Bump extension version to 1.2.6Mohamed Bassem2025-06-081-1/+1
|
* release(mobile): Bump mobile version to 1.7.0Mohamed Bassem2025-06-081-3/+3
|
* ci: Fix manifest formattingMohamed Bassem2025-06-081-8/+2
|