Unyson - Version 2.7.28

Version Description

  • Fixed #4276,#3861,#4275
Download this release

Release Info

Developer Unyson
Plugin Icon 128x128 Unyson
Version 2.7.28
Comparing to
See all releases

Code changes from version 2.7.27 to 2.7.28

framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php CHANGED
@@ -60,7 +60,8 @@ class FW_Ext_Download_Source_Github extends FW_Ext_Download_Source {
60
 
61
  $response = $http->get(
62
  apply_filters( 'fw_github_api_url', 'https://api.github.com' )
63
- . '/repos/' . $set['user_repo'] . '/releases/' . $tag
 
64
  );
65
 
66
  unset( $http );
60
 
61
  $response = $http->get(
62
  apply_filters( 'fw_github_api_url', 'https://api.github.com' )
63
+ . '/repos/' . $set['user_repo'] . '/releases/' . $tag,
64
+ [ 'timeout' => 25 ]
65
  );
66
 
67
  unset( $http );
framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php CHANGED
@@ -66,7 +66,8 @@ class FW_Extension_Github_Update extends FW_Ext_Update_Service {
66
  $http = new WP_Http();
67
 
68
  $response = $http->get(
69
- $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/latest' )
 
70
  );
71
 
72
  unset( $http );
@@ -211,7 +212,8 @@ class FW_Extension_Github_Update extends FW_Ext_Update_Service {
211
  $http = new WP_Http();
212
 
213
  $response = $http->get(
214
- $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/tags/' . $version )
 
215
  );
216
 
217
  unset( $http );
66
  $http = new WP_Http();
67
 
68
  $response = $http->get(
69
+ $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/latest' ),
70
+ [ 'timeout' => 25 ]
71
  );
72
 
73
  unset( $http );
212
  $http = new WP_Http();
213
 
214
  $response = $http->get(
215
+ $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/tags/' . $version ),
216
+ [ 'timeout' => 25 ]
217
  );
218
 
219
  unset( $http );
framework/manifest.php CHANGED
@@ -4,4 +4,4 @@ $manifest = array();
4
 
5
  $manifest['name'] = __('Unyson', 'fw');
6
 
7
- $manifest['version'] = '2.7.27';
4
 
5
  $manifest['name'] = __('Unyson', 'fw');
6
 
7
+ $manifest['version'] = '2.7.28';
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: unyson
3
  Tags: page builder, editor, drag-and-drop, landing-page, widgets, sidebar, backup, shortcodes, backup, seo, breadcrumbs, portfolio, framework
4
  Requires at least: 4.4
5
  Tested up to: 6.0
6
- Stable tag: 2.7.27
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -89,6 +89,9 @@ Yes; Unyson will work with any theme.
89
 
90
  == Changelog ==
91
 
 
 
 
92
  = 2.7.27 =
93
  * Security Issue
94
 
3
  Tags: page builder, editor, drag-and-drop, landing-page, widgets, sidebar, backup, shortcodes, backup, seo, breadcrumbs, portfolio, framework
4
  Requires at least: 4.4
5
  Tested up to: 6.0
6
+ Stable tag: 2.7.28
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
89
 
90
  == Changelog ==
91
 
92
+ = 2.7.28 =
93
+ * Fixed [#4276](https://github.com/ThemeFuse/Unyson/issues/3915),[#3861](https://github.com/ThemeFuse/Unyson/issues/3861),[#4275](https://github.com/ThemeFuse/Unyson/issues/3861)
94
+
95
  = 2.7.27 =
96
  * Security Issue
97
 
unyson.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Unyson
4
  * Plugin URI: http://unyson.io/
5
  * Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
6
- * Version: 2.7.27
7
  * Author: ThemeFuse
8
  * Author URI: http://themefuse.com
9
  * License: GPL2+
3
  * Plugin Name: Unyson
4
  * Plugin URI: http://unyson.io/
5
  * Description: A free drag & drop framework that comes with a bunch of built in extensions that will help you develop premium themes fast & easy.
6
+ * Version: 2.7.28
7
  * Author: ThemeFuse
8
  * Author URI: http://themefuse.com
9
  * License: GPL2+