| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feature: Persevere the source URL of clipped texts from the extension. | MohamedBassem | 2024-10-05 | 1 | -2/+13 |
| | | | | | Fixes #448 | ||||
| * | feature(web): Async validate JWT account and sign out the user if they no ↵ | MohamedBassem | 2024-10-05 | 1 | -2/+11 |
| | | | | | longer exist | ||||
| * | feature(web): Add ability to manually trigger full page archives. Fixes #398 ↵ | kamtschatka | 2024-09-30 | 1 | -1/+7 |
| | | | | | | | | | | | | | | (#418) * [Feature Request] Ability to select what to "crawl full page archive" #398 Added the ability to start a full page crawl for links and also in bulk operations added the ability to refresh links as a bulk operation as well * minor icon and wording changes --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | feature(web): Add ability to rerun inference on all bookmarks. Fixes 443 | MohamedBassem | 2024-09-29 | 1 | -0/+11 |
| | | |||||
| * | feature(web): Add the ability to customize the inference prompts. Fixes #170 | MohamedBassem | 2024-09-29 | 2 | -0/+116 |
| | | |||||
| * | fix(web):Add validation on updateTags request to ensure that an empty ↵ | kamtschatka | 2024-09-26 | 2 | -10/+39 |
| | | | | | | | | | | | | | tagName doesn't attach all tags to a bookmark #421 (#428) * [Bug Report] Importing bookmarks adds all tags to all bookmarks #421 fixed an issue that caused all existing tags to be assigned to a new bookmark * Add validation on the input of update tags to ensure that its not empty --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | feature(web): Show attachments and allow users to manipulate them. | MohamedBassem | 2024-09-22 | 3 | -9/+267 |
| | | |||||
| * | feature(extension): Allow login directly with an API key | kamtschatka | 2024-09-21 | 1 | -1/+10 |
| | | | | | | | | | | | * [Feature request] NextAuth Providers for OAuth/SSO #92 Added API key based authentication to the extension to make the extension usable when OAuth is in use * Minor UI tweak --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | feature(web): Preserve title, tags and createdAt when importing a netscape ↵ | MohamedBassem | 2024-09-21 | 1 | -0/+1 |
| | | | | | html. Fixes #401 | ||||
| * | deps: Upgrade drizzle and next auth drizzle adapter | MohamedBassem | 2024-09-15 | 1 | -1/+1 |
| | | |||||
| * | fix: Fix deleting tags broken due to wrong column name | MohamedBassem | 2024-09-15 | 1 | -1/+7 |
| | | |||||
| * | feature(cli): Allow updating tags/lists from CLI (#211) | kamtschatka | 2024-07-27 | 2 | -17/+62 |
| | | | | | | | | | | | | | * Improve the CLI #209 added the possibility to assign tags to bookmarks while creating added the possibility to assign a newly created to a list right away added the possibility to add and remove tags from bookmarks * minor tweaks --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | fix: async/await issues with the new queue (#319) | kamtschatka | 2024-07-21 | 2 | -11/+13 |
| | | |||||
| * | refactor: Replace the usage of bullMQ with the hoarder sqlite-based queue (#309) | Mohamed Bassem | 2024-07-21 | 2 | -16/+16 |
| | | |||||
| * | refactor: fixed typos in BookmarkTypes (#268) | kamtschatka | 2024-07-01 | 1 | -3/+3 |
| | | |||||
| * | fix: Increase list name size to max 40 chars up from 20. Fixes #254 | MohamedBassem | 2024-07-01 | 1 | -1/+1 |
| | | |||||
| * | fix: Fix duplicate bookmarks in links with assets | MohamedBassem | 2024-07-01 | 1 | -1/+5 |
| | | |||||
| * | refactor: added the bookmark type to the database (#256) | kamtschatka | 2024-07-01 | 2 | -63/+80 |
| | | | | | | | | | | | | | | | | | | * refactoring asset types Extracted out functions to silently delete assets and to update them after crawling Generalized the mapping of assets to bookmark fields to make extending them easier * Added the bookmark type to the database Introduced an enum to have better type safety cleaned up the code and based some code on the type directly * add BookmarkType.UNKNWON * lint and remove unused function --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | refactor: remove redundant code from crawler worker and refactor handling of ↵ | kamtschatka | 2024-06-29 | 1 | -33/+17 |
| | | | | | | | | | | | | | | asset types (#253) * refactoring asset types Extracted out functions to silently delete assets and to update them after crawling Generalized the mapping of assets to bookmark fields to make extending them easier * revert silentDeleteAsset and hide better-sqlite3 --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | refactor: extract assets into their own database table. #215 (#220) | kamtschatka | 2024-06-23 | 1 | -20/+65 |
| | | | | | | | | | | | | | | | | | | | | * Allow downloading more content from a webpage and index it #215 added a new table that contains the information about assets for link bookmarks created migration code that transfers the existing data into the new table * Allow downloading more content from a webpage and index it #215 removed the old asset columns from the database updated the UI to use the data from the linkBookmarkAssets array * generalize the assets table to not be linked in particular to links * fix migrations post merge * fix missing asset ids in the getBookmarks call --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | feature: add support for PDF links. Fixes #28 (#216) | kamtschatka | 2024-06-22 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | * feature request: pdf support #28 Added a new sourceUrl column to the asset bookmarks Added transforming a link bookmark pointing at a pdf to an asset bookmark made sure the "View Original" link is also shown for asset bookmarks that have a sourceURL updated gitignore for IDEA * remove pdf parsing from the crawler * extract the http logic into its own function to avoid duplicating the post-processing actions (openai/index) * Add 5s timeout to the content type fetch --------- Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | fix: Remove the bookmark update text limit (#244) | Ahmad Mujahid | 2024-06-22 | 1 | -1/+1 |
| | | |||||
| * | fix: Trigger search re-index on bookmark tag manual updates. Fixes #208 (#210) | kamtschatka | 2024-06-09 | 3 | -45/+23 |
| | | | | | | | | | | | | | * re-index of database is not scanning all places when bookmark tags are changed. Manual indexing is working as workaround #208 introduced a new function to trigger a reindex to reduce copy/paste added missing reindexes when tags are deleted/bookmarks are updated * give functions a bit more descriptive name --------- Co-authored-by: kamtschatka <simon.schatka@gmx.at> Co-authored-by: MohamedBassem <me@mbassem.com> | ||||
| * | feature: Full page archival with monolith. Fixes #132 | MohamedBassem | 2024-05-26 | 1 | -0/+3 |
| | | |||||
| * | fix: Fix missing bookmarks during pagination if they got created in the same ↵ | MohamedBassem | 2024-05-19 | 2 | -6/+91 |
| | | | | | second. Fixes #140 | ||||
| * | tests: Add tests for bookmark deduplication | MohamedBassem | 2024-05-12 | 1 | -0/+38 |
| | | |||||
| * | feature: Dedup links on creation. Fixes #49 | MohamedBassem | 2024-05-06 | 3 | -101/+134 |
| | | |||||
| * | feature: Allow users to delete all unused tags in one go | MohamedBassem | 2024-04-26 | 1 | -2/+24 |
| | | |||||
| * | fix: Fix error when merging empty tags | MohamedBassem | 2024-04-26 | 1 | -9/+11 |
| | | |||||
| * | fix: Change tag listing API to return unused tags | MohamedBassem | 2024-04-26 | 1 | -31/+28 |
| | | |||||
| * | fix: Re-index affected bookmarks when one of their tags gets updated | MohamedBassem | 2024-04-26 | 1 | -30/+78 |
| | | |||||
| * | feature(web): Add ability to rename, merge and fast delete tags. Fixes #105 ↵ | Mohamed Bassem | 2024-04-25 | 1 | -33/+149 |
| | | | | | | | | (#125) * feature(web): Allow deleting tags from the all tags page * feature(web): Add ability to rename, merge and fast delete tags. Fixes #105 | ||||
| * | feature(extension): Allow adding tags and lists to newly hoarded bookmarks | MohamedBassem | 2024-04-23 | 1 | -0/+20 |
| | | |||||
| * | feature: Allow recrawling bookmarks without running inference jobs | MohamedBassem | 2024-04-20 | 1 | -0/+2 |
| | | |||||
| * | feature: Download images and screenshots | MohamedBassem | 2024-04-20 | 1 | -4/+37 |
| | | |||||
| * | feature: Nested lists (#110). Fixes #62 | Mohamed Bassem | 2024-04-19 | 1 | -30/+49 |
| | | | | | | * feature: Add support for nested lists * prevent moving the parent to a subtree | ||||
| * | refactor: Move the shared types to the shared package | MohamedBassem | 2024-04-18 | 9 | -204/+13 |
| | | |||||
| * | feature: Add title to bookmarks and allow editing them. Fixes #27 | MohamedBassem | 2024-04-15 | 2 | -0/+5 |
| | | |||||
| * | feature(web): Allow changing the bookmark grid layout (#98) | Mohamed Bassem | 2024-04-14 | 2 | -0/+26 |
| | | |||||
| * | fix: Differentiate between pending in db and in redis in admin job stats | MohamedBassem | 2024-04-12 | 1 | -18/+52 |
| | | |||||
| * | feature: Recrawl failed links from admin UI (#95) | Ahmad Mujahid | 2024-04-11 | 1 | -19/+45 |
| | | | | | | * feature: Retry failed crawling URLs * fix: Enhancing visuals and some minor changes. | ||||
| * | feature: Add PDF support (#88) | Ahmad Mujahid | 2024-04-11 | 3 | -1/+6 |
| | | | | | | | | | | | | | | | | | | | | * feature: Add PDF support * fix: PDF feature enhancements * fix: Freeze expo-share-intent version to prevent breaking changes * fix: set endOfLine to auto for cross-platform development * fix: Upgrading eslint/parser and eslint-plugin to 7.6.0 to solve the linting issues * fix: enhancing PDF feature * fix: Allowing null in fiename for backward compatibility * fix: update pnpm file with pnpm 9.0.0-alpha-8 * fix:(web): PDF Preview for web | ||||
| * | feature(web): Allow uploading directly into lists/tags. Fixes #69 | MohamedBassem | 2024-04-09 | 2 | -19/+54 |
| | | |||||
| * | fix: Refresh the all tags page automatically when a tag is modified | MohamedBassem | 2024-04-06 | 2 | -29/+29 |
| | | |||||
| * | feature: Change archived meaning to only mean removed from homepage | MohamedBassem | 2024-04-06 | 1 | -10/+2 |
| | | |||||
| * | fix: Delete user's assets when the user is deleted | MohamedBassem | 2024-04-05 | 1 | -0/+2 |
| | | |||||
| * | fix: Incorrect counts for tags in the AllTags page. Fixes #78 | MohamedBassem | 2024-04-03 | 1 | -2/+2 |
| | | |||||
| * | feature: Split the tags in AllTags page by who used them | MohamedBassem | 2024-03-31 | 1 | -21/+56 |
| | | |||||
| * | feature: Add support deleting tags | MohamedBassem | 2024-03-31 | 1 | -0/+26 |
| | | |||||
| * | format: Add missing lint and format, and format the entire repo | MohamedBassem | 2024-03-30 | 14 | -54/+65 |
| | | |||||
