aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
Commit message (Collapse)AuthorAge
* replace Config crate with Figment -> better merging of default and config valueslukeflo2025-02-22
|
* 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>`
* implement basic config struct and example filelukeflo2025-02-17
|
* Simplify codebaselukeflo2025-01-29
| | | | | | | + Remove EntryTableItem struct + Simply use the initial generated BibiData struct + One simple `.clone()`, thus, replaces multiple iterations + Keep all other actions
* version bumb 0.9.3lukeflo2025-01-03
|
* 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
* Bugfix: Handle citekey duplicateslukeflo2024-12-25
| | | | | | + When adding an entry via DOI check if created citekey is already used + If so, loop over alphabetic chars and append it to citekey + When a unique combination is found, break loop and replace original citekey
* remove unused importlukeflo2024-12-23
|
* replace doi2bib with ureq cratelukeflo2024-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
* feat: handle better arXiv's "citation key" imported from DOITrim Bresilla2024-12-23
| | | | | | | | - Add a new dependency `rand` version `0.8` to the project - Modify the `format_bibtex_entry` function for better readability and citation key cleaning - Introduce logic to clean the citation key by retaining only alphanumerical characters and underscores - Limit the citation key to the last 14 characters if it exceeds that length - Add a new `file` field to the BibTeX entry using the provided file path
* chore: update dependencies and add some files to .gitignoreTrim Bresilla2024-12-23
| | | | | - Update the `Cargo.toml` to include the `doi2bib` dependency with version `0.2.0` - Add rules to ignore `.direnv`, `.envrc`, and `devbox.json` files in the `.gitignore`
* Add expansion of ~ to home-dirlukeflo2024-12-01
|
* new() fn for colors structlukeflo2024-11-29
|
* handling of errors and ui for multi file caselukeflo2024-11-25
|
* rewrite cli parsing, allow multiple files and dir as argslukeflo2024-11-22
|
* add crateslukeflo2024-11-22
|
* version bumb 0.7.0, new giflukeflo2024-11-19
|
* remove doi cratelukeflo2024-11-17
|
* removed tui-popup, wrote own popup codelukeflo2024-11-16
|
* impl popup for keybindings/messageslukeflo2024-11-14
|
* bug fix version add, readme updatedlukeflo2024-11-08
|
* fix testslukeflo2024-11-08
|
* fix error for no file: version bumb 0.6.1lukeflo2024-11-08
|
* update cargo.locklukeflo2024-11-08
|
* version bumb 0.5.0lukeflo2024-10-25
|
* 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
* rearrange code again, prepare for command-action setuplukeflo2024-10-24
|
* rearrange code, file and folder structurelukeflo2024-10-22
|
* show order if list is filtered by multiple keywords successivelylukeflo2024-10-21
|
* Implement Sorting, jumping multiple entrieslukeflo2024-10-20
| | | | | | - Select a column with `j` and `l` - Sort selected column with `s` (toggles regular and reversed order) - Jump list up/down by 5 entries Vim-style using `C-d` and `C-u`
* Handle short and long author fieldslukeflo2024-10-18
|
* check file format, use new keys() method of biblatex cratelukeflo2024-10-14
|
* build profilelukeflo2024-10-14
|
* update READMElukeflo2024-10-14
|
* scrollbar for keyword and entry arealukeflo-work2024-10-12
|
* updating READMElukeflo2024-10-12
|
* format README, fix typoslukeflo2024-10-12
|
* demo giflukeflo2024-10-04
|
* impl opening editor for editing file and update lists afterwardslukeflo2024-10-04
|
* further reodering of tui process, removed event.rs (integrated into tui.rs)lukeflo2024-10-03
|
* reordered tui handlinglukeflo2024-10-02
|
* implemented search mode (for entries only ATM)lukeflo2024-09-29
|
* copy citekey action, info box initlukeflo2024-09-27
|
* implemented entry list as tablelukeflo2024-09-22
|
* initial commitlukeflo2024-09-20