Skip to content

Commit

Permalink
Merge pull request #26 from inpsyde/release/1.4.0
Browse files Browse the repository at this point in the history
Change the version and update changelog
  • Loading branch information
Narek13 authored Sep 7, 2021
2 parents fd5248e + b163dac commit a3dd6a4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion inc/functions/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function translationmanager_api()
{
static $api = null;

$url = 'http://stage.api.eurotext.de/api/v1';
$url = 'https://api.eurotext.de/api/v1';

if (defined('TRANSLATION_MANAGER_API_URL') && TRANSLATION_MANAGER_API_URL) {
$url = TRANSLATION_MANAGER_API_URL;
Expand Down
14 changes: 11 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: Inpsyde, Eurotext, paddyullrich, wido
Tags: translation, api, I18N
Donate link: https://eurotext-ecommerce.com
Requires at least: 4.6
Requires at least: 5.0
Tested up to: 5.8
Stable tag: 1.3.4
Stable tag: 1.4.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -118,6 +118,14 @@ Just send an email to [email protected] with a request.
3. project view

== Changelog ==
= 1.4.0 =
* Fix Yoast SEO meta keys are not translatable
* Fix Deleting a Project in the projects overview deletes all translations
* Add Deactivated sites should not be displayed for translations
* Add XLIFF support
* Add Elementor support
* Add PHP minimum required version is now 7.2 and WordPress required minimum version is 5.0

= 1.3.4 =
* Fix bugs with ACF fields

Expand Down Expand Up @@ -154,4 +162,4 @@ Just send an email to [email protected] with a request.
* Improved settings tab

= 1.0 =
* First version of translationMANAGER released with basic functions.
* First version of translationMANAGER released with basic functions.
2 changes: 1 addition & 1 deletion resources/js/importXLIFF.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
var data = new FormData();
data.append('file', fileToImport[0] );
data.append('action', ajaxAction);
data.append('projectId', projectInfo.projectI);
data.append('projectId', projectInfo.projectId);

$.ajax( {
url: ajaxurl,
Expand Down
2 changes: 1 addition & 1 deletion src/Xliff/Import.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ protected function handleImport(array $files): void

foreach ($files as $file) {
$fileParts = pathinfo($file);
if (empty($fileParts['extension']) || $fileParts['extension'] !== 'zip') {
if (empty($fileParts['extension']) || $fileParts['extension'] === 'zip') {
continue;
}

Expand Down
4 changes: 2 additions & 2 deletions translationmanager.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: translationMANAGER
* Plugin URI: https://eurotext.de/en
* Description: Translate your content from a WordPress Multisite and MultilingualPress.
* Version: 1.3.4
* Version: 1.4.0
* Author: Inpsyde
* Author URI: https://inpsyde.com/
* Text Domain: translationmanager
Expand Down Expand Up @@ -192,4 +192,4 @@ function activate() {
register_activation_hook( __FILE__, 'activate' );
}, null );

$bootstrap();
$bootstrap();

0 comments on commit a3dd6a4

Please sign in to comment.