Lingotek Translation - Version 1.1.8

Version Description

(2015-11-19) =

  • Simplified authentication to Lingotek
Download this release

Release Info

Developer erichie
Plugin Icon 128x128 Lingotek Translation
Version 1.1.8
Comparing to
See all releases

Code changes from version 1.1.7 to 1.1.8

admin/settings/connect-account.php CHANGED
@@ -2,9 +2,7 @@
2
  <script>
3
  var hash = window.location.hash;
4
  if (hash.length && hash.indexOf("access_token") !== -1) {
5
- var parts = hash.substring(1).split('=');
6
- var access_token = parts[1];
7
- var url_with_access_token = window.location.origin + window.location.pathname + window.location.search + '&access_token=' + access_token;
8
  window.location.href = url_with_access_token;
9
  }
10
  else if (window.location.search.indexOf("connect") != -1) {
2
  <script>
3
  var hash = window.location.hash;
4
  if (hash.length && hash.indexOf("access_token") !== -1) {
5
+ var url_with_access_token = window.location.origin + window.location.pathname + window.location.search + '&' + hash.substr(1);
 
 
6
  window.location.href = url_with_access_token;
7
  }
8
  else if (window.location.search.indexOf("connect") != -1) {
lingotek.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin name: Lingotek Translation
4
  Plugin URI: http://lingotek.com/wordpress#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wplingotektranslationplugin
5
- Version: 1.1.7
6
  Author: Lingotek and Frédéric Demarle
7
  Author uri: http://lingotek.com
8
  Description: Lingotek offers convenient cloud-based localization and translation.
@@ -15,7 +15,7 @@ GitHub Plugin URI: https://github.com/lingotek/wp-lingotek
15
  if (!function_exists('add_action'))
16
  exit();
17
 
18
- define('LINGOTEK_VERSION', '1.1.7'); // plugin version (should match above meta)
19
  define('LINGOTEK_MIN_PLL_VERSION', '1.7.4.2');
20
  define('LINGOTEK_BASENAME', plugin_basename(__FILE__)); // plugin name as known by WP
21
  define('LINGOTEK_PLUGIN_SLUG', 'wp-lingotek');// plugin slug (should match above meta: Text Domain)
2
  /*
3
  Plugin name: Lingotek Translation
4
  Plugin URI: http://lingotek.com/wordpress#utm_source=wpadmin&utm_medium=plugin&utm_campaign=wplingotektranslationplugin
5
+ Version: 1.1.8
6
  Author: Lingotek and Frédéric Demarle
7
  Author uri: http://lingotek.com
8
  Description: Lingotek offers convenient cloud-based localization and translation.
15
  if (!function_exists('add_action'))
16
  exit();
17
 
18
+ define('LINGOTEK_VERSION', '1.1.8'); // plugin version (should match above meta)
19
  define('LINGOTEK_MIN_PLL_VERSION', '1.7.4.2');
20
  define('LINGOTEK_BASENAME', plugin_basename(__FILE__)); // plugin name as known by WP
21
  define('LINGOTEK_PLUGIN_SLUG', 'wp-lingotek');// plugin slug (should match above meta: Text Domain)
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: chouby, smithworx, erichie
3
  Donate link: http://lingotek.com/
4
  Tags: automation, bilingual, international, language, Lingotek, localization, multilanguage, multilingual, translate, translation
5
  Requires at least: 3.8
6
- Tested up to: 4.3
7
- Stable tag: 1.1.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -122,6 +122,10 @@ For more, visit the [Lingotek documentation site](https://lingotek.atlassian.net
122
 
123
  == Changelog ==
124
 
 
 
 
 
125
  = 1.1.7 (2015-11-2) =
126
 
127
  * Increased timeout for GET requests to 30 seconds
3
  Donate link: http://lingotek.com/
4
  Tags: automation, bilingual, international, language, Lingotek, localization, multilanguage, multilingual, translate, translation
5
  Requires at least: 3.8
6
+ Tested up to: 4.4
7
+ Stable tag: 1.1.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
122
 
123
  == Changelog ==
124
 
125
+ = 1.1.8 (2015-11-19) =
126
+
127
+ * Simplified authentication to Lingotek
128
+
129
  = 1.1.7 (2015-11-2) =
130
 
131
  * Increased timeout for GET requests to 30 seconds