Changeset 2860099
- Timestamp:
- 02/04/2023 12:32:24 PM (3 years ago)
- Location:
- wordable
- Files:
-
- 1 added
- 3 edited
- 20 copied
-
tags/8.2.3 (added)
-
tags/8.2.3/includes (copied) (copied from wordable/trunk/includes)
-
tags/8.2.3/includes/action_params.php (copied) (copied from wordable/trunk/includes/action_params.php)
-
tags/8.2.3/includes/actions.php (copied) (copied from wordable/trunk/includes/actions.php)
-
tags/8.2.3/includes/activator.php (copied) (copied from wordable/trunk/includes/activator.php)
-
tags/8.2.3/includes/connector.php (copied) (copied from wordable/trunk/includes/connector.php)
-
tags/8.2.3/includes/wordable_exception.php (copied) (copied from wordable/trunk/includes/wordable_exception.php)
-
tags/8.2.3/includes/wordable_plugin.php (copied) (copied from wordable/trunk/includes/wordable_plugin.php) (1 diff)
-
tags/8.2.3/readme.txt (copied) (copied from wordable/trunk/readme.txt) (2 diffs)
-
tags/8.2.3/settings (copied) (copied from wordable/trunk/settings)
-
tags/8.2.3/settings/css/wordable.css (copied) (copied from wordable/trunk/settings/css/wordable.css)
-
tags/8.2.3/settings/images/menu_logo.svg (copied) (copied from wordable/trunk/settings/images/menu_logo.svg)
-
tags/8.2.3/settings/index.php (copied) (copied from wordable/trunk/settings/index.php)
-
tags/8.2.3/settings/views/_category_tree_node.php (copied) (copied from wordable/trunk/settings/views/_category_tree_node.php)
-
tags/8.2.3/settings/views/authors.php (copied) (copied from wordable/trunk/settings/views/authors.php)
-
tags/8.2.3/settings/views/categories.php (copied) (copied from wordable/trunk/settings/views/categories.php)
-
tags/8.2.3/settings/views/cta.php (copied) (copied from wordable/trunk/settings/views/cta.php)
-
tags/8.2.3/settings/views/index.php (copied) (copied from wordable/trunk/settings/views/index.php)
-
tags/8.2.3/settings/views/onboarding.php (copied) (copied from wordable/trunk/settings/views/onboarding.php)
-
tags/8.2.3/settings/views/system_report.php (copied) (copied from wordable/trunk/settings/views/system_report.php)
-
tags/8.2.3/wordable.php (copied) (copied from wordable/trunk/wordable.php) (1 diff)
-
trunk/includes/wordable_plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wordable.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordable/tags/8.2.3/includes/wordable_plugin.php
r2817083 r2860099 64 64 $current_cache = $this->get_wordable_database_cache(); 65 65 66 if($current_cache == NULL) $current_cache = array();67 68 $current_cache ['connection_check']= $connection_check;66 if($current_cache == NULL) $current_cache = new stdClass(); 67 68 $current_cache->connection_check = $connection_check; 69 69 70 70 $this->update_wordable_row( -
wordable/tags/8.2.3/readme.txt
r2845107 r2860099 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 Stable Tag: 8.2. 210 Stable Tag: 8.2.3 11 11 12 12 This plugin allows you to instantly export Google Docs to WordPress posts or pages. … … 136 136 == Changelog == 137 137 138 = 8.2.2 =139 * Double checking exported posts140 141 138 = 8.1.3 = 142 139 * UI Fixes -
wordable/tags/8.2.3/wordable.php
r2845107 r2860099 4 4 * Plugin URI: http://wordable.io 5 5 * Description: This plugin allows you to instantly export Google Docs to WordPress posts or pages. 6 * Version: 8.2. 26 * Version: 8.2.3 7 7 * Author: Wordable 8 8 * Author URI: https://wordable.io 9 9 * Tested up to: 5.9.2 10 10 * Requires at least: 5.0 11 * Stable tag: 8.2. 211 * Stable tag: 8.2.3 12 12 * 13 13 * Wordpress 5.0+ 14 14 */ 15 15 16 define('WORDABLE_VERSION', '8.2. 2');16 define('WORDABLE_VERSION', '8.2.3'); 17 17 18 18 include 'includes/wordable_exception.php'; -
wordable/trunk/includes/wordable_plugin.php
r2817083 r2860099 64 64 $current_cache = $this->get_wordable_database_cache(); 65 65 66 if($current_cache == NULL) $current_cache = array();67 68 $current_cache ['connection_check']= $connection_check;66 if($current_cache == NULL) $current_cache = new stdClass(); 67 68 $current_cache->connection_check = $connection_check; 69 69 70 70 $this->update_wordable_row( -
wordable/trunk/readme.txt
r2845107 r2860099 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 Stable Tag: 8.2. 210 Stable Tag: 8.2.3 11 11 12 12 This plugin allows you to instantly export Google Docs to WordPress posts or pages. … … 136 136 == Changelog == 137 137 138 = 8.2.2 =139 * Double checking exported posts140 141 138 = 8.1.3 = 142 139 * UI Fixes -
wordable/trunk/wordable.php
r2845107 r2860099 4 4 * Plugin URI: http://wordable.io 5 5 * Description: This plugin allows you to instantly export Google Docs to WordPress posts or pages. 6 * Version: 8.2. 26 * Version: 8.2.3 7 7 * Author: Wordable 8 8 * Author URI: https://wordable.io 9 9 * Tested up to: 5.9.2 10 10 * Requires at least: 5.0 11 * Stable tag: 8.2. 211 * Stable tag: 8.2.3 12 12 * 13 13 * Wordpress 5.0+ 14 14 */ 15 15 16 define('WORDABLE_VERSION', '8.2. 2');16 define('WORDABLE_VERSION', '8.2.3'); 17 17 18 18 include 'includes/wordable_exception.php';
Note: See TracChangeset
for help on using the changeset viewer.