Skip to content

Commit 70f70e2

Browse files
author
gitlost
committed
Version 1.0.0.
1 parent 70b5743 commit 70f70e2

File tree

9 files changed

+21
-15
lines changed

9 files changed

+21
-15
lines changed

README.md

Lines changed: 6 additions & 3 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.5.3
7-
**Stable tag:** 0.9.1
7+
**Stable tag:** 1.0.0
88
**License:** GPLv2 or later
99
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -26,11 +26,11 @@ which includes the PHP class `Normalizer`.
2626
However the plugin works without the PHP Internationalization extension being installed, as it uses (a modified version of)
2727
the [Symfony `Normalizer` polyfill](https://github.com/symfony/polyfill/tree/master/src/Intl/Normalizer).
2828

29-
Text pasted into inputs is normalized immediately using the javascript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
29+
Also text pasted into inputs is normalized immediately using the javascript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
3030
For browsers without normalization support, the [unorm polyfill](https://github.com/walling/unorm) is used.
3131

3232
For further info, see the WP Trac ticket [#30130 Normalize characters with combining marks to precomposed characters](https://coretrac.wordpress.org/ticket/30130)
33-
and the Make WP Core comment on [May 17 feature projects chat and prompt](https://make.wordpress.org/core/2016/05/17/may-17-feature-projects-chat-and-prompt/#comment-30300).
33+
and this [Make WP Core comment](https://make.wordpress.org/core/2016/05/17/may-17-feature-projects-chat-and-prompt/#comment-30300).
3434

3535
For existing data, the plugin includes an administration tool to scan and normalize the database.
3636
**Important:** before using this tool to normalize, please [backup your database](https://codex.wordpress.org/WordPress_Backups).
@@ -74,6 +74,9 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
7474

7575
## Changelog ##
7676

77+
### 1.0.0 ###
78+
* Initial release.
79+
7780
### 0.9.1 ###
7881
* Fix bad serialized data corruption on db check.
7982
* Fix text domain tag.

js/ie8.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/unfc-normalize.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 0.9.1\n"
5+
"Project-Id-Version: UNFC Nörmalize 1.0.0\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/unfc-normalize\n"
7-
"POT-Creation-Date: 2016-07-30 23:20+0100\n"
8-
"PO-Revision-Date: 2016-07-30 23:20+0100\n"
7+
"POT-Creation-Date: 2016-07-31 00:38+0100\n"
8+
"PO-Revision-Date: 2016-07-31 00:38+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 0.9.1\n"
5+
"Project-Id-Version: UNFC Nörmalize 1.0.0\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": "0.9.1",
3+
"version": "1.0.0",
44
"description": "Normalizes UTF-8 input to Normalization Form C.",
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 6 additions & 3 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.5.3
6-
Stable tag: 0.9.1
6+
Stable tag: 1.0.0
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

@@ -25,11 +25,11 @@ which includes the PHP class `Normalizer`.
2525
However the plugin works without the PHP Internationalization extension being installed, as it uses (a modified version of)
2626
the [Symfony `Normalizer` polyfill](https://github.com/symfony/polyfill/tree/master/src/Intl/Normalizer).
2727

28-
Text pasted into inputs is normalized immediately using the javascript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
28+
Also text pasted into inputs is normalized immediately using the javascript [`normalize()` method](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/String/normalize).
2929
For browsers without normalization support, the [unorm polyfill](https://github.com/walling/unorm) is used.
3030

3131
For further info, see the WP Trac ticket [#30130 Normalize characters with combining marks to precomposed characters](https://coretrac.wordpress.org/ticket/30130)
32-
and the Make WP Core comment on [May 17 feature projects chat and prompt](https://make.wordpress.org/core/2016/05/17/may-17-feature-projects-chat-and-prompt/#comment-30300).
32+
and this [Make WP Core comment](https://make.wordpress.org/core/2016/05/17/may-17-feature-projects-chat-and-prompt/#comment-30300).
3333

3434
For existing data, the plugin includes an administration tool to scan and normalize the database.
3535
**Important:** before using this tool to normalize, please [backup your database](https://codex.wordpress.org/WordPress_Backups).
@@ -73,6 +73,9 @@ global PHP variable `unfc_normalize`, but you should ensure that the `Normalizer
7373

7474
== Changelog ==
7575

76+
= 1.0.0 =
77+
* Initial release.
78+
7679
= 0.9.1 =
7780
* Fix bad serialized data corruption on db check.
7881
* Fix text domain tag.

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: 0.9.1
6+
* Version: 1.0.0
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', '0.9.1' ); // Sync also "package.json" and "language/unfc-normalize.pot".
24+
define( 'UNFC_VERSION', '1.0.0' ); // 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.5.3' );
2727
}

0 commit comments

Comments
 (0)