Skip to content

Commit 5f73551

Browse files
author
gitlost
committed
Version 1.0.3.
1 parent 28e598f commit 5f73551

File tree

6 files changed

+31
-11
lines changed

6 files changed

+31
-11
lines changed

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Tags:** Unicode, Normalization, Form C, Unicode Normalization Form C, Normalize, Normalizer, UTF-8, NFC
55
**Requires at least:** 3.9.13
66
**Tested up to:** 4.6
7-
**Stable tag:** 1.0.2
7+
**Stable tag:** 1.0.3
88
**License:** GPLv2 or later
99
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -40,7 +40,7 @@ data, and is fallible.
4040

4141
A google-cheating schoolboy French translation is supplied.
4242

43-
The plugin should run on PHP 5.2.17 to 7.0.9, and on WP 3.9.13 to 4.6.
43+
The plugin should run on PHP 5.2.17 to 7.0.10, and on WP 3.9.13 to 4.6.
4444

4545
The project is on [github](https://github.com/gitlost/unfc-normalize).
4646

@@ -74,6 +74,11 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
7474

7575
## Changelog ##
7676

77+
### 1.0.3 ###
78+
* For PHP 5 performance do preliminary preg_match on isNormalized.
79+
* Improve comments in Normalizer.php, tabs -> 4 spaces, UNFC_REGEX_IS_INVALID_UTF8_XXX invert & rename.
80+
* Fix untested admin notice and adjust tests. Fix some test bleed ($wp_scripts).
81+
7782
### 1.0.2 ###
7883
* Move all .php files bar main to includes subdir. Remove unused ajax.
7984
* Fix single-byte trie. Move regex alts to tools/functions.php.
@@ -95,3 +100,8 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
95100

96101
### 0.9.0 ###
97102
* Initial version after renaming from tl-normalize.
103+
104+
## Upgrade Notice ##
105+
106+
### 1.0.3 ###
107+
Improved PHP 5 performance on isNormalized() check.

languages/unfc-normalize-fr_FR.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# This file is distributed under the GPLv2.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: UNFC Nörmalize 1.0.2\n"
5+
"Project-Id-Version: UNFC Nörmalize 1.0.3\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/unfc-normalize\n"
7-
"POT-Creation-Date: 2016-09-01 20:01+0100\n"
8-
"PO-Revision-Date: 2016-09-01 20:02+0100\n"
7+
"POT-Creation-Date: 2016-09-01 20:44+0100\n"
8+
"PO-Revision-Date: 2016-09-01 20:45+0100\n"
99
"Last-Translator: gitlost <[email protected]>\n"
1010
"Language-Team: \n"
1111
"Language: fr_FR\n"

languages/unfc-normalize.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPLv2.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: UNFC Nörmalize 1.0.2\n"
5+
"Project-Id-Version: UNFC Nörmalize 1.0.3\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/unfc-normalize\n"
77
"POT-Creation-Date: 2016-07-30 18:01:12+00:00\n"
88
"MIME-Version: 1.0\n"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unfc-normalize",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Normalizes UTF-8 input to Normalization Form C.",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: gitlost, zodiac1978
33
Tags: Unicode, Normalization, Form C, Unicode Normalization Form C, Normalize, Normalizer, UTF-8, NFC
44
Requires at least: 3.9.13
55
Tested up to: 4.6
6-
Stable tag: 1.0.2
6+
Stable tag: 1.0.3
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -39,7 +39,7 @@ data, and is fallible.
3939

4040
A google-cheating schoolboy French translation is supplied.
4141

42-
The plugin should run on PHP 5.2.17 to 7.0.9, and on WP 3.9.13 to 4.6.
42+
The plugin should run on PHP 5.2.17 to 7.0.10, and on WP 3.9.13 to 4.6.
4343

4444
The project is on [github](https://github.com/gitlost/unfc-normalize).
4545

@@ -73,6 +73,11 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
7373

7474
== Changelog ==
7575

76+
= 1.0.3 =
77+
* For PHP 5 performance do preliminary preg_match on isNormalized.
78+
* Improve comments in Normalizer.php, tabs -> 4 spaces, UNFC_REGEX_IS_INVALID_UTF8_XXX invert & rename.
79+
* Fix untested admin notice and adjust tests. Fix some test bleed ($wp_scripts).
80+
7681
= 1.0.2 =
7782
* Move all .php files bar main to includes subdir. Remove unused ajax.
7883
* Fix single-byte trie. Move regex alts to tools/functions.php.
@@ -94,3 +99,8 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
9499

95100
= 0.9.0 =
96101
* Initial version after renaming from tl-normalize.
102+
103+
== Upgrade Notice ==
104+
105+
= 1.0.3 =
106+
Improved PHP 5 performance on isNormalized() check.

unfc-normalize.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: UNFC Nörmalize
44
* Plugin URI: https://github.com/gitlost/unfc-normalize
55
* Description: Normalizes UTF-8 input to Normalization Form C.
6-
* Version: 1.0.2
6+
* Version: 1.0.3
77
* Author: gitlost
88
* Author URI: https://profiles.wordpress.org/gitlost
99
* License: GPLv2
@@ -21,7 +21,7 @@
2121

2222
if ( ! defined( 'UNFC_VERSION' ) ) {
2323
// These need to be synced with "readme.txt".
24-
define( 'UNFC_VERSION', '1.0.2' ); // Sync also "package.json" and "language/unfc-normalize.pot".
24+
define( 'UNFC_VERSION', '1.0.3' ); // Sync also "package.json" and "language/unfc-normalize.pot".
2525
define( 'UNFC_WP_AT_LEAST_VERSION', '3.9.13' );
2626
define( 'UNFC_WP_UP_TO_VERSION', '4.6' );
2727

0 commit comments

Comments
 (0)