Skip to content

Commit

Permalink
Merge pull request #12 from sotiriskast/master
Browse files Browse the repository at this point in the history
update font awesome to 6.6.0
  • Loading branch information
GinoPane authored Sep 19, 2024
2 parents 0899fcc + d5558b7 commit 5d92dc2
Show file tree
Hide file tree
Showing 8 changed files with 918 additions and 10 deletions.
524 changes: 522 additions & 2 deletions formwidgets/awesomeiconslist/partials/_class_brands.htm

Large diffs are not rendered by default.

196 changes: 194 additions & 2 deletions formwidgets/awesomeiconslist/partials/_class_regular.htm

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion formwidgets/awesomeiconslist/partials/_class_solid.htm

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions formwidgets/awesomeiconslist/partials/_unicode_brands.htm

Large diffs are not rendered by default.

163 changes: 161 additions & 2 deletions formwidgets/awesomeiconslist/partials/_unicode_regular.htm

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion formwidgets/awesomeiconslist/partials/_unicode_solid.htm

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions updates/update_settings_to660.php
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'
]
];
}
4 changes: 4 additions & 0 deletions updates/version.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.4.0:
- Updated to Font Awesome 6.6.0
- update_settings_to660.php

1.3.5:
- Updated to Font Awesome 5.12.0
- update_settings_to5120.php
Expand Down

0 comments on commit 5d92dc2

Please sign in to comment.