Port from timetrap #1

Closed
opened 2021-06-30 19:57:41 -05:00 by categulario · 80 comments
categulario commented 2021-06-30 19:57:41 -05:00 (Migrated from gitlab.com)

Quedan pendientes las siguientes cosas:

  • archive
    • --start date:qs Include entries that start on this date or later
    • --end date:qs Include entries that start on this date or earlier
    • --grep Include entries where the note matches this regexp.
    • --fake Don't actually archive them, just list them so I can check if its correct
  • backend - Open an sqlite shell to the database.
  • display - Display the current timesheet or a specific. Pass `all' as SHEET
    • -v, --ids Print database ids (for use with edit)
    • -s, --start date:qs Include entries that start on this date or later
    • -e, --end date:qs Include entries that start on this date or earlier
    • -f, --format The output format. Valid built-in formats are
      • ical
      • csv
      • json
      • ids
      • text
      • custom formatters
    • -g, --grep Include entries where the note matches this regexp.
    • SHEET | all | full
  • edit - Alter an entry's note, start, or end time. Defaults to the active entry. Defaults to the last entry to be checked out of if no entry is active. usage: t edit [--id ID] [--start TIME] [--end TIME] [--append] [NOTES]
    • -i, --id id:i Alter entry with id instead of the running entry
    • -s, --start time:qs Change the start time to
    • -e, --end time:qs Change the end time to
    • -z, --append Append to the current note instead of replacing it the delimiter between appended notes is configurable (see configure)
    • -m, --move Move to another sheet
    • NOTES
  • in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES]
    • -a, --at time:qs Use this time instead of now
    • launch an editor if no note was provided and a note is required
  • kill - Delete a timesheet or an entry. usage: t kill [--id ID] [TIMESHEET]
    • -i, --id id:i Delete entry with id instead of timesheet
  • list - Show the available timesheets.
  • now - Show all running entries.
  • out - Stop the timer for a timesheet. usage: t out [--at TIME] [TIMESHEET]
    • -a, --at time:qs Use this time instead of now
  • resume - Start the timer for the current time sheet for an entry. Defaults to the active entry. usage: t resume [--id ID] [--at TIME]
    • -i, --id id:i Resume entry with id instead of the last entry
    • -a, --at time:qs Use this time instead of now
  • sheet - Switch to a timesheet creating it if necessary.
    • When no sheet is specified list all sheets.
    • The special sheetname '-' will switch to the last active sheet.
  • today - Shortcut for display with start date as the current day usage: t today [--ids] [--format FMT] [SHEET | all]
    • ids
    • format
    • sheet | all
    • end
    • grep
  • yesterday - Shortcut for display with start and end dates as the day before the current day usage: t yesterday [--ids] [--format FMT] [SHEET | all]
    • ids
    • format
    • sheet | all
    • end
    • grep
  • week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all]
    • ids
    • end
    • format
    • sheet | all
    • end
    • grep
    • start the week with a non default date
  • month - Shortcut for display with start date set to the beginning of either this month or a specified month. usage: t month [--ids] [--start MONTH] [--format FMT] [SHEET | all]
    • ids
    • format
    • sheet | all
    • grep
    • last
    • manually specified month
  • OTHER OPTIONS
    • -h, --help Display this help.
    • -r, --round Round output to 15 minute start and end times.
    • -y, --yes Noninteractive, assume yes as answer to all prompts.
  • Configuraciones
    • database_file
    • round_in_seconds
    • append_notes_delimiter
    • formatter_search_paths
    • default_formatter
    • auto_sheet
    • auto_sheet_search_paths
    • default_command
    • auto_checkout
    • require_note
    • note_editor
    • week_start
Quedan pendientes las siguientes cosas: - [ ] archive - [ ] --start <date:qs> Include entries that start on this date or later - [ ] --end <date:qs> Include entries that start on this date or earlier - [ ] --grep <regexp> Include entries where the note matches this regexp. - [ ] --fake Don't actually archive them, just list them so I can check if its correct - [x] backend - Open an sqlite shell to the database. - [ ] display - Display the current timesheet or a specific. Pass `all' as SHEET - [x] -v, --ids Print database ids (for use with edit) - [x] -s, --start <date:qs> Include entries that start on this date or later - [x] -e, --end <date:qs> Include entries that start on this date or earlier - [ ] -f, --format <format> The output format. Valid built-in formats are - [x] ical - [x] csv - [x] json - [x] ids - [x] text - [ ] custom formatters - [x] -g, --grep <regexp> Include entries where the note matches this regexp. - [x] SHEET | all | full - [x] edit - Alter an entry's note, start, or end time. Defaults to the active entry. Defaults to the last entry to be checked out of if no entry is active. usage: t edit [--id ID] [--start TIME] [--end TIME] [--append] [NOTES] - [x] -i, --id <id:i> Alter entry with id <id> instead of the running entry - [x] -s, --start <time:qs> Change the start time to <time> - [x] -e, --end <time:qs> Change the end time to <time> - [x] -z, --append Append to the current note instead of replacing it the delimiter between appended notes is configurable (see configure) - [x] -m, --move <sheet> Move to another sheet - [x] NOTES - [x] in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES] - [x] -a, --at <time:qs> Use this time instead of now - [x] launch an editor if no note was provided and a note is required - [x] kill - Delete a timesheet or an entry. usage: t kill [--id ID] [TIMESHEET] - [x] -i, --id <id:i> Delete entry with id <id> instead of timesheet - [x] list - Show the available timesheets. - [x] now - Show all running entries. - [x] out - Stop the timer for a timesheet. usage: t out [--at TIME] [TIMESHEET] - [x] -a, --at <time:qs> Use this time instead of now - [x] resume - Start the timer for the current time sheet for an entry. Defaults to the active entry. usage: t resume [--id ID] [--at TIME] - [x] -i, --id <id:i> Resume entry with id <id> instead of the last entry - [x] -a, --at <time:qs> Use this time instead of now - [x] sheet - Switch to a timesheet creating it if necessary. - [x] When no sheet is specified list all sheets. - [x] The special sheetname '-' will switch to the last active sheet. - [x] today - Shortcut for display with start date as the current day usage: t today [--ids] [--format FMT] [SHEET | all] - [x] ids - [x] format - [x] sheet | all - [x] end - [x] grep - [x] yesterday - Shortcut for display with start and end dates as the day before the current day usage: t yesterday [--ids] [--format FMT] [SHEET | all] - [x] ids - [x] format - [x] sheet | all - [x] end - [x] grep - [x] week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all] - [x] ids - [x] end - [x] format - [x] sheet | all - [x] end - [x] grep - [x] start the week with a non default date - [x] month - Shortcut for display with start date set to the beginning of either this month or a specified month. usage: t month [--ids] [--start MONTH] [--format FMT] [SHEET | all] - [x] ids - [x] format - [x] sheet | all - [x] grep - [x] last - [x] manually specified month - [ ] OTHER OPTIONS - [x] -h, --help Display this help. - [ ] -r, --round Round output to 15 minute start and end times. - [ ] -y, --yes Noninteractive, assume yes as answer to all prompts. - [ ] Configuraciones - [x] database_file - [ ] round_in_seconds - [x] append_notes_delimiter - [ ] formatter_search_paths - [ ] default_formatter - [ ] auto_sheet - [ ] auto_sheet_search_paths - [ ] default_command - [ ] auto_checkout - [x] require_note - [x] note_editor - [x] week_start
categulario commented 2021-06-30 19:58:07 -05:00 (Migrated from gitlab.com)

