link_checker 4.0.2
link_checker: ^4.0.2 copied to clipboard
Can find links and check if they're dead in almost any type of file
#v4.0.2
- Update link to repo.
#v4.0.1
- Updated README.
#v4.0.0
- Added
isHttpsLink,convertToHttps, andcanUseHttps. - Changed
getLinkStatus.
3.0.3 #
- Fixed CHANGELOG.
3.0.2 #
- Raised minimum Dart environment from
2.0.0-dev.56.0to2.1.0.
2.0.2 #
- Fixed documentation for
BlacklistedDirectory.
2.0.1 #
- Fixed bug in link parsing where plain protocols (example: just https instead of https://google.com) were considered links.
2.0.0 #
getBadLinksInDirectory- Renamed
{String directory}to{String path}. - Renamed
{List<String> blacklistedFiles}to{List<String> blacklistedFilePaths}. - Added
{List<String> blacklistedLinks}. - Added
{List<RegExp> blacklistedLinksRegexes}.
- Renamed
getLinksInDirectory- Renamed
{String directory}to{String path}. - Renamed
{List<String> blacklistedFiles}to{List<String> blacklistedFilePaths}. - Added
{List<String> blacklistedLinks}. - Added
{List<RegExp> blacklistedLinksRegexes}.
- Renamed
getBadLinksInFile- Added
{List<String> blacklistedLinks}. - Added
{List<RegExp> blacklistedLinksRegexes}.
- Added
getLinksInFile- Changed return type from
Stream<String>toFuture<List<String>>. - Added
{List<String> blacklistedLinks}. - Added
{List<RegExp> blacklistedLinksRegexes}.
- Changed return type from
- Added
String parseUrl(String url). - Added
bool isGoodStatusCode(int statusCode). - Improved link parsing by taking delimiters into account. For example, a file containing the link
https://google.comasvar link = 'https://google.com';will now be parsed ashttps://google.cominstead ofhttps://google.com'.
1.1.1 #
- Lowered the minimum SDK version from
2.0.0-dev.65.0to2.0.0-dev.56.0.
1.1.0 #
getBadLinksInDirectory- Added
{bool followLinks = true}.
- Added
BlacklistedDirectory- Added
{bool followLinks = true}to default constructor.
- Added
getLinksInDirectory- Added
{bool followLinks = true}.
- Added
1.0.0 #
- Released the first version.