Use Any Font - Version 5.3

Version Description

  • Fixed domain verification issue.
Download this release

Release Info

Developer dnesscarkey
Plugin Icon 128x128 Use Any Font
Version 5.3
Comparing to
See all releases

Code changes from version 5.2 to 5.3

includes/uaf_font_upload_js.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  $allowedFontFormats = array ('ttf','otf','woff');
3
  $uaf_api_key = get_option('uaf_api_key');
4
 
1
  <?php
2
+ /* *******FONT UPLOAD VIA JS ******** */
3
  $allowedFontFormats = array ('ttf','otf','woff');
4
  $uaf_api_key = get_option('uaf_api_key');
5
 
includes/uaf_font_upload_php.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  $allowedFontFormats = array ('ttf','otf','woff');
3
  $allowedFontSize = 15;
4
  $wpAllowedMaxSize = wp_max_upload_size();
1
  <?php
2
+ /* *******FONT UPLOAD VIA PHP ******** */
3
  $allowedFontFormats = array ('ttf','otf','woff');
4
  $allowedFontSize = 15;
5
  $wpAllowedMaxSize = wp_max_upload_size();
plugin_interface.php CHANGED
@@ -110,8 +110,8 @@ function uaf_activate(){
110
 
111
  function uaf_update_check() { // MUST CHANGE WITH EVERY VERSION
112
  $uaf_version_check = get_option('uaf_current_version');
113
- if ($uaf_version_check != '5.2'):
114
- update_option('uaf_current_version', '5.2');
115
  if ($uaf_version_check < 4.0):
116
  uaf_create_folder();
117
  uaf_move_file_to_newPath();
110
 
111
  function uaf_update_check() { // MUST CHANGE WITH EVERY VERSION
112
  $uaf_version_check = get_option('uaf_current_version');
113
+ if ($uaf_version_check != '5.3'):
114
+ update_option('uaf_current_version', '5.3');
115
  if ($uaf_version_check < 4.0):
116
  uaf_create_folder();
117
  uaf_move_file_to_newPath();
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: dnesscarkey
3
  Tags: custom fonts, font embed, font uploader, any font, embed any font, font uploader, css3 font embed, @font-face embed, font conversion, webfont, ttf, opentype
4
  Requires at least: 3.0
5
- Tested up to: 5.1.1
6
- Stable tag: 5.2
7
 
8
  Embed any custom font in your website. #1 Rated custom fonts plugin by WPMUDev.org.
9
 
@@ -113,6 +113,9 @@ No, our server is needed during font conversion only. After that all fonts are s
113
 
114
  == Changelog ==
115
 
 
 
 
116
  = 5.2 =
117
  * Added menu option in elements list.
118
 
2
  Contributors: dnesscarkey
3
  Tags: custom fonts, font embed, font uploader, any font, embed any font, font uploader, css3 font embed, @font-face embed, font conversion, webfont, ttf, opentype
4
  Requires at least: 3.0
5
+ Tested up to: 5.2.1
6
+ Stable tag: 5.3
7
 
8
  Embed any custom font in your website. #1 Rated custom fonts plugin by WPMUDev.org.
9
 
113
 
114
  == Changelog ==
115
 
116
+ = 5.3 =
117
+ * Fixed domain verification issue.
118
+
119
  = 5.2 =
120
  * Added menu option in elements list.
121
 
use-any-font.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Use Any Font
4
  Plugin URI: http://dineshkarki.com.np/use-any-font
5
  Description: Embed any font in your website
6
  Author: Dinesh Karki
7
- Version: 5.2
8
  Author URI: http://www.dineshkarki.com.np
9
  */
10
 
4
  Plugin URI: http://dineshkarki.com.np/use-any-font
5
  Description: Embed any font in your website
6
  Author: Dinesh Karki
7
+ Version: 5.3
8
  Author URI: http://www.dineshkarki.com.np
9
  */
10