aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
Commit message (Collapse)AuthorAge
* fix tests, remove unneeded imports, add descriptionlukeflo2025-10-15
|
* skip set and xdata entries by defaultlukeflo2025-10-14
|
* Working proof of concept of citekey formattinglukeflo2025-10-13
|
* add dry-run information to --help functionlukeflo2025-10-10
|
* implement const of ignored special chars for citekey formattinglukeflo2025-10-10
| | | | | | | * the list contains 33 special chars at the moment * it will only affect already existing special chars in biblatex fields * delimiter specified for citekey formatting are not affected * char count is also not affected, ignored chars are not counted
* case parsing from config, needs to be implemented for citekey structlukeflo2025-10-08
|
* refine matching and preformatting of fields for citekey formattin; add case ↵lukeflo2025-10-08
| | | | field and enum
* implement basic citekey formatting:lukeflo2025-10-07
| | | | | | | | | | * Reads patterns and parses them. TODO: * **Fully** sanitize Latex macros * Preprocess complex and regularly used fields like `author` * Write changes to original bib file
* fix config test funclukeflo2025-08-24
|
* implement a customizable fourth column for `EntryTable`lukeflo2025-08-23
| | | | | | + Now one can select a fourth column to be displayed in the config file + Possible values: journaltitle, organization, institution, publisher, pubtype + Defaults to pubtype
* fix some tests, default config, help popuplukeflo2025-07-08
|
* `PopupItem::Citekey` impllukeflo2025-07-04
|
* update README: note featurelukeflo2025-06-30
|
* implemented symbols for attachementslukeflo2025-06-30
|
* colored symbols for attachements, basic implementationlukeflo2025-06-30
|
* UI implementation of noteslukeflo2025-06-30
|
* Some basic function rewriting for matching different file typeslukeflo2025-06-29
|
* Fix: light terminal flag, rm obsolete color.rs filelukeflo2025-06-08
|
* some more doc stringslukeflo2025-05-26
|
* implemented a workflow, but citekey matching still buggylukeflo2025-05-24
|
* Fix: create conf dir if it does not existKlimperfix2025-03-26
|
* freebsd opener -> xdg-openlukeflo2025-03-21
|
* add default command for file opening for OS:lukeflo2025-03-20
| | | | - freebsd, openbsd, netbsd, solaris, redox -> \'open\'
* implement test if config file exists, otherwise creation of default file ↵lukeflo2025-03-02
| | | | will be offered
* add `file_prefix` option to config and opening functionlukeflo2025-02-27
|
* new gif, update version to 0.11.0lukeflo2025-02-24
|
* test module for config cratelukeflo2025-02-23
|
* 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>`
* 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
* 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
* implement basic config struct and example filelukeflo2025-02-17