diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..c00a8d8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Global +.composer +composer.lock +package-lock.json +vendor/ +node_modules/ +dist/ + +# Flextype Site Specific +var/ + +# OS Generated +.DS_Store* +ehthumbs.db +Icon? +Thumbs.db +*.swp + +# phpstorm +.idea/* diff --git a/CHANGELOG.md b/CHANGELOG.md index 1076a26..2de4b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ + +# [1.4.0](https://github.com/flextype-plugins/icon/compare/v1.3.0...v1.4.0) (2020-12-07) + +### Features + +* **core** update code base for new Flextype 0.9.12 + -# [1.3.0](https://github.com/flextype-plugins/form-icon/compare/v1.2.0...v1.3.0) (2020-08-25) +# [1.3.0](https://github.com/flextype-plugins/icon/compare/v1.2.0...v1.3.0) (2020-08-25) ### Features diff --git a/LICENSE.txt b/LICENSE.txt index f628cc1..6b05ac2 100755 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2018-2020 Sergey Romanenko +Copyright (c) 2021 Sergey Romanenko Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 9a594d2..6fa4515 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Icon Plugin for Flextype

-Version License Total downloads Flextype Discord +Version License Total downloads Flextype Discord

Icon plugin to present [Font Awesome](https://fontawesome.com/) icons set for Flextype. @@ -14,7 +14,7 @@ The following dependencies need to be installed for Icon Plugin. | Item | Version | Download | |---|---|---| -| [flextype](https://github.com/flextype/flextype) | 0.9.11 | [download](https://github.com/flextype/flextype/releases) | +| [flextype](https://github.com/flextype/flextype) | 0.9.12 | [download](https://github.com/flextype/flextype/releases) | | [twig](https://github.com/flextype-plugins/twig) | >=1.0.0 | [download](https://github.com/flextype-plugins/twig/releases) | ## Installation @@ -46,4 +46,4 @@ echo Icon::icon('fab fa-apple'); ## LICENSE [The MIT License (MIT)](https://github.com/flextype-plugins/icon/blob/master/LICENSE.txt) -Copyright (c) 2018-2020 [Sergey Romanenko](https://github.com/Awilum) +Copyright (c) 2021 [Sergey Romanenko](https://github.com/Awilum) diff --git a/composer.json b/composer.json index c704208..d4003ff 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,9 @@ "issues": "https://github.com/flextype-plugins/icon/issues" }, "require": { - "php": ">=7.3.0" + "php": ">=7.3.0", + "flextype-components/arrays" : "3.0.1", + "flextype-components/filesystem": "2.0.8" }, "config": { "apcu-autoloader": true, diff --git a/package.json b/package.json index 39410a5..2906724 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Icon", - "version": "1.3.0", + "version": "1.4.0", "description": "Icon plugin to present Font Awesome icons set for Flextype.", "homepage": "https://flextype.org", "author": "Sergey Romanenko", diff --git a/plugin.yaml b/plugin.yaml index 3017d61..18d97c3 100755 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,5 +1,5 @@ name: Icon -version: 1.3.0 +version: 1.4.0 description: Icon plugin to present Font Awesome icons set for Flextype. icon: fab fa-font-awesome-flag author: @@ -11,5 +11,5 @@ bugs: https://github.com/flextype-plugins/icon/issues license: MIT dependencies: - flextype: 0.9.11 + flextype: 0.9.12 twig: '>=1.0.0'