additional_plugins/serendipity_event_vgwort/ChangeLog
Thomas Hochstein 0bced8b29f vgwort: Some fixes. (#97)
* Change type of UNIQUE columns to VARCHAR.

MySQL can't work with UNIQUE constraints on
BLOB or TEXT columns: "MySQL Error 1170 (42000):
BLOB/TEXT Column Used in Key Specification
Without a Key Length".

Public and private counter identifiers have
a fixed length of 32, so use VARCHAR(32)
instead.

Signed-off-by: Thomas Hochstein <thh@inter.net>

* Requires at least s9y 2.2.1-alpha1.

That's the first release containing
"info_more", see s9y/Serendipty#511

Signed-off-by: Thomas Hochstein <thh@inter.net>

* Fix typo.

MySQL comparisions use "=", not "==".

Signed-off-by: Thomas Hochstein <thh@inter.net>

* Internationalisation.

Signed-off-by: Thomas Hochstein <thh@inter.net>

* Fix typo.

String concatenation is done using ".=", not
"+=".

Signed-off-by: Thomas Hochstein <thh@inter.net>

* Bump version, add ChangeLog.

Signed-off-by: Thomas Hochstein <thh@inter.net>

* Drop "unofficial" from name.

Signed-off-by: Thomas Hochstein <thh@inter.net>
2019-08-05 18:27:42 +02:00

14 lines
554 B
Plaintext

Version 0.4:
============
Changes by Thomas Hochstein <thh@inter.net>
- Require s9y 2.2.1-alpha1 or higher due to backend template changes
missing in older versions.
- Change table columns counter_public and counter_private to
VARCHAR(32) as MySQL doesn't accept UNIQUE constraints on TEXT
or BLOB columns.
- Fix MySQL comparison (use "=" instead of "=="); otherwise, no
counter codes will ever be found.
- Fix concatenation of body and extended, fixing wrong length
calculations for all entries with an extended entry.
- Internationalisation.