From 950a958e305a9c51ceb2aa0ef3362526374b7ac0 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Mon, 11 Mar 2013 20:14:27 +0100 Subject: [PATCH] Updated for release. [ci skip] --- dosage.freecode | 14 ++++++++------ dosagelib/events.py | 1 + 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/dosage.freecode b/dosage.freecode index 3899b223d..99617dd0d 100644 --- a/dosage.freecode +++ b/dosage.freecode @@ -1,6 +1,6 @@ Project: dosage -Version: 1.12 -Release-Focus: Minor bugfixes +Version: 1.13 +Release-Focus: Minor feature enhancements Hide: N Website-URL: http://wummel.github.com/dosage/ Changelog-URL: https://github.com/wummel/dosage/blob/master/doc/changelog.txt @@ -8,7 +8,9 @@ Tar/GZ-URL: http://github.com/downloads/wummel/dosage/dosage-${version}.tar.gz GIT-Tree-URL: https://github.com/wummel/dosage.git Windows-installer-URL: http://github.com/downloads/wummel/dosage/dosage-${version}.exe -Option parsing for -l, --singlelist and --version has been fixed. -The following comic strips have been added: AlphaLuna, AlphaLunaSpanish, -BrentalFloss BrentalFlossFit, BrentalFlossGuest, DangerouslyChloe, -MagickChicks, MenageA3, Namesake, ShadowGirls, StickyDillyBuns. +The following comic strips have been added: AhoiPolloi, AxeCop, Bearmageddon, DeadWinter, +HarkAVagrant, IAmArg, LoadingArtist, Nnewts, PHDComics, PokeyThePenguin, +SnowFlame, WorldOfMrToast and Zwarwald. +The HTML output embeds the comic images now and the --output option +can be specified multiple times. +Several bugs have also been fixed. diff --git a/dosagelib/events.py b/dosagelib/events.py index 602c8a373..96c7de774 100644 --- a/dosagelib/events.py +++ b/dosagelib/events.py @@ -180,6 +180,7 @@ class HtmlEventHandler(EventHandler): _handler_classes = {} def addHandlerClass(clazz): + """Register handler class.""" if not issubclass(clazz, EventHandler): raise ValueError("%s must be subclassed from %s" % (clazz, EventHandler)) _handler_classes[clazz.name] = clazz