diff --git a/doc/issues/new-issue.sh b/doc/issues/new-issue.sh new file mode 100755 index 0000000..ae098d3 --- /dev/null +++ b/doc/issues/new-issue.sh @@ -0,0 +1,9 @@ +id=$(cat next-issue-number.txt) +printf "%03d" "$(expr $id + 1)" > next-issue-number.txt + +printf "Title/Summary?\n> " +read -r summary + +slugSummary=$(echo "$summary" | tr "[:upper:]" "[:lower:]" | tr ' ' - ) +slugSummary="${slugSummary//.}" +echo "### $summary" > "$id-$slugSummary.md" diff --git a/doc/issues/next-issue-number.txt b/doc/issues/next-issue-number.txt new file mode 100644 index 0000000..4b04ead --- /dev/null +++ b/doc/issues/next-issue-number.txt @@ -0,0 +1 @@ +003 \ No newline at end of file diff --git a/doc/issues/open/000-provide-options-for-graphing-measurements.md b/doc/issues/open/000-provide-options-for-graphing-measurements.md new file mode 100644 index 0000000..bb2ed26 --- /dev/null +++ b/doc/issues/open/000-provide-options-for-graphing-measurements.md @@ -0,0 +1,8 @@ +### Provide options for graphing measures. + +As a user I would like to be able to configure the graph used for a measure. + +Needed: +- General pattern for graph configuration. +- Support for different graph types (line, bar, pie, area, others?). +- Support for pre-processing of data (graph rolling average, etc). diff --git a/doc/issues/open/001-add-a-timestamp-meaure-type-(no-value).md b/doc/issues/open/001-add-a-timestamp-meaure-type-(no-value).md new file mode 100644 index 0000000..c10eccf --- /dev/null +++ b/doc/issues/open/001-add-a-timestamp-meaure-type-(no-value).md @@ -0,0 +1,10 @@ +### Add a timestamp meaure type (no value). + +As a user I would like to be able to measure when things happen (fall asleep) +with a simple timestamp. + +#### Implementation notes: + +This may not require a new storage type (just use the existing SimpleMeasure) +but UI (input, graphs, etc.) would just ignore the value and only consider the +timestamp. diff --git a/doc/issues/open/002-add-support-for-text-entries.md b/doc/issues/open/002-add-support-for-text-entries.md new file mode 100644 index 0000000..8fdea05 --- /dev/null +++ b/doc/issues/open/002-add-support-for-text-entries.md @@ -0,0 +1,5 @@ +### Add support for text entries. + +Thinking is to allow recording an arbitrary text value alonside a timestamp. +Presentation would be something like a list of the values. Probably no graph +(maybe something like a histogram for some use cases?).