Changeset 3043548
- Timestamp:
- 03/01/2024 09:56:12 AM (2 years ago)
- Location:
- memsource-connector/trunk
- Files:
-
- 4 edited
-
memsource.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
src/Service/TranslationWorkflowService.php (modified) (1 diff)
-
src/Utils/LogUtils.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
memsource-connector/trunk/memsource.php
r3006102 r3043548 5 5 Plugin URI: https://support.phrase.com/hc/en-us/articles/5709657294620 6 6 Description: Localize WordPress websites with the help of professional translation tools: translation memories, terminology bases and quality checkers. 7 Version: 4.6. 07 Version: 4.6.1 8 8 Text Domain: memsource 9 9 Domain Path: /locale … … 18 18 19 19 define('MEMSOURCE_PLUGIN_PATH', dirname(__FILE__)); 20 define('MEMSOURCE_PLUGIN_VERSION', '4.6. 0');20 define('MEMSOURCE_PLUGIN_VERSION', '4.6.1'); 21 21 define('MEMSOURCE_PLUGIN_DIR_URL', plugin_dir_url(__FILE__)); 22 22 -
memsource-connector/trunk/readme.txt
r3006102 r3043548 33 33 == Changelog == 34 34 35 = 4.6.1 = 36 *Release Date - 1 Mar 2024* 37 38 * Added support for the ACF plugin installed via MU-Plugins 39 35 40 = 4.6.0 = 36 41 *Release Date - 6 Dec 2023* -
memsource-connector/trunk/src/Service/TranslationWorkflowService.php
r2929793 r3043548 194 194 public function isAcfEnabled(): bool 195 195 { 196 return in_array('advanced-custom-fields/acf.php', get_option('active_plugins'), true) ||197 in_array('advanced-custom-fields-pro/acf.php', get_option('active_plugins'), true);196 global $acf; 197 return isset($acf); 198 198 } 199 199 } -
memsource-connector/trunk/src/Utils/LogUtils.php
r2870027 r3043548 153 153 'Memsource Connector Plugin Version' => MEMSOURCE_PLUGIN_VERSION, 154 154 'Active plugins' => get_option('active_plugins'), 155 'MU plugins' => wp_get_mu_plugins(), 155 156 'Configured custom fields' => $appRegistry->getCustomFieldsService()->getCustomFieldsDump(), 156 157 'Installed shortcodes' => array_keys($shortcode_tags),
Note: See TracChangeset
for help on using the changeset viewer.