aboutsummaryrefslogtreecommitdiff
path: root/src/app.rs
Commit message (Collapse)AuthorAge
* add forbidden chars to READMElukeflo2025-07-06
|
* quit creating note function if citekey contains special charlukeflo2025-07-05
|
* create note function impllukeflo2025-07-05
|
* first steps for create new notelukeflo2025-07-05
|
* `PopupItem::Citekey` impllukeflo2025-07-04
|
* impl `PopupItem` enum, adapt ui: include colorslukeflo2025-07-04
|
* align resource symbols, update READMElukeflo2025-06-30
|
* update README: note featurelukeflo2025-06-30
|
* opening notes in set editorlukeflo2025-06-30
|
* some more tests for notes, need to elaborate function for opening noteslukeflo2025-06-29
|
* working note-opening action. needs refinement: errors and uilukeflo2025-06-29
|
* add shortcuts for opening files/links and yanking citekeylukeflo2025-06-28
| | | | | + `o-o`|`o-l` -> shortcut for opening first file/link of current entry + `y-y` -> shortcut for yanking citekey of current entry
* impl check for valid filepath, update READMElukeflo2025-06-02
|
* some fixes and test for `file_prefix` with new boollukeflo2025-06-01
|
* better UI for popups, some testingslukeflo2025-05-30
|
* impl open_popup function for all popup caseslukeflo2025-05-30
|
* first steps in rewriting popupslukeflo2025-05-26
|
* implemented a workflow, but citekey matching still buggylukeflo2025-05-24
|
* trim surrounding whitespace of DOI, URL and FILE field: \#20lukeflo2025-05-11
|
* yank multiple fieldslukeflo2025-03-30
| | | | | | + open a selection menu when pressing `y` + select a field: citekey, weblink, filepath + copy value of selected field to clipboard
* add `file_prefix` option to config and opening functionlukeflo2025-02-27
|
* replace Config crate with Figment -> better merging of default and config valueslukeflo2025-02-22
|
* implement working config file construct, error handling should be improvedlukeflo2025-02-21
|
* parse config filelukeflo2025-02-21
| | | | | | | + set default values for config fields + merge fields named in the config file with default values + values from file take precedence over default values + to accomplish this, all config values are wrapped in `Option<T>`
* remove some comments, update READMElukeflo2025-02-19
|
* resource opener in configlukeflo2025-02-19
| | | | | | + implement config field `pdf_opener` for setting app to open PDFs/Epubs + implement config field `url_opener` for setting app to open URLs/DOIs + function to select fallback if no field is provided in config
* Update READMElukeflo2025-02-17
|
* improve file handlinglukeflo2025-02-17
| | | | | | + If config file **and** CLI args have different files/dirs, concat them and open all + Adapt UI to show which files are choosen + TODO: Flag for ignoring config file
* Minor Feature: Sort entries by position in/of filelukeflo2024-12-25
| | | | | + Hitting now sorts the entries by position in file or position of files + Can be helpful to detect entries newly added via DOI which are appended to EOF
* collect code for adding entries and opening files in methodlukeflo2024-12-23
|
* better error messages for doi-addlukeflo2024-12-23
|
* rewrite add-entry via DOI workflowlukeflo2024-12-23
| | | | | | | + split some functions to fit with different popups + select if append to file (and to which) or create new file + error handling if resolving doi ist not possible + error handling for wront doi patterns
* use input struct, place cursor at poslukeflo2024-12-23
|
* use specific search command for entering search input modelukeflo2024-12-23
|
* feat: finalize basic "AddEntry" to add from DOITrim Bresilla2024-12-23
| | | | | | | - Modify the `handle_new_entry_submission` method to accept additional arguments. - Add error handling for failed inserts when appending to the file. - Introduce a new method `append_to_file` to handle file appending logic. - Update file handling to ensure new entries are correctly written to the specified file.
* feat: implement entry management in Bibiman TUITrim Bresilla2024-12-23
| | | | | | | | | | - Add `.devbox` to the `.gitignore` file - Create a new backup file `devbox.json.back` with package and shell initialization configurations - Introduce a new method `add_entry` in the Bibiman struct to manage adding entries - Implement functionality to handle new entry submissions using `doi2bib` - Update command actions to include `AddEntry` - Add `AddEntry` as a new popup type in the TUI for creating entries - Enhance the UI rendering to support the new entry popup with input fields and cursor positioning
* Add expansion of ~ to home-dirlukeflo2024-12-01
|
* implement needed dep injection of cli argslukeflo2024-11-23
|
* filepath as OsString, new color shemelukeflo2024-11-22
|
* implement warning message popuplukeflo2024-11-17
|
* finished selection popuplukeflo2024-11-17
|
* working selection popup, but ugly field valueslukeflo2024-11-17
|
* selection popup fundamentlukeflo2024-11-16
|
* replaced some Strings with &str, impl lifetimes for structslukeflo2024-11-16
|
* selection popup: not impl as trait...lukeflo2024-11-15
|
* some minor fixeslukeflo2024-11-15
|
* refined complicated code partslukeflo2024-11-14
|
* implement scrolling for help popuplukeflo2024-11-14
|
* impl popup for keybindings/messageslukeflo2024-11-14
|
* Inegrate new command-action driven structurelukeflo2024-10-25
| | | | | | | | - Map keys to actions to commands - allows for easily adding config file support - restructure folders/files - implement own input mode - rewrite UI rendering to make it better editable