In Series 2.1.0
There’s snow everywhere, the temperature is well below freezing over most of the area, and the only way out of my neighborhood is uphill. So, I’ve got extra time to work on personal projects today!
I’ve given In Series a little bit of a face lift. It’s still not perfect, but interacting with it should hopefully be a little bit easier now. What 2.1 brings is a UI that:
- Has a list of existing series that you can add your post to
- Lets you add your post to the beginning or end of an existing series
- Allows you to add the post to a new series
- Provides a way to remove a post from its current series (if it’s in one)
- Displays which series the post is in
Existing plugin users should note that the newest release of the plugin uses different key names for the metadata. But don’t worry — so long as you don’t change the filename of the plugin, In Series will automatically upgrade your old metadata to the new format. Note that this upgrade is triggered by activating the plugin; if you have trouble with your metadata not getting upgraded, try deactivating and activating the plugin.
Please report bugs for 2.1.0 here. After I’ve fixed any bugs reported here, I’ll release a 2.1.1 version.
Also, remember to back up your database before activating this, or any, new version of In Series. While I’m pretty sure that this code works as expected, and while my testbed survived upgrades and series manipulations, I’d hate to hear that someone’s database got eaten because of a bug.
Get In Series 2.1.0
Table of contents for In Series Releases
- In Series 2.1.0
- In Series 2.1.1
- In Series 2.2.0
- In Series 2.2.1
- In Series 2.2.2
- 3.0.0 Escaped!
- 3.0.1 Out…
- 3.0.2: In Series for Everyone
- 3.0.3: Security and Bugfixes
- 3.0.4 Out
- 3.0.5: FK Fandango
- 3.0.6: Come and Get It
- 3.0.7: Nothing Important
- 3.1 Open for Beta
- In Series 3.1 Beta 2
- In Series 3.0.8 — Someone Found a Bug!
- In Series 3.0.9 — performance boost
- In Series 3.0.10 (that was fast…)
- In Series 3.0.11 — Collation and Character Sets
- In Series 3.0.12: Breathing Room


2 Responses to “In Series 2.1.0”
Posted: Jan 15th, 2007 at 18:42
Fixed.
get_all_in_series() uses an “ORDER BY CAST(meta_value AS UNSIGNED) ASC” statement to order posts in a series. However, “meta_value” (in this case, the series order) can be negative. This leads to a bug where posts that should be the first in a series are sorted as the last.
Posted: Jan 16th, 2007 at 13:39
Fixed.
get_all_series() is broken. all_series() used to return an array that used post_id for its keys, however, this caused problems for another part of my code (the series selection drop-down). The “fix” was to create an array of series, without post_id, because post_id was irrelevant (or so I thought). However, get_all_series() tries to use the key data to create links; since they key data no longer corresponds to post_id values, this won’t work.