diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/NEWS | 17 | ||||
-rw-r--r-- | debian/changelog | 22 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/postinst | 2 |
4 files changed, 40 insertions, 3 deletions
diff --git a/debian/NEWS b/debian/NEWS index 50332670f..b796154fa 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,3 +1,20 @@ +ikiwiki (3.20100406) unstable; urgency=low + + The title_natural sort method (as used by the inline directive, etc) + have been moved to the new sortnaturally plugin, which is not enabled + by default since it requires the Sort::Naturally perl module. + + Starting from this version, the `tagged()` pagespec only matches tags, + not regular wikilinks. If your wiki accidentially relied on the old, + buggy behavior, you might need to change pagespecs to use `link()`. + + To support the above change, all wikis need to be rebuilt on upgrade to + this version. If you listed your wiki in /etc/ikiwiki/wikilist this will + be done automatically when the Debian package is upgraded. Or use + ikiwiki-mass-rebuild to force a rebuild. + + -- Simon McVittie <smcv@debian.org> Tue, 06 Apr 2010 20:53:07 +0100 + ikiwiki (3.20091017) unstable; urgency=low To take advantage of significant performance improvements, all diff --git a/debian/changelog b/debian/changelog index 77d17f566..e985a5da8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,29 @@ -ikiwiki (3.20100404) UNRELEASED; urgency=low +ikiwiki (3.20100406) UNRELEASED; urgency=low + [ Joey Hess ] * bzr: Fix bzr log parsing to work with bzr 2.0. (liw) * comments: Fix missing entity encoding in title. * txt: Add a special case for robots.txt. + [ Simon McVittie ] + * Add support for link types, and make the the tagged() pagespec only + match tags, not regular links (a bugfix). + * Rebuild wikis on upgrade to this version to get tag link types recorded + correctly. + * Revamp sorting system; allow new sort methods to be added by plugins, + and add a "sortspec" syntax that can combine, reverse, etc sort methods. + * meta: Add `meta(author)`, `meta(title)` etc sortspecs to allow sorting + by metadata. + * meta: Add optional sortas parameter to author and title meta directives. + This can be used to get names sorted by last name without displaying + them last name first. + * sortnaturally: New plugin; the title_natural sort method has moved here. + + [ Joey Hess ] + * Update dependency for git-core to git transition. + * po: Check that translated underlay directories exist before using them + for master language. + -- Joey Hess <joeyh@debian.org> Sun, 04 Apr 2010 12:17:11 -0400 ikiwiki (3.20100403) unstable; urgency=low diff --git a/debian/control b/debian/control index d7ce9a178..b8fe81914 100644 --- a/debian/control +++ b/debian/control @@ -23,7 +23,7 @@ Depends: ${misc:Depends}, ${perl:Depends}, ${python:Depends}, libhtml-parser-perl, liburi-perl Recommends: gcc | c-compiler, libc6-dev | libc-dev, - subversion | git-core (>= 1:1.5.0) | tla | bzr (>= 0.91) | mercurial | monotone (>= 0.38) | darcs, + subversion | git-core (>= 1:1.5.0) | git (>= 1:1.7) | tla | bzr (>= 0.91) | mercurial | monotone (>= 0.38) | darcs, libxml-simple-perl, libnet-openid-consumer-perl, liblwpx-paranoidagent-perl, libtimedate-perl, libcgi-formbuilder-perl (>= 3.05), libcgi-session-perl (>= 4.14-1), diff --git a/debian/postinst b/debian/postinst index bf1825ab7..8eac26361 100755 --- a/debian/postinst +++ b/debian/postinst @@ -4,7 +4,7 @@ set -e # Change this when some incompatible change is made that requires # rebuilding all wikis. -firstcompat=3.20091010 +firstcompat=3.20100406 if [ "$1" = configure ] && \ dpkg --compare-versions "$2" lt "$firstcompat"; then |