marked the checklist item -h, --help Display this help. as completed

marked the checklist item **-h, --help Display this help.** as completed
categulario commented 2021-06-30 19:58:45 -05:00 (Migrated from gitlab.com)

marked the checklist item -v, --ids Print database ids (for use with edit) as completed

marked the checklist item **-v, --ids Print database ids (for use with edit)** as completed
categulario commented 2021-06-30 19:59:29 -05:00 (Migrated from gitlab.com)

marked the checklist item -s, --start date:qs Include entries that start on this date or later as completed

marked the checklist item **-s, --start <date:qs> Include entries that start on this date or later** as completed
categulario commented 2021-06-30 19:59:30 -05:00 (Migrated from gitlab.com)

marked the checklist item -e, --end date:qs Include entries that start on this date or earlier as completed

marked the checklist item **-e, --end <date:qs> Include entries that start on this date or earlier** as completed
categulario commented 2021-06-30 19:59:32 -05:00 (Migrated from gitlab.com)

marked the checklist item text as completed

marked the checklist item **text** as completed
categulario commented 2021-06-30 19:59:33 -05:00 (Migrated from gitlab.com)

marked the checklist item csv as completed

marked the checklist item **csv** as completed
categulario commented 2021-06-30 20:03:26 -05:00 (Migrated from gitlab.com)

