From 248dfbce30d0974b965279ac9574e33caf4c4f16 Mon Sep 17 00:00:00 2001 From: picasso Date: Tue, 25 Jan 2022 15:26:38 +0100 Subject: [PATCH] bump version 1.2.5 --- CHANGES.md | 5 +++++ package.json | 2 +- zu-translate.php | 8 +------- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 853fe9f..e7bec60 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +#### 1.2.5 / 2022-01-25 +* in support of the option `nobackups` added deletion of autosave on the server +* systematized colors for debug messages +* minify JS output + #### 1.2.3 / 2022-01-21 * implemented tracking of attribute changes with `WP Data Store` (without Event Listeners) * RAW update implemented without `Event Listeners` diff --git a/package.json b/package.json index ff9a38c..79de9d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zutranslate", - "version": "1.2.3", + "version": "1.2.5", "testedWP": "5.8.3", "requiresPHP": ">=7.2.0", "author": "Dmitry Rudakov", diff --git a/zu-translate.php b/zu-translate.php index 28f8d33..ba5b019 100644 --- a/zu-translate.php +++ b/zu-translate.php @@ -4,7 +4,7 @@ Plugin URI: https://github.com/picasso/zu-translate GitHub Plugin URI: https://github.com/picasso/zu-translate Description: Enhances "qTranslate-XT" with some features and Gutenberg support (WordPress Block Editor). -Version: 1.2.3 +Version: 1.2.5 Author: Dmitry Rudakov Author URI: https://github.com/picasso Text Domain: zu-translate @@ -16,9 +16,6 @@ // Prohibit direct script loading defined('ABSPATH') || die('No direct script access allowed!'); -// DEBUG-ONLY -// add_action('plugins_loaded', function() { - // Always load Zukit even if we don't use it later ('wp_doing_ajax' or 'wp_doing_cron') // as other plugins or themes may want to use it require_once('zukit/load.php'); @@ -36,6 +33,3 @@ require_once('includes/zutranslate-plugin.php'); zutranslate(__FILE__); } - -// DEBUG-ONLY -// });