This repository is a mirror (I push to manually) of github.com/matthiasbeyer/imag Do not use this repository for pull-requests or issue tracking. https://github.com/matthiasbeyer/imag

Matthias Beyer 38627e717c [WIP] Commandline parser setup 7 years ago
.imag-documentation 63a7f0d8a9 Remove stuff for the focus-shift 7 years ago
bin a0cdc53644 Fix build script once more 7 years ago
doc ccad830953 Add more long-term todos 7 years ago
imag-link beae005356 imag-link: Remove macro_use which is not needed 7 years ago
imag-mail 38627e717c [WIP] Commandline parser setup 7 years ago
imag-notes 8df5519f34 Move `[profile.dev] codegen-units = 2` to top-level Cargo.toml 7 years ago
imag-ref 8df5519f34 Move `[profile.dev] codegen-units = 2` to top-level Cargo.toml 7 years ago
imag-store e8f4a9089a Add feature to compile early panics 7 years ago
imag-tag 180792fb8a Remove unused import 7 years ago
imag-view 38672c5175 Remove unused macro_use import 7 years ago
libimagannotation cecdd09d51 Pass StoreId iterator here 7 years ago
libimagentryedit eaeff58081 We dont need to impl this for FileLockEntry here 7 years ago
libimagentryfilter 9edf9c0643 libimagentryfilter: Import toml::Value extensions 7 years ago
libimagentrylink 365f9eb237 Fix: Link::exists() must return Result<bool> now 7 years ago
libimagentrylist 9fa115500d Simplify FoldResult implementation 7 years ago
libimagentrymarkdown 0180aa9a61 Add "pub" to constructor fn 7 years ago
libimagentrytag cba1fae80f libimagentrytag: Remove EntryHeader type, use toml::Value 7 years ago
libimagentryview e0023f82c5 libimagentryview: Do not call header() as Entry::get_header() returns the header directly now 7 years ago
libimagerror 97eaafe5da Allow dead code in the whole test module 7 years ago
libimaginteraction 638e48197b This function does not need to be public 7 years ago
libimagnotes 8a942ef4a9 Remove Tagable implementation for Note 7 years ago
libimagref f22bcf0c74 Remove unused variable "file" 7 years ago
libimagrt 9fa115500d Simplify FoldResult implementation 7 years ago
libimagruby 5b93f3848c Merge pull request #911 from matthiasbeyer/libimagstore/storeid-exists-interface-result 7 years ago
libimagstore 5b93f3848c Merge pull request #911 from matthiasbeyer/libimagstore/storeid-exists-interface-result 7 years ago
libimagstorestdhook c2838cca3b Fix StoreId::exists() usage 7 years ago
libimagtimeui 2dc07c7295 Remove dependency on libimagerror, is not needed 7 years ago
libimagutil 9fa115500d Simplify FoldResult implementation 7 years ago
tests 157f4e79aa test setup: Prepare store directory before starting tests 7 years ago
.editorconfig 88e7c1bd8d Add editorconfig configuration file 8 years ago
.gitignore b55789578c Ignore /out 7 years ago
.travis.yml 337d657411 Fix indentation 7 years ago
CONTRIBUTING.md 15e43ee0bc Some general updates 7 years ago
Cargo.toml b71e68aee2 Put libimagannotation into workspace 7 years ago
LICENSE b0f0b4bcfd Add LICENSE file 8 years ago
Makefile 095b22861d Fix targets for top-level Makefile + libimagruby 7 years ago
README.md 3e544f1a9e Change README.md because of changed Makefile semantics 7 years ago
default.nix b35e942df6 Add new dependencies 7 years ago
imagrc.toml ac1af164e9 Merge pull request #775 from matthiasbeyer/libimaginteraction/readline 7 years ago

README.md

imag - imag-pim.org

imag is a commandline personal information management suite.

Build Status Issue Stats Issue Stats [license]()

This application is in early development. There are some things that work, but we do not consider anything stable or usable at this moment. Feel free to play around anyways.

Goal / What is imag?

Our (long-term) goal is to

Create a fast, reliable commandline personal information management suite which covers all aspects of personal information management, consists of reusable parts and integrates well with known commandline tools.

imag is a PIM helper. We do not actually implement the PIM functionality, but try to interface with existing PIM tools (via their API or via some standard format they use, e.g. vcard) to make the data they manage linkable and queryable in an uniform way.

imag consists of modules (e.g. imag-notes, imag-diary), where each module covers one PIM aspect. The initial approach is to use one PIM tool for one module. So you can use imag-todo with taskwarrior but imag-calendar with icalendar files.

Building/Running

Here is how to try imag out.

imag is a suite/collection of tools and you can build them individually. All subdirectories prefixed with "libimag" are libraries for the respective binaries. All subdirectories prefixed with "imag-" are binaries and compiling them will give you a commandline application.

Building

We use make to automate the build process. Make sure to not include some -j 8 arguments, this will not work as you might think!

There are several targets for each of the sub-crates in the Makefile:

Target Multi Purpose Example
all Build everything, debug mode make all
bin Build all binaries, debug mode make bin
lib Build all libraries, debug mode make lib
lib-test Test all libraries make lib-test
imag-bin Build only the imag binary, debug mode make imag-bin
clean Remove build artifacts make clean
update Run cargo update make update
check-outdated Run cargo outdated make check-outdated
check * Run cargo check make check
install * Build everything, release mode, install make install
release * Build everything, release mode make release

The Multi targets are callable for each sub-crate. For example you can call make imag-store-check to run cargo check on the imag-store crate.

Running

After you build the module you want to play with, you can simply call the binary itself with the --help flag, to get some help what the module is capable of.

If you installed the module, you can either call imag-<modulename> (if the install-directory is in your $PATH), or install the imag binary to call imag <modulename> (also if everything is in your $PATH).

Staying up-to-date

We have a official website for imag, where I post release notes. There is no RSS feed, though.

We also have a mailinglist where I post updates and where discussion and questions are encouraged.

There is a blog series which gets an update once a month on my blog, where entries are tagged "imag". I also post non-regular posts about imag things there.

I also post these blog posts on reddit and submit them to this-week-in-rust.

Documentation

This is a hobby project, so sometimes things are not optimal and might go unrecognized and slip through. Feel free to open issues about things you notice!

Though, we have some documentation in the ./doc subtree which can be compiled to PDF or a website. These docs are not published anywhere and are not even integrated into our CI, so it might be broken (though it's unlikely). Developer documentation is also available online on github.io and on docs.rs, though they might be a bit outdated.

Please contribute!

We are looking for contributors!

There is always a number of complexity/easy tagged issues available in the issue tracker you can start with and we are open to questions!

Feel free to open issues for asking questions, suggesting features or other things!

Also have a look at the CONTRIBUTING.md file!

Contact

Have a look at our website where you can find some information on how to get in touch and so on.

Feel free to join our new IRC channel at freenode: #imag or our mailinglist.

License

We chose to distribute this software under terms of GNU LGPLv2.1.