marked the checklist item SHEET | all | full as completed

marked the checklist item **SHEET | all | full** as completed
categulario commented 2021-07-06 17:54:29 -05:00 (Migrated from gitlab.com)

marked the checklist item today - Shortcut for display with start date as the current day usage: t today [--ids] [--format FMT] [SHEET | all] as completed

marked the checklist item **today - Shortcut for display with start date as the current day usage: t today [--ids] [--format FMT] [SHEET | all]** as completed
categulario commented 2021-07-06 17:54:44 -05:00 (Migrated from gitlab.com)

marked the checklist item format as completed

marked the checklist item **format** as completed
categulario commented 2021-07-06 17:54:51 -05:00 (Migrated from gitlab.com)

marked the checklist item sheet | all as completed

marked the checklist item **sheet | all** as completed
categulario commented 2021-07-06 17:54:53 -05:00 (Migrated from gitlab.com)

marked the checklist item ids as completed

marked the checklist item **ids** as completed
categulario commented 2021-07-06 22:56:31 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-07 10:51:28 -05:00 (Migrated from gitlab.com)

marked the checklist item grep as completed

marked the checklist item **grep** as completed
categulario commented 2021-07-07 10:51:34 -05:00 (Migrated from gitlab.com)

marked the checklist item -g, --grep Include entries where the note matches this regexp. as completed

marked the checklist item **-g, --grep <regexp> Include entries where the note matches this regexp.** as completed
categulario commented 2021-07-07 11:00:01 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-07 12:15:50 -05:00 (Migrated from gitlab.com)

marked the checklist item ids as completed

marked the checklist item **ids** as completed
categulario commented 2021-07-07 12:15:52 -05:00 (Migrated from gitlab.com)

marked the checklist item format as completed

marked the checklist item **format** as completed
categulario commented 2021-07-07 12:15:52 -05:00 (Migrated from gitlab.com)

marked the checklist item sheet | all as completed

marked the checklist item **sheet | all** as completed
categulario commented 2021-07-07 12:15:55 -05:00 (Migrated from gitlab.com)

marked the checklist item end as completed

marked the checklist item **end** as completed
categulario commented 2021-07-07 12:15:57 -05:00 (Migrated from gitlab.com)

marked the checklist item grep as completed

marked the checklist item **grep** as completed
categulario commented 2021-07-07 12:15:59 -05:00 (Migrated from gitlab.com)

marked the checklist item yesterday - Shortcut for display with start and end dates as the day before the current day usage: t yesterday [--ids] [--format FMT] [SHEET | all] as completed

marked the checklist item **yesterday - Shortcut for display with start and end dates as the day before the current day usage: t yesterday [--ids] [--format FMT] [SHEET | all]** as completed
categulario commented 2021-07-07 22:32:35 -05:00 (Migrated from gitlab.com)

marked the checklist item ids as completed

