diff --git a/CHANGELOG.md b/CHANGELOG.md index 40a6fd30..6b75d71d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,3 +6,4 @@ This changelog follows [the Keep a Changelog standard](https://keepachangelog.co ## 0.1.0 (2021-03-05) Initial release. +Current package support [Material Icons 4.0.0](https://github.com/google/material-design-icons/releases/tag/4.0.0) diff --git a/README.md b/README.md index f665fb4c..9061a142 100644 --- a/README.md +++ b/README.md @@ -56,12 +56,30 @@ And even use inline styles: ``` -The solid icons can be referenced like this: +The outlined icons can be referenced like this: + +```blade + +``` + +The round icons can be referenced like this: + +```blade + +``` + +The sharp icons can be referenced like this: ```blade ``` +The two tone icons can be referenced like this: + +```blade + +``` + ### Raw SVG Icons If you want to use the raw SVG icons as assets, you can publish them using: diff --git a/bin/compile.sh b/bin/compile.sh index 1dc52084..052e4505 100755 --- a/bin/compile.sh +++ b/bin/compile.sh @@ -3,7 +3,6 @@ set -e DIRECTORY=$(cd `dirname $0` && pwd) -# DIST=$DIRECTORY/../dist RESOURCES=$DIRECTORY/../resources/svg SOURCE=$1 @@ -17,6 +16,7 @@ for CATEGORY_DIR in $SOURCE/src/*; do CATEGORY_NAME=${CATEGORY_DIR##*/} # echo $CATEGORY_NAME # exit + echo "Reading icons..." for ICON_DIR in $CATEGORY_DIR/*; do # Icon Directory Path # echo $ICON_DIR @@ -64,17 +64,4 @@ for CATEGORY_DIR in $SOURCE/src/*; do done done - -# echo "Compiling outline icons..." - -# for FILE in $DIST/outline/*; do -# cp $FILE $RESOURCES/o-$(echo ${FILE##*/}) -# done - -# echo "Compiling solid icons..." - -# for FILE in $DIST/solid/*; do -# cp $FILE $RESOURCES/s-$(echo ${FILE##*/}) -# done - -# echo "All done!" +echo "All done!"