Menu Icons by ThemeIsle - Version 0.12.4

Version Description

  • 2020-07-13
Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Menu Icons by ThemeIsle
Version 0.12.4
Comparing to
See all releases

Code changes from version 0.12.3 to 0.12.4

CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
 
 
 
 
 
2
  ### v0.12.3 - 2020-07-13
3
  **Changes:**
4
  * Fixed Menu Icons in Block Editor not working
1
 
2
+ ### v0.12.4 - 2020-07-13
3
+ **Changes:**
4
+ * Fix Font Awesome not loading
5
+
6
  ### v0.12.3 - 2020-07-13
7
  **Changes:**
8
  * Fixed Menu Icons in Block Editor not working
includes/settings.php CHANGED
@@ -58,6 +58,7 @@ final class Menu_Icons_Settings {
58
  // Include Menu Icons for Block Editor
59
  if ( class_exists( '\ThemeIsle\GutenbergMenuIcons' ) ) {
60
  \ThemeIsle\GutenbergMenuIcons::instance();
 
61
  }
62
 
63
  /**
@@ -113,7 +114,6 @@ final class Menu_Icons_Settings {
113
 
114
  add_action( 'load-nav-menus.php', array( __CLASS__, '_load_nav_menus' ), 1 );
115
  add_action( 'wp_ajax_menu_icons_update_settings', array( __CLASS__, '_ajax_menu_icons_update_settings' ) );
116
- add_action( 'enqueue_block_assets', array( __CLASS__, '_enqueue_font_awesome' ) );
117
  }
118
 
119
  /**
58
  // Include Menu Icons for Block Editor
59
  if ( class_exists( '\ThemeIsle\GutenbergMenuIcons' ) ) {
60
  \ThemeIsle\GutenbergMenuIcons::instance();
61
+ add_action( 'enqueue_block_assets', array( __CLASS__, '_enqueue_font_awesome' ) );
62
  }
63
 
64
  /**
114
 
115
  add_action( 'load-nav-menus.php', array( __CLASS__, '_load_nav_menus' ), 1 );
116
  add_action( 'wp_ajax_menu_icons_update_settings', array( __CLASS__, '_ajax_menu_icons_update_settings' ) );
 
117
  }
118
 
119
  /**
languages/menu-icons.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Menu Icons 0.12.2\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/wp-menu-icons/issues\n"
7
- "POT-Creation-Date: 2020-07-13 11:24:24+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the GPLv2.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Menu Icons 0.12.3\n"
6
  "Report-Msgid-Bugs-To: https://github.com/Codeinwp/wp-menu-icons/issues\n"
7
+ "POT-Creation-Date: 2020-07-13 12:12:23+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
menu-icons.php CHANGED
@@ -11,7 +11,7 @@
11
  * Plugin name: Menu Icons
12
  * Plugin URI: https://github.com/Codeinwp/wp-menu-icons
13
  * Description: Spice up your navigation menus with pretty icons, easily.
14
- * Version: 0.12.3
15
  * Author: ThemeIsle
16
  * Author URI: https://themeisle.com
17
  * License: GPLv2
@@ -27,7 +27,7 @@
27
  */
28
  final class Menu_Icons {
29
 
30
- const VERSION = '0.12.3';
31
 
32
  /**
33
  * Holds plugin data
11
  * Plugin name: Menu Icons
12
  * Plugin URI: https://github.com/Codeinwp/wp-menu-icons
13
  * Description: Spice up your navigation menus with pretty icons, easily.
14
+ * Version: 0.12.4
15
  * Author: ThemeIsle
16
  * Author URI: https://themeisle.com
17
  * License: GPLv2
27
  */
28
  final class Menu_Icons {
29
 
30
+ const VERSION = '0.12.4';
31
 
32
  /**
33
  * Holds plugin data
readme.md CHANGED
@@ -224,6 +224,11 @@ Add this block of code to your [mu-plugin file](http://codex.wordpress.org/Must_
224
  Read [this blog post](http://kucrut.org/add-custom-image-sizes-right-way/).
225
 
226
  ## Changelog ##
 
 
 
 
 
227
  ### 0.12.3 - 2020-07-13 ###
228
 
229
  * Fixed Menu Icons in Block Editor not working
224
  Read [this blog post](http://kucrut.org/add-custom-image-sizes-right-way/).
225
 
226
  ## Changelog ##
227
+ ### 0.12.4 - 2020-07-13 ###
228
+
229
+ * Fix Font Awesome not loading
230
+
231
+
232
  ### 0.12.3 - 2020-07-13 ###
233
 
234
  * Fixed Menu Icons in Block Editor not working
readme.txt CHANGED
@@ -224,6 +224,11 @@ add_filter( 'menu_icons_menu_settings', 'my_menu_icons_menu_settings', 10, 2 );
224
  Read [this blog post](http://kucrut.org/add-custom-image-sizes-right-way/).
225
 
226
  == Changelog ==
 
 
 
 
 
227
  = 0.12.3 - 2020-07-13 =
228
 
229
  * Fixed Menu Icons in Block Editor not working
224
  Read [this blog post](http://kucrut.org/add-custom-image-sizes-right-way/).
225
 
226
  == Changelog ==
227
+ = 0.12.4 - 2020-07-13 =
228
+
229
+ * Fix Font Awesome not loading
230
+
231
+
232
  = 0.12.3 - 2020-07-13 =
233
 
234
  * Fixed Menu Icons in Block Editor not working
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitbdf1557f612cebf282fe0321f09d7caa::getLoader();
4
 
5
  require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit71c9918e9dc7700df7d673a6b588baa1::getLoader();
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitbdf1557f612cebf282fe0321f09d7caa
6
  {
7
  private static $loader;
8
 
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitbdf1557f612cebf282fe0321f09d7caa
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitbdf1557f612cebf282fe0321f09d7caa', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitbdf1557f612cebf282fe0321f09d7caa', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
@@ -42,14 +42,14 @@ class ComposerAutoloaderInitbdf1557f612cebf282fe0321f09d7caa
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
- composerRequirebdf1557f612cebf282fe0321f09d7caa($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
- function composerRequirebdf1557f612cebf282fe0321f09d7caa($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit71c9918e9dc7700df7d673a6b588baa1
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit71c9918e9dc7700df7d673a6b588baa1', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit71c9918e9dc7700df7d673a6b588baa1', 'loadClassLoader'));
25
 
26
  $map = require __DIR__ . '/autoload_namespaces.php';
27
  foreach ($map as $namespace => $path) {
42
 
43
  $includeFiles = require __DIR__ . '/autoload_files.php';
44
  foreach ($includeFiles as $fileIdentifier => $file) {
45
+ composerRequire71c9918e9dc7700df7d673a6b588baa1($fileIdentifier, $file);
46
  }
47
 
48
  return $loader;
49
  }
50
  }
51
 
52
+ function composerRequire71c9918e9dc7700df7d673a6b588baa1($fileIdentifier, $file)
53
  {
54
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
55
  require $file;