marked the checklist item **ids** as completed
categulario commented 2021-07-07 22:32:35 -05:00 (Migrated from gitlab.com)

marked the checklist item end as completed

marked the checklist item **end** as completed
categulario commented 2021-07-07 22:32:38 -05:00 (Migrated from gitlab.com)

marked the checklist item sheet | all as completed

marked the checklist item **sheet | all** as completed
categulario commented 2021-07-07 22:32:40 -05:00 (Migrated from gitlab.com)

marked the checklist item format as completed

marked the checklist item **format** as completed
categulario commented 2021-07-07 22:32:41 -05:00 (Migrated from gitlab.com)

marked the checklist item end as completed

marked the checklist item **end** as completed
categulario commented 2021-07-07 22:32:43 -05:00 (Migrated from gitlab.com)

marked the checklist item grep as completed

marked the checklist item **grep** as completed
categulario commented 2021-07-07 22:32:45 -05:00 (Migrated from gitlab.com)

marked the checklist item week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all] as completed

marked the checklist item **week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all]** as completed
categulario commented 2021-07-08 17:14:10 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-08 17:14:26 -05:00 (Migrated from gitlab.com)

marked the checklist item ids as completed

marked the checklist item **ids** as completed
categulario commented 2021-07-08 17:14:30 -05:00 (Migrated from gitlab.com)

marked the checklist item format as completed

marked the checklist item **format** as completed
categulario commented 2021-07-08 17:14:31 -05:00 (Migrated from gitlab.com)

marked the checklist item sheet | all as completed

marked the checklist item **sheet | all** as completed
categulario commented 2021-07-08 17:14:48 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-10 13:24:44 -05:00 (Migrated from gitlab.com)

marked the checklist item manually specified month as completed

marked the checklist item **manually specified month** as completed
categulario commented 2021-07-10 13:27:44 -05:00 (Migrated from gitlab.com)

marked the checklist item last as completed

marked the checklist item **last** as completed
categulario commented 2021-07-10 13:28:04 -05:00 (Migrated from gitlab.com)

marked the checklist item grep as completed

marked the checklist item **grep** as completed
categulario commented 2021-07-10 13:28:06 -05:00 (Migrated from gitlab.com)

marked the checklist item month - Shortcut for display with start date set to the beginning of either this month or a specified month. usage: t month [--ids] [--start MONTH] [--format FMT] [SHEET | all] as completed

marked the checklist item **month - Shortcut for display with start date set to the beginning of either this month or a specified month. usage: t month [--ids] [--start MONTH] [--format FMT] [SHEET | all]** as completed
categulario commented 2021-07-10 13:32:10 -05:00 (Migrated from gitlab.com)

marked the checklist item week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all] as incomplete

marked the checklist item **week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all]** as incomplete
categulario commented 2021-07-10 19:08:51 -05:00 (Migrated from gitlab.com)

marked the checklist item start the week with a non default date as completed

marked the checklist item **start the week with a non default date** as completed
categulario commented 2021-07-10 19:08:53 -05:00 (Migrated from gitlab.com)

marked the checklist item week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all] as completed

marked the checklist item **week - Shortcut for display with start date set to a day of this week. The default start of the week is Monday. usage: t week [--ids] [--end DATE] [--format FMT] [SHEET | all]** as completed
categulario commented 2021-07-16 13:00:30 -05:00 (Migrated from gitlab.com)

marked the checklist item list - Show the available timesheets. as completed

marked the checklist item **list - Show the available timesheets.** as completed
categulario commented 2021-07-16 13:00:36 -05:00 (Migrated from gitlab.com)

marked the checklist item When no sheet is specified list all sheets. as completed

marked the checklist item **When no sheet is specified list all sheets.** as completed
categulario commented 2021-07-17 22:17:27 -05:00 (Migrated from gitlab.com)

marked the checklist item -a, --at time:qs Use this time instead of now as completed

marked the checklist item **-a, --at <time:qs> Use this time instead of now** as completed
categulario commented 2021-07-17 22:17:28 -05:00 (Migrated from gitlab.com)

