summaryrefslogtreecommitdiffstats
path: root/libimagdiary
AgeCommit message (Collapse)Author
2017-08-27Reorganize code in subdirsMatthias Beyer
2017-08-27Use cargo feature to specify both version and pathMatthias Beyer
Thanks to reddit user /u/TimNN for suggesting this.
2017-08-26Update version strings for next release: 0.3.0 -> 0.4.0Matthias Beyer
2017-07-17Update chrono: 0.2 -> 0.4Matthias Beyer
2017-07-09Update toml-query: 0.2.0 -> 0.3.0Matthias Beyer
2017-06-21Remove unused macro importMatthias Beyer
2017-06-21Remove unused dependency: lazy_staticMatthias Beyer
2017-06-07dependency: toml-query: 0.1.0 -> 0.2.0Matthias Beyer
2017-05-30Update version strings: 0.2.0 -> 0.3.0Matthias Beyer
2017-05-30Fix libimagdiary for new toml interfaceMatthias Beyer
2017-05-30Update TOML dependency string in Cargo.tomlMatthias Beyer
2017-05-30Revert "Remove stuff for the focus-shift"Matthias Beyer
This reverts commit 63a7f0d8a903c98cd0e86fbdae26a353ec56aff8.
2017-01-21Remove stuff for the focus-shiftMatthias Beyer
2017-01-19Move `[profile.dev] codegen-units = 2` to top-level Cargo.tomlmario
lower level (=package/crate level) definitions for profiles are ignored
2016-11-20Rename ParseError to IdParseErrorRaphael Nestler
2016-11-19Use into_error()Raphael Nestler
2016-11-19Use trace_errorRaphael Nestler
2016-11-19Use map_err_intoRaphael Nestler
2016-11-19Refactor fetching of next component into functionRaphael Nestler
2016-11-19Return Result from component_to_strRaphael Nestler
2016-11-19Use Result for from_storeidRaphael Nestler
2016-10-31Merge pull request #656 from matthiasbeyer/cargo-rustc-codegen-unitsMatthias Beyer
Cargo rustc codegen units
2016-10-24libimagdiary/Cargo.toml: Update dependenciesMatthias Beyer
2016-10-24Add codegen-units = 2 in ./libimagdiary/Cargo.tomlMatthias Beyer
2016-10-20Fix: Cargo.toml does not know "website", but "homepage"Matthias Beyer
2016-10-18Add meta-info in libimagdiary/Cargo.tomlMatthias Beyer
2016-10-13Create symlinks to documentation files in libimag*/README.mdMatthias Beyer
2016-10-13Move all libimag*/README.md to doc/src/05100-*Matthias Beyer
2016-10-13Increment header levels in the README.md files of the librariesMatthias Beyer
2016-10-01libimagdiary: Add copyright notice to all filesMatthias Beyer
2016-09-21Move viewer implementation for imag-diary to libimagdiaryMatthias Beyer
2016-09-21Move dependenciesMatthias Beyer
2016-09-05Export MapErrInto as well hereMatthias Beyer
2016-09-04Remove StoreId::is_in_collection(), add StoreId::local()Matthias Beyer
Having a ::is_in_collection() is a nice thing, though it is _way_ better if we just give the user of the `StoreId` object access to the local part of the ID. Using this new function, one can do all the actions one might need on the Path for the actual entry without nasty copying or such. `StoreId::is_in_collection()` can be replaced by `StoreId::local().starts_with()` and everything is fine, as we do not have to move a `PathBuf` object into the function anymore.
2016-09-02Use new StoreId::is_in_collection() interfaceMatthias Beyer
2016-08-31Reimplement IsInDiary for StoreId with StoreId::is_in_collection()Matthias Beyer
2016-08-30Remove version argument from module_entry_path_mod!() macroMatthias Beyer
2016-08-28Fix libimagdiary::{diaryid, diary, is_in_diary}::* for new StoreId interfaceMatthias Beyer
2016-08-24Add README.md for libimagdiaryMatthias Beyer
2016-08-09Use libimagentryedit instead of libimagrtMatthias Beyer
2016-08-06Upgrade toml dependency to 0.2Kai Sickeler
2016-08-04Replace unwrap with matchMatthias Beyer
2016-08-04Replace unwrap() with matchMatthias Beyer
2016-08-04Replace unwrap() with matchMatthias Beyer
2016-07-12Update all version strings: 0.1.0 -> 0.2.0Matthias Beyer
2016-06-09Add debugging in lib-iterMatthias Beyer
2016-06-09Add dependenciesMatthias Beyer
2016-06-08Impl Display for DiaryIdMatthias Beyer
2016-06-08Add DiaryId::now(name) to create DiaryId at current timeMatthias Beyer
2016-06-08Add Diary::name() getterMatthias Beyer