Skip to content

Commit

Permalink
Release 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
herrvigg committed Apr 22, 2019
1 parent a8e388f commit d631579
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 3.6.0.dev
* New feature: the built-in **modules** replace the legacy integration plugins. See the integration tab and the main modules [README](https://github.com/qtranslate/qtranslate-xt/blob/master/modules/README.md) for more info.
* New modules: ACF, ACF PRO, All in One SEO Pack, Events Made Easy, Gravity Forms, WooCommerce. Note: these modules have been converted from the last available versions of the legacy plugins, but they still remain the same. See each module README for more info.
### 3.6.0
* New feature: the built-in **modules** replace the legacy integration plugins. You have to **deactivate/reactivate qTranslate-XT** to detect the active modules. See the integration tab and the main modules [README](https://github.com/qtranslate/qtranslate-xt/blob/master/modules/README.md) for more info.
* New modules: ACF, All in One SEO Pack, Events Made Easy, Gravity Forms, WooCommerce. Note: these modules have been converted from the last available versions of the legacy plugins, but they still remain the same. See each module README for more info.
* Fix CSS admin notices (#664)
* Cleanup obsolete admin version notices. The version options become obsolete (`qtranslate_version_previous, qtranslate_versions`).

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Stable tag: N/A
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Adds a user-friendly multilingual dynamic content management.
Adds user-friendly multilingual content support, stored in single post.

## Description

Expand Down Expand Up @@ -49,7 +49,7 @@ Not yet. Some work is in progress but don't expect this soon.
WooCommerce is now supported with a built-in module. Developers able to test it properly are much welcome! Please send PR for bug fixes.

### Is any plugin/themes supported? ###
Some major plugins are now supported with the built-in modules. For other plugins you need to provide custom integration through i18n configuration (json) and/or code (PHP/JS). A major refactoring is needed to make this easier.
Some major plugins are now supported with the built-in modules. Some plugins are also supported with built-in i18n configurations. For other plugins you need to provide custom integration through i18n configuration (json) and/or code (PHP/JS). A major refactoring is needed to make this easier.

### I'm new to qTranslate, where can I find detailed instructions for startup?
Check the legacy website:
Expand All @@ -72,7 +72,7 @@ Note for developers:
## Upgrade Notice

### 3.6.0
New feature! The built-in modules replace the legacy plugins for integration. See [README.md](https://github.com/qtranslate/qtranslate-xt/blob/master/modules/README.md) in modules for more info.
New feature! The built-in modules replace the legacy plugins for integration. You have to **deactivate/reactivate qTranslate-XT** to detect the active modules. See [README.md](https://github.com/qtranslate/qtranslate-xt/blob/master/modules/README.md) in modules for more info.

### 3.5.3
Fix REST API: no redirect allowed. Your rewrite rules should be updated by saving the permalink structures from the admin page.
Expand Down Expand Up @@ -101,7 +101,7 @@ The [legacy issues](https://qtranslatexteam.wordpress.com/known-issues/) should

## Desirable Unimplemented Features

* refactor custom integration without json files (i18n-config.json)
* refactor custom integration, possibly without json files (i18n-config.json)
* support for Gutenberg
* support for translatable slugs
* unit/integration tests
Expand Down
2 changes: 1 addition & 1 deletion modules/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Modules

The built-in **modules** provided in this folder replace the legacy integration plugins.
The built-in **modules** provided in this folder replace the legacy integration plugins. Those become obsolete and incompatible with the modules.

The new engine is generic and works as follows:
* the status of the modules is handled through the `qtranslate_modules` option. If this option is not set, the status of the modules is _undefined_ and they are not loaded.
Expand Down
6 changes: 3 additions & 3 deletions qtranslate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/**
* Plugin Name: qTranslate-XT
* Plugin URI: http://github.com/qtranslate/qtranslate-xt/
* Description: Adds user-friendly and database-friendly multilingual content support.
* Version: 3.5.5
* Description: Adds user-friendly multilingual content support, stored in single post.
* Version: 3.6.0
* Author: qTranslate Community
* Author URI: http://github.com/qtranslate/
* Tags: multilingual, multi, language, admin, tinymce, Polyglot, bilingual, widget, switcher, professional, human, translation, service, qTranslate, zTranslate, mqTranslate, qTranslate Plus, WPML
Expand Down Expand Up @@ -54,7 +54,7 @@
* Designed as interface for other plugin integration. The documentation is available at
* https://qtranslatexteam.wordpress.com/integration/
*/
define( 'QTX_VERSION', '3.6.0.dev' );
define( 'QTX_VERSION', '3.6.0' );

if ( ! defined( 'QTRANSLATE_FILE' ) ) {
define( 'QTRANSLATE_FILE', __FILE__ );
Expand Down
8 changes: 4 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Stable tag: N/A
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Adds a user-friendly multilingual dynamic content management.
Adds user-friendly multilingual content support, stored in single post.

## Description

Expand Down Expand Up @@ -49,7 +49,7 @@ Not yet. Some work is in progress but don't expect this soon.
WooCommerce is now supported with a built-in module. Developers able to test it properly are much welcome! Please send PR for bug fixes.

### Is any plugin/themes supported? ###
Some major plugins are now supported with the built-in modules. For other plugins you need to provide custom integration through i18n configuration (json) and/or code (PHP/JS). A major refactoring is needed to make this easier.
Some major plugins are now supported with the built-in modules. Some plugins are also supported with built-in i18n configurations. For other plugins you need to provide custom integration through i18n configuration (json) and/or code (PHP/JS). A major refactoring is needed to make this easier.

### I'm new to qTranslate, where can I find detailed instructions for startup?
Check the legacy website:
Expand All @@ -72,7 +72,7 @@ Note for developers:
## Upgrade Notice

### 3.6.0
New feature! The built-in modules replace the legacy plugins for integration. See [README.md](https://github.com/qtranslate/qtranslate-xt/blob/master/modules/README.md) in modules for more info.
New feature! The built-in modules replace the legacy plugins for integration. You have to **deactivate/reactivate qTranslate-XT** to detect the active modules. See [README.md](https://github.com/qtranslate/qtranslate-xt/blob/master/modules/README.md) in modules for more info.

### 3.5.3
Fix REST API: no redirect allowed. Your rewrite rules should be updated by saving the permalink structures from the admin page.
Expand Down Expand Up @@ -101,7 +101,7 @@ The [legacy issues](https://qtranslatexteam.wordpress.com/known-issues/) should

## Desirable Unimplemented Features

* refactor custom integration without json files (i18n-config.json)
* refactor custom integration, possibly without json files (i18n-config.json)
* support for Gutenberg
* support for translatable slugs
* unit/integration tests
Expand Down

0 comments on commit d631579

Please sign in to comment.