diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4e75ca0..5fe6d8f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: MYSQL_ALLOW_EMPTY_PASSWORD: "yes" env: - PLUGIN_VERSION: 1.3.37 + PLUGIN_VERSION: 1.3.38 WP_PROJECT_TYPE: plugin WP_VERSION: latest WP_MULTISITE: 0 diff --git a/readme.md b/readme.md index 8527977..1d16f9d 100755 --- a/readme.md +++ b/readme.md @@ -69,6 +69,11 @@ Ex. $updated_content = apply_filters('tx_link', $original_content); * It is also recommended to use [widgets](https://codex.wordpress.org/Widgets_API) in your theme instead of custom code, since this allows you to make your integration more future proof against incompatibilities with 3rd party modules. == Changelog == += 1.3.38 = +Fix for hierarchical custom post types +Fix for urls start with en +Add hreflang x-default tag +Add source language in published languages = 1.3.37 = Support Wordpress custom permalink slugs diff --git a/readme.txt b/readme.txt index b74f6d2..a8e61ee 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Contributors: txmatthew, ThemeBoy, brooksx Tags: transifex, localize, localization, multilingual, international, SEO Requires at least: 3.5.2 Tested up to: 6.5.3 -Stable tag: 1.3.37 +Stable tag: 1.3.38 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -78,6 +78,11 @@ Ex. $updated_content = apply_filters('tx_link', $original_content); It is also recommended to use [widgets](https://codex.wordpress.org/Widgets_API) in your theme instead of custom code, since this allows you to make your integration more future proof against incompatibilities with 3rd party modules. == Changelog == += 1.3.38 = +Fix for hierarchical custom post types +Fix for urls start with en +Add hreflang x-default tag +Add source language in published languages = 1.3.37 = Support Wordpress custom permalink slugs diff --git a/transifex-live-integration.php b/transifex-live-integration.php index 89f77aa..039dad9 100755 --- a/transifex-live-integration.php +++ b/transifex-live-integration.php @@ -5,13 +5,13 @@ * * @link https://help.transifex.com/en/articles/6261241-wordpress * @package TransifexLiveIntegration - * @version 1.3.37 + * @version 1.3.38 * * @wordpress-plugin * Plugin Name: International SEO by Transifex * Plugin URI: https://help.transifex.com/en/articles/6261241-wordpress * Description: Translate your WordPress powered website using Transifex. - * Version: 1.3.37 + * Version: 1.3.38 * License: GNU General Public License * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Text Domain: transifex-live-integration @@ -75,7 +75,7 @@ } define( 'LANG_PARAM', 'lang' ); -$version = '1.3.37'; +$version = '1.3.38'; require_once( dirname( __FILE__ ) . '/transifex-live-integration-main.php' ); Transifex_Live_Integration::do_plugin( is_admin(), $version );