Skip to content

Commit

Permalink
fix: rename file detect_colors to extract_colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Oct 18, 2023
1 parent 097a56e commit e844539
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ python linkscraper -u https://example.com -a get-plugins -p screenshot -f screen

## 📜 Changelog

> Current version: ``2.2.0``
> Current version: ``2.2.1``

Minors

Expand All @@ -280,6 +280,7 @@ Minors
Fixes

* Fixed the GitHub Gist URLs
* Fix name of plugin `extract_colors`

Added

Expand Down
2 changes: 1 addition & 1 deletion linkscraper/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

console = Console(record=True)

VERSION = "2.2.0"
VERSION = "2.2.1"
parser = argparse.ArgumentParser()

parser.add_argument("-u", "--url", help="URL to scan", required=True)
Expand Down
2 changes: 1 addition & 1 deletion linkscraper/plugins/autoload.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
from plugins.ip_location import *
from plugins.page_details import *
from plugins.detect_fonts import *
from plugins.detect_colors import *
from plugins.extract_colors import *
File renamed without changes.

0 comments on commit e844539

Please sign in to comment.