From 8f5c23a51c3e18e7fb579c0259e33f2fc8f9bc52 Mon Sep 17 00:00:00 2001 From: aaron-jack-manning Date: Mon, 22 Aug 2022 20:45:01 +1000 Subject: [PATCH] 0.1.1 --- Cargo.toml | 2 +- README.md | 49 +++++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 42 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 57c0513..32da44b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "toru" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["Aaron Manning "] license = "GPL-2.0-only" diff --git a/README.md b/README.md index b561894..0102e25 100644 --- a/README.md +++ b/README.md @@ -2,28 +2,61 @@ A (currently in development) to do app for the command line. +## Current Project Status + This program is at the state where I am regularly using it, and it definately is workable. That said, it does not include all of the core features required to make it an adequate alternative to people who have a to-do system they like, and as such I am regularly making breaking changes. I don't recommend it if you want a stable to do system (yet, although I will update this message when that's no longer true) but if you like some of the ideas here and want to try it out, feedback is welcomed. -## Introduction and Design +## Design -The general idea of Toru is to have a to-do app which uses distinct, mutually exclusive vaults of tasks and configuration which is in a human readable and easy to export and import format (to completely separate personal, work, study, etc), however within a vault, to use tags and dependencies as a means of organising notes, rather than mutually exclusive folders. +The general idea of Toru is to have a to-do app which uses distinct, mutually exclusive vaults of tasks with configuration which is in a human readable and easy to export and import format (to completely separate personal, work, study, etc), however within a vault, to use tags and dependencies as a means of organising notes, rather than mutually exclusive folders. For example, in a given vault, one may have a big project they are working on. This project, and all of the subtasks are listed together on the top level (and not organised according to projects). In order to conveniently organise and view tasks, use tags and dependencies, and filter searches for tasks to get the desired information. This allows you to categorise tasks even when they do not fall into any one obvious category. -To get started install by running: +## Getting Started + +To get started, install Toru by running: ``` cargo install toru ``` -and then run: + +Then type `toru` in the terminal to be greeted by the following help screen: ``` -toru vault new +toru 0.1.1 +Aaron Manning +A command line task manager. + +USAGE: + toru + +OPTIONS: + -H, --help Print help information + -V, --version Print version information + +SUBCOMMANDS: + clean Deletes all discarded tasks + complete Mark a task as complete + config For making changes to global configuration + delete Delete a task completely + discard Discard a task without deleting the underlying file + edit Edit a note directly + git Run Git commands at the root of the vault + gitignore Adds the recommended .gitignore file to the vault + list Lists tasks according to the specified ordering and filters + new Create a new task + switch Switches to the specified vault + track For tracking time against a note + vault Commands for interacting with vaults + view Displays the specified task in detail ``` -to create a new vault of tasks. + +You can view any help screen by passing in the `-H` or `--help` flag, and the internal documentation is designed to make it obvious how to use Toru. + +To start up you will need a vault to store tasks in, which you can create by running `toru vault new `. + +If you ever want to all vaults, along with which is the current one, run `toru vault list`. Then you can run `toru new` to create your first task. -Run `--help` alongside any command to get details on what it does. - ## Planned Features and Changes: - Options to configure and customise output of `list`