marked the checklist item in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES] as completed

marked the checklist item **in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES]** as completed
categulario commented 2021-07-17 22:17:37 -05:00 (Migrated from gitlab.com)

marked the checklist item in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES] as incomplete

marked the checklist item **in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES]** as incomplete
categulario commented 2021-07-17 22:18:21 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-20 10:09:36 -05:00 (Migrated from gitlab.com)

marked the checklist item -a, --at time:qs Use this time instead of now as completed

marked the checklist item **-a, --at <time:qs> Use this time instead of now** as completed
categulario commented 2021-07-20 10:09:38 -05:00 (Migrated from gitlab.com)

marked the checklist item out - Stop the timer for a timesheet. usage: t out [--at TIME] [TIMESHEET] as completed

marked the checklist item **out - Stop the timer for a timesheet. usage: t out [--at TIME] [TIMESHEET]** as completed
categulario commented 2021-07-20 22:10:03 -05:00 (Migrated from gitlab.com)

marked the checklist item launch an editor if no note was provided and a note is required as completed

marked the checklist item **launch an editor if no note was provided and a note is required** as completed
categulario commented 2021-07-20 22:10:08 -05:00 (Migrated from gitlab.com)

marked the checklist item in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES] as completed

marked the checklist item **in - Start the timer for the current timesheet. usage: t in [--at TIME] [NOTES]** as completed
categulario commented 2021-07-21 09:01:09 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-21 09:01:16 -05:00 (Migrated from gitlab.com)

marked the checklist item database_file as completed

marked the checklist item **database_file** as completed
categulario commented 2021-07-21 09:01:41 -05:00 (Migrated from gitlab.com)

marked the checklist item note_editor as completed

marked the checklist item **note_editor** as completed
categulario commented 2021-07-21 09:01:46 -05:00 (Migrated from gitlab.com)

marked the checklist item require_note as completed

marked the checklist item **require_note** as completed
categulario commented 2021-07-23 20:41:40 -05:00 (Migrated from gitlab.com)

marked the checklist item The special sheetname '-' will switch to the last active sheet. as completed

marked the checklist item **The special sheetname '-' will switch to the last active sheet.** as completed
categulario commented 2021-07-23 20:41:43 -05:00 (Migrated from gitlab.com)

marked the checklist item sheet - Switch to a timesheet creating it if necessary. as completed

marked the checklist item **sheet - Switch to a timesheet creating it if necessary.** as completed
categulario commented 2021-07-26 20:07:28 -05:00 (Migrated from gitlab.com)

marked the checklist item backend - Open an sqlite shell to the database. as completed

marked the checklist item **backend - Open an sqlite shell to the database.** as completed
categulario commented 2021-07-26 20:07:35 -05:00 (Migrated from gitlab.com)

marked the checklist item -a, --at time:qs Use this time instead of now as completed

marked the checklist item **-a, --at <time:qs> Use this time instead of now** as completed
categulario commented 2021-07-26 20:07:36 -05:00 (Migrated from gitlab.com)

marked the checklist item -i, --id id:i Resume entry with id instead of the last entry as completed

marked the checklist item **-i, --id <id:i> Resume entry with id <id> instead of the last entry** as completed
categulario commented 2021-07-26 20:07:37 -05:00 (Migrated from gitlab.com)

marked the checklist item resume - Start the timer for the current time sheet for an entry. Defaults to the active entry. usage: t resume [--id ID] [--at TIME] as completed

marked the checklist item **resume - Start the timer for the current time sheet for an entry. Defaults to the active entry. usage: t resume [--id ID] [--at TIME]** as completed
categulario commented 2021-07-27 10:51:30 -05:00 (Migrated from gitlab.com)

marked the checklist item json as completed

marked the checklist item **json** as completed
categulario commented 2021-07-28 21:16:12 -05:00 (Migrated from gitlab.com)

