Changeset 2801779
- Timestamp:
- 10/20/2022 10:07:33 AM (3 years ago)
- Location:
- unyson
- Files:
-
- 7 edited
- 5 copied
-
tags/2.7.28 (copied) (copied from unyson/trunk)
-
tags/2.7.28/framework/core/components/extensions/manager/class--fw-extensions-manager.php (copied) (copied from unyson/trunk/framework/core/components/extensions/manager/class--fw-extensions-manager.php)
-
tags/2.7.28/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php (modified) (1 diff)
-
tags/2.7.28/framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php (modified) (2 diffs)
-
tags/2.7.28/framework/manifest.php (copied) (copied from unyson/trunk/framework/manifest.php) (1 diff)
-
tags/2.7.28/readme.txt (copied) (copied from unyson/trunk/readme.txt) (2 diffs)
-
tags/2.7.28/unyson.php (copied) (copied from unyson/trunk/unyson.php) (1 diff)
-
trunk/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php (modified) (1 diff)
-
trunk/framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php (modified) (2 diffs)
-
trunk/framework/manifest.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/unyson.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
unyson/tags/2.7.28/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php
r1891028 r2801779 61 61 $response = $http->get( 62 62 apply_filters( 'fw_github_api_url', 'https://api.github.com' ) 63 . '/repos/' . $set['user_repo'] . '/releases/' . $tag 63 . '/repos/' . $set['user_repo'] . '/releases/' . $tag, 64 [ 'timeout' => 25 ] 64 65 ); 65 66 -
unyson/tags/2.7.28/framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php
r1901301 r2801779 67 67 68 68 $response = $http->get( 69 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/latest' ) 69 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/latest' ), 70 [ 'timeout' => 25 ] 70 71 ); 71 72 … … 212 213 213 214 $response = $http->get( 214 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/tags/' . $version ) 215 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/tags/' . $version ), 216 [ 'timeout' => 25 ] 215 217 ); 216 218 -
unyson/tags/2.7.28/framework/manifest.php
r2749668 r2801779 5 5 $manifest['name'] = __('Unyson', 'fw'); 6 6 7 $manifest['version'] = '2.7.2 7';7 $manifest['version'] = '2.7.28'; -
unyson/tags/2.7.28/readme.txt
r2749668 r2801779 4 4 Requires at least: 4.4 5 5 Tested up to: 6.0 6 Stable tag: 2.7.2 76 Stable tag: 2.7.28 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 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 92 95 = 2.7.27 = 93 96 * Security Issue -
unyson/tags/2.7.28/unyson.php
r2749668 r2801779 4 4 * Plugin URI: http://unyson.io/ 5 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.2 76 * Version: 2.7.28 7 7 * Author: ThemeFuse 8 8 * Author URI: http://themefuse.com -
unyson/trunk/framework/core/components/extensions/manager/includes/download-source/types/class-fw-download-source-github.php
r1891028 r2801779 61 61 $response = $http->get( 62 62 apply_filters( 'fw_github_api_url', 'https://api.github.com' ) 63 . '/repos/' . $set['user_repo'] . '/releases/' . $tag 63 . '/repos/' . $set['user_repo'] . '/releases/' . $tag, 64 [ 'timeout' => 25 ] 64 65 ); 65 66 -
unyson/trunk/framework/extensions/update/extensions/github-update/class-fw-extension-github-update.php
r1901301 r2801779 67 67 68 68 $response = $http->get( 69 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/latest' ) 69 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/latest' ), 70 [ 'timeout' => 25 ] 70 71 ); 71 72 … … 212 213 213 214 $response = $http->get( 214 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/tags/' . $version ) 215 $this->get_github_api_url( '/repos/' . $user_slash_repo . '/releases/tags/' . $version ), 216 [ 'timeout' => 25 ] 215 217 ); 216 218 -
unyson/trunk/framework/manifest.php
r2749668 r2801779 5 5 $manifest['name'] = __('Unyson', 'fw'); 6 6 7 $manifest['version'] = '2.7.2 7';7 $manifest['version'] = '2.7.28'; -
unyson/trunk/readme.txt
r2749668 r2801779 4 4 Requires at least: 4.4 5 5 Tested up to: 6.0 6 Stable tag: 2.7.2 76 Stable tag: 2.7.28 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 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 92 95 = 2.7.27 = 93 96 * Security Issue -
unyson/trunk/unyson.php
r2749668 r2801779 4 4 * Plugin URI: http://unyson.io/ 5 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.2 76 * Version: 2.7.28 7 7 * Author: ThemeFuse 8 8 * Author URI: http://themefuse.com
Note: See TracChangeset
for help on using the changeset viewer.