Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
No longer shows seconds in plot completion time
Browse files Browse the repository at this point in the history
v1.7.6.5 -> final release?
  • Loading branch information
gilnobrega committed Sep 6, 2021
1 parent 063f63f commit 38778d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion environment_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ environment_config:
fields: # set of fields for command
version: # key name
const: true # optional, default to TRUE
default: 1.7.6.4 # optional, default value for key, if not provided key will be required during command run
default: 1.7.6.5 # optional, default value for key, if not provided key will be required during command run
dotenv: true # optional, default to FALSE, if this field should be added to .env file

2 changes: 1 addition & 1 deletion lib/plot.dart
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class Plot {
Duration get finishedAgo => DateTime.now().difference(end);
String get humanReadableFinishedAgo =>
(finishedAgo.inMilliseconds > Duration(days: 1).inMilliseconds)
? DateFormat('y/MM/dd HH:mm:ss').format(end)
? DateFormat('y/MM/dd HH:mm').format(end)
: durationToTime(finishedAgo) + " ago";

int _size = 0;
Expand Down

0 comments on commit 38778d1

Please sign in to comment.