marked the checklist item ids as completed

marked the checklist item **ids** as completed
categulario commented 2021-07-29 22:45:31 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-30 11:59:01 -05:00 (Migrated from gitlab.com)

marked the checklist item ical as completed

marked the checklist item **ical** as completed
categulario commented 2021-07-30 12:11:48 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-07-30 12:35:05 -05:00 (Migrated from gitlab.com)

marked the checklist item week_start as completed

marked the checklist item **week_start** as completed
categulario commented 2021-07-30 18:01:41 -05:00 (Migrated from gitlab.com)

marked the checklist item -i, --id id:i Delete entry with id instead of timesheet as completed

marked the checklist item **-i, --id <id:i> Delete entry with id <id> instead of timesheet** as completed
categulario commented 2021-07-30 18:01:42 -05:00 (Migrated from gitlab.com)

marked the checklist item kill - Delete a timesheet or an entry. usage: t kill [--id ID] [TIMESHEET] as completed

marked the checklist item **kill - Delete a timesheet or an entry. usage: t kill [--id ID] [TIMESHEET]** as completed
categulario commented 2021-07-30 18:09:06 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-08-02 19:13:22 -05:00 (Migrated from gitlab.com)

marked the checklist item now - Show all running entries. as completed

marked the checklist item **now - Show all running entries.** as completed
categulario commented 2021-08-04 18:43:06 -05:00 (Migrated from gitlab.com)

marked the checklist item NOTES as completed

marked the checklist item **NOTES** as completed
categulario commented 2021-08-04 18:43:07 -05:00 (Migrated from gitlab.com)

marked the checklist item -m, --move Move to another sheet as completed

marked the checklist item **-m, --move <sheet> Move to another sheet** as completed
categulario commented 2021-08-04 18:43:07 -05:00 (Migrated from gitlab.com)

marked the checklist item -z, --append Append to the current note instead of replacing it the delimiter between appended notes is configurable (see configure) as completed

marked the checklist item **-z, --append Append to the current note instead of replacing it the delimiter between appended notes is configurable (see configure)** as completed
categulario commented 2021-08-04 18:43:08 -05:00 (Migrated from gitlab.com)

marked the checklist item -e, --end time:qs Change the end time to as completed

marked the checklist item **-e, --end <time:qs> Change the end time to <time>** as completed
categulario commented 2021-08-04 18:43:09 -05:00 (Migrated from gitlab.com)

marked the checklist item -s, --start time:qs Change the start time to as completed

marked the checklist item **-s, --start <time:qs> Change the start time to <time>** as completed
categulario commented 2021-08-04 18:43:10 -05:00 (Migrated from gitlab.com)

marked the checklist item -i, --id id:i Alter entry with id instead of the running entry as completed

marked the checklist item **-i, --id <id:i> Alter entry with id <id> instead of the running entry** as completed
categulario commented 2021-08-04 18:43:13 -05:00 (Migrated from gitlab.com)

marked the checklist item edit - Alter an entry's note, start, or end time. Defaults to the active entry. Defaults to the last entry to be checked out of if no entry is active. usage: t edit [--id ID] [--start TIME] [--end TIME] [--append] [NOTES] as completed

marked the checklist item **edit - Alter an entry's note, start, or end time. Defaults to the active entry. Defaults to the last entry to be checked out of if no entry is active. usage: t edit [--id ID] [--start TIME] [--end TIME] [--append] [NOTES]** as completed
categulario commented 2021-08-04 18:43:25 -05:00 (Migrated from gitlab.com)

marked the checklist item append_notes_delimiter as completed

marked the checklist item **append_notes_delimiter** as completed
categulario commented 2021-08-04 18:43:48 -05:00 (Migrated from gitlab.com)

changed the description

changed the description
categulario commented 2021-08-04 19:02:30 -05:00 (Migrated from gitlab.com)

migrated to issues, closing

migrated to issues, closing
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: categulario/tiempo-rs#1
No description provided.