Open grantbow opened 13 years ago
depends on adding the tabs to the main window
Current Behavior: data is recorded, no UI to change values.
Expected Behavior: there should be some activity that reads and edits data and calculates the epoch seconds
The use case is:
Clicked a button at the wrong time and want to delete it or edit it. Three values will need to change - epoch seconds, hour with decimal and human readable date/time. Removing a value is useful. Editing a data value to add or subtract a few hours is also useful.
Implementing this would require a nice list of data values with some reasonable functionality. This will be quite a bit of work.
Right now this is possible by editing the text file directly, however calculations must be made using another tool using something like 'date --date="Dec 27 20:00:00 PST 2010" +%s' on unix to convert from a human readable string to epoch seconds. If minutes after the hour are used the hour with decimal can be calculated in one's head based on the human readable version, changing 15 minutes to .25 hours, 30 minutes to .50 hours and 45 minutes after the hour to .75 hours. The hourly value is used only for the charting right now.