-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from sotiriskast/master
update font awesome to 6.6.0
- Loading branch information
Showing
8 changed files
with
918 additions
and
10 deletions.
There are no files selected for viewing
524 changes: 522 additions & 2 deletions
524
formwidgets/awesomeiconslist/partials/_class_brands.htm
Large diffs are not rendered by default.
Oops, something went wrong.
196 changes: 194 additions & 2 deletions
196
formwidgets/awesomeiconslist/partials/_class_regular.htm
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
163 changes: 161 additions & 2 deletions
163
formwidgets/awesomeiconslist/partials/_unicode_regular.htm
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace GinoPane\AwesomeIconsList\Updates; | ||
|
||
use DB; | ||
use Schema; | ||
use October\Rain\Database\Updates\Migration; | ||
|
||
/** | ||
* Class UpdateSettingsTo660 | ||
* | ||
* @package GinoPane\AwesomeIconsList\Updates | ||
*/ | ||
class UpdateSettingsTo660 extends UpdateSettingsAbstract | ||
{ | ||
protected static $PREVIOUS_FONTAWESOME_LINK = 'https://use.fontawesome.com/releases/v5.12.0/css/all.css'; | ||
protected static $PREVIOUS_FONTAWESOME_LINK_ATTRIBUTES = [ | ||
[ | ||
'attribute' => 'crossorigin', | ||
'value' => 'anonymous' | ||
] | ||
]; | ||
|
||
protected static $NEW_FONTAWESOME_LINK = 'https://use.fontawesome.com/releases/v6.6.0/css/all.css'; | ||
protected static $NEW_FONTAWESOME_LINK_ATTRIBUTES = [ | ||
[ | ||
'attribute' => 'crossorigin', | ||
'value' => 'anonymous' | ||
] | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters