Add simple issue tracking system.
This commit is contained in:
parent
c8abfd00d0
commit
b64a3996e5
9
doc/issues/new-issue.sh
Executable file
9
doc/issues/new-issue.sh
Executable file
@ -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"
|
1
doc/issues/next-issue-number.txt
Normal file
1
doc/issues/next-issue-number.txt
Normal file
@ -0,0 +1 @@
|
||||
003
|
@ -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).
|
@ -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.
|
5
doc/issues/open/002-add-support-for-text-entries.md
Normal file
5
doc/issues/open/002-add-support-for-text-entries.md
Normal file
@ -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?).
|
Loading…
x
Reference in New Issue
Block a user