cli_util 0.4.0 cli_util: ^0.4.0 copied to clipboard
A library to help in building Dart command-line apps.
0.4.0 #
- Remove the deprecated method
getSdkDir()
(instead, usegetSdkPath()
). - Require Dart 2.19
0.3.5 #
- Make
applicationConfigHome
throw anException
when it fails to find a configuration folder.
0.3.4 #
- Introduce
applicationConfigHome
for making it easy to consistently find the user-specific application configuration folder.
0.3.3 #
- Reverted
meta
constraint to^1.3.0
.
0.3.2 #
- Update
meta
constraint to>=1.3.0 <3.0.0
.
0.3.1 #
- Fix a bug in
AnsiProgress
where the spinning character doesn't every update.
0.3.0 #
- Stable null safety release.
0.3.0-nullsafety.0 #
- Updated to support 2.12.0 and null safety.
0.2.1 #
0.2.0 #
- Add
Logger.write
andLogger.writeCharCode
methods which write without printing a trailing newline.
0.1.4 #
- Add
Ansi.reversed
getter.
0.1.3+2 #
- Update Dart SDK constraint to < 3.0.0.
0.1.3+1 #
- Update Dart SDK to 2.0.0-dev.
0.1.3 #
- In verbose mode, instead of printing the diff from the last log message, print the total time since the tool started
- Change to not buffer the last log message sent in verbose logging mode
- Expose more classes from the logging library
0.1.2+1 #
- Remove unneeded change to Dart SDK constraint.
0.1.2 #
- Fix a bug in
getSdkDir
(#21)
0.1.1 #
- Updated to the output for indeterminate progress
- Exposed a
Logger.isVerbose
getter
0.1.0 #
- Added a new
getSdkPath()
method to get the location of the SDK (this uses the newPlatform.resolvedExecutable
API to locate the SDK) - Deprecated
getSdkDir()
in favor ofgetSdkPath()
- Add the
cli_logging.dart
library - utilities to display output and progress
0.0.1+3 #
- Find SDK properly when invoked from inside SDK tests.
0.0.1+2 #
- Support an executable in a symlinked directory.
0.0.1+1 #
- Fix for when the dart executable can't be found by
which
.
0.0.1 #
- Initial version