commit 8ae2d0513afdad0c1d349c83ddf2d6f5e4c879f4
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-03-27 09:59:18 +0100

    Bump the version to 1.8.11
    
    The 1.8.10 tag is taken by the bad release.

 NEWS            | 29 ++++-------------------------
 configure.in    |  2 +-
 src/Makefile.am |  2 +-
 3 files changed, 6 insertions(+), 27 deletions(-)

commit 5c240cfc4c559370b8c65c2592dda1e3ceefed63
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-03-16 14:44:24 +0100

    Revert "ChannelCollection: make sure to update the UI when reading an item"
    
    It caused unread items to get deselected as soon as one cliked (and
    thus selected) them.
    
    This reverts commit 7e612f3b3112667ae698457fd313ad250558c01d.

 src/ChannelCollection.cs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 1b5c11fa30c280870100df8254fa51ef735f5495
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-03-16 01:55:47 +0100

    Channel: remove unused function

 src/Channel.cs | 10 ----------
 1 file changed, 10 deletions(-)

commit 7e612f3b3112667ae698457fd313ad250558c01d
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-03-16 01:30:59 +0100

    ChannelCollection: make sure to update the UI when reading an item
    
    Make sure to signal the channel as changed when an item has been
    marked read or unread. Previously some updates went missing.

 src/ChannelCollection.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 08f22501efcdc81f8333a30e84a3f6f8d38c3938
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   2013-03-12 23:19:21 +0100

    Updated Danish translation

 po/da.po | 474 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 239 insertions(+), 235 deletions(-)

commit 878ccae892b56398ff8212ccc43b61d93677150a
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-02-24 23:31:50 +0100

    Add .exe and .mdb to the ignore rules

 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

commit 7684052178eb0d8d7d62ecb893ce9bf433e49602
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-02-24 23:29:14 +0100

    ItemList: forget about changing items automatically
    
    It's not good UX to change the current item when selecting a channel
    from the list, so don't do it.

 src/Application.cs |  2 +-
 src/ItemList.cs    | 23 ++---------------------
 2 files changed, 3 insertions(+), 22 deletions(-)

commit c90acc0a0708ad9f1b03a02552c420606d46597b
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-02-15 23:50:07 +0100

    ItemList: don't switch to first unread if we're already in the channel
    
    We used to do advance to the next unread on any channel update,
    including when we are already showing the channel, which advanced the
    current item to the next unread on each refresh, losing the user's
    position.
    
    Recognise whether we're updating whilst inside the channel or not and
    advance as appropriate.

 src/Application.cs |  2 +-
 src/ItemList.cs    | 30 ++++++++++++++++--------------
 2 files changed, 17 insertions(+), 15 deletions(-)

commit 169274196a8cda30a972fb3ff83696b002b17c0a
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   2013-02-11 06:09:24 -0200

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 497 ++++++++++++++++++++++++++++++------------------------------
 1 file changed, 252 insertions(+), 245 deletions(-)

commit 559280202ffc7e8577efd2044eb3987c884cb9c9
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:   2013-02-08 19:38:55 +0100

    Update French translation

 po/fr.po | 493 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 249 insertions(+), 244 deletions(-)

commit c79c10a101533d42f797699a80750cfa26b830ec
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-16 02:40:24 +0100

    Handle HTML entities better
    
    Don't escape the HTML when showing it in the WebView, as it makes it
    show the entities instead of the character they represent.
    
    Conversely, unescape them when showing them in the ListView, as pango
    doesn't read HTML.

 src/ItemList.cs | 3 ++-
 src/ItemView.cs | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

commit b9d324719ba76856b9f55a2e5d5fa800efe6fa0e
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-16 01:30:56 +0100

    ItemList: oops, include changes to Next() and remove old code

 src/ItemList.cs | 50 ++++----------------------------------------------
 1 file changed, 4 insertions(+), 46 deletions(-)

commit 80b1a150c25ce05758aa57715e28a305ffcb1504
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-16 01:25:33 +0100

    Add .in and Makefiles to the ignore rules

 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

commit f58ab068dc8b657c6fb25ae9065810c8cc228a6f
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-16 01:22:45 +0100

    ItemList: simplify pre-selected item selection
    
    Swap out the complex function running after a 100ms timeout for a
    straight comparison of the sorting order of the items.

 src/ItemList.cs | 47 ++++++++++++++++++++++++++++++++---------------
 1 file changed, 32 insertions(+), 15 deletions(-)

commit 8306e716a5a64342782afaf7c93e6bc78c09e447
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-16 01:10:44 +0100

    Don't crash if the channel is empty

 src/ItemList.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0cfb69dbfdf6eb50c6e026adcb51d93f950a159c
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-16 00:04:49 +0100

    Commit the changes for the project and solution

 blam.csproj | 16 ++++++++--------
 blam.sln    | 11 +++++++++++
 2 files changed, 19 insertions(+), 8 deletions(-)

commit 720fb056df985e395be12c9b7f0e44353c1363e9
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-15 23:14:09 +0100

    Move ItemList.GetSelected() to use Selected()

 src/ItemList.cs | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

commit de656b20bc926460d33286ef48646792480ceb7b
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-15 22:57:00 +0100

    Make 'j' go to the next item

 src/Application.cs |  6 +++-
 src/ChannelList.cs |  2 +-
 src/ItemList.cs    | 82 ++++++++++++++++++++++++++++--------------------------
 3 files changed, 48 insertions(+), 42 deletions(-)

commit b073809154b20820ee772963b3bc8329cca886d1
Author: Carlos Martín Nieto <cmn@dwim.me>
Date:   2013-01-15 21:20:24 +0100

    Include the stetic files in the makefile

 src/Makefile.am | 4 ++++
 1 file changed, 4 insertions(+)

commit 8dfd5a4ef6dcdfd9df77f23b7595ee18892d7ac7
Author: Balázs Úr <urbalazs@src.gnome.org>
Date:   2012-12-27 15:10:15 +0100

    Updated Hungarian translation

 po/hu.po | 489 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 264 insertions(+), 225 deletions(-)

commit 78836d52cac15a6039d277f7d357cf396fe4085f
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   2012-12-16 10:28:56 +0400

    Updated Russian translation

 po/ru.po | 59 ++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 34 insertions(+), 25 deletions(-)

commit 2d9e3afd00c762af7804eb42df0086974ee81da2
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   2012-11-14 12:08:28 +0100

    Updated Serbian translation

 po/sr.po       | 541 +++++++++++++++++++++++++++++++++++++++++++++++----------
 po/sr@latin.po | 486 +++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 935 insertions(+), 92 deletions(-)

commit 2690f987f0bc3af8a1eeb33fce69c0e8de2ce33b
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   2012-11-11 18:44:10 +0100

    Updated Galician translations

 po/gl.po | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

commit bc3cb13077a73161414a65dbe2b08a7303424c95
Author: Marek Černocký <marek@manet.cz>
Date:   2012-11-05 18:32:48 +0100

    Updated Czech translation

 po/cs.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit fbeae86bc9d3481a68568a99184573c866e6d383
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   2012-11-01 15:39:03 +0200

    Updated Lithuanian translation

 po/lt.po | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

commit 3f9a8fc4f5a24df57398c220a089c6773f20823e
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   2012-11-01 01:03:36 +0100

    Updated Polish translation

 po/pl.po | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

commit fbb3807e5f68a9ee2f71f757cb6cb831e99df6d9
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2012-10-31 18:57:55 +0100

    Updated Slovenian translation

 po/sl.po | 58 +++++++++++++++++++---------------------------------------
 1 file changed, 19 insertions(+), 39 deletions(-)

commit 764db8e1604bda30e577e3f6a2d0f12f279ae48b
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   2012-10-31 12:23:43 +0100

    Updated Spanish translation

 po/es.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit af66f6289b1477b5e47d13db7d84f191c2b33be9
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   2012-10-31 12:13:07 +0100

    Fixed typo in string. Fixes bug #684136

 src/blam.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 475812e612292f34d84a9ad087d68a53883ce2be
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   2012-10-30 12:13:52 +0200

    [l10n] Updated Estonian translation

 po/et.po | 131 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 67 insertions(+), 64 deletions(-)

commit b7e7a973611e13beeedceee4e6d16149ae754589
Author: Rūdolfs Mazurs <rudolfsm@src.gnome.org>
Date:   2012-10-13 00:36:16 +0300

    Updated Latvian translation

 po/lv.po | 479 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 241 insertions(+), 238 deletions(-)

commit 7cd873cf95580ada9d9ff1489461fc9d59144744
Author: Aleksej Kabanov <ak099@mail.ru>
Date:   2012-09-28 15:26:13 +0400

    Updated Russian translation

 po/ru.po | 501 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 250 insertions(+), 251 deletions(-)

commit 01f0091cd6eeaa40e066fec1092d5f8e6f45a093
Author: Aurimas Černius <aurisc4@gmail.com>
Date:   2012-09-15 15:03:17 +0300

    Updated Lithuanian translation

 po/lt.po | 513 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 292 insertions(+), 221 deletions(-)

commit 1636fd8977ee86ea808207768adbfeb60453833d
Author: Andika Triwidada <andika@gmail.com>
Date:   2012-09-08 22:42:47 +0700

    Updated Indonesian translation

 po/id.po | 202 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 99 insertions(+), 103 deletions(-)

commit bda40cbe73514b07a161ec463c5379d5cc2d0caf
Author: Marek Černocký <marek@manet.cz>
Date:   2012-09-02 13:15:31 +0200

    Updated Czech translation

 po/cs.po | 493 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 248 insertions(+), 245 deletions(-)

commit 8ffba4e56115236c5c874eb0f89671b045b43525
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   2012-08-30 14:30:18 +0200

    Updated Galician translations

 po/gl.po | 475 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 240 insertions(+), 235 deletions(-)

commit 587d427f309ef6ea8c5389087c59524da2b558e1
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2012-08-29 08:50:28 +0200

    Updated Slovenian translation

 po/sl.po | 498 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 253 insertions(+), 245 deletions(-)

commit 1dbb0993a2b573aae7107c6a72ad0f16fd73c618
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   2012-08-20 14:12:45 +0200

    Updated Spanish translation

 po/es.po | 503 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 254 insertions(+), 249 deletions(-)

commit 6d6950f50d7301b3c132ea3d4a88a549aeb454cd
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   2012-08-19 14:15:57 +0200

    Updated Polish translation

 po/pl.po | 476 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 240 insertions(+), 236 deletions(-)

commit ba5b3482cc6ba96b16379110bba313a774a0a3fd
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   2012-08-19 14:14:02 +0200

    Updated POTFILES.in

 po/POTFILES.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 2cd2df18c10ed5a3a406761e65a7303867de47ad
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-18 14:39:46 +0200

    Port a couple of dialogs to stetic

 blam.csproj                              |  15 +-
 gtk-gui/Imendio.Blam.AddChannelDialog.cs | 171 +++++++++++
 gtk-gui/generated.cs                     |  29 ++
 gtk-gui/gui.stetic                       | 470 +++++++++++++++++++++++++++++++
 src/AddChannelDialog.cs                  |  50 ++++
 src/Application.cs                       |  23 +-
 src/Dialogs.cs                           |  93 ------
 7 files changed, 748 insertions(+), 103 deletions(-)

commit f69e360769dc8f2ba62be9a7d07fafa9f59ede62
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-18 04:12:00 +0200

    Add the MonoDevelop files

 blam.csproj | 139 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 blam.sln    |  28 ++++++++++++
 2 files changed, 167 insertions(+)

commit 6aaaee817e871626cd8567cc7aaf7996f1784340
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-18 04:08:33 +0200

    Don't use glade for the 'about' dialog

 src/Application.cs | 10 +++++++++-
 src/Dialogs.cs     | 22 ----------------------
 2 files changed, 9 insertions(+), 23 deletions(-)

commit 56fef95f98733de8f339dd6b0e092a86b20dba51
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-06 01:12:03 +0200

    ChannelList: don't bother with Glib.Idle for filling data
    
    It's not an expensive operation and we can do it on the spot. While in
    the area, remove an unused variable.

 src/ChannelList.cs | 31 +++++--------------------------
 1 file changed, 5 insertions(+), 26 deletions(-)

commit 9b488c98b01d4b162eb8dfe92ba841fdfcaf209b
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-06 01:02:08 +0200

    FeedUpdater: remove unused function
    
    While in the area, make sure to use the right exception when in the
    filter catch.

 src/FeedUpdater.cs | 26 +-------------------------
 1 file changed, 1 insertion(+), 25 deletions(-)

commit 4e962dd1784e235a540a731d1b85d0d32153f5ea
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-04 21:23:30 +0200

    Use a Dictionary for the theme variables

 src/ItemView.cs | 17 +++++++++--------
 src/Theme.cs    | 19 ++++++-------------
 2 files changed, 15 insertions(+), 21 deletions(-)

commit ce0f357fce5f48f175e56297649cc201769261c8
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-04 21:05:00 +0200

    An easier way to check for duplicate channel entries

 src/ChannelCollection.cs | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

commit bb23737b5e3c70cd9af5ab48fd02a114eedf3874
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-08-04 20:55:12 +0200

    Let the runtime take care of threading
    
    Use the task capabilities that the runtime gives
    us instead of reinenting them poorly

 src/Application.cs       |   7 +--
 src/Channel.cs           |  19 +++++-
 src/ChannelCollection.cs | 146 ++++++++++++-----------------------------------
 src/ChannelGroup.cs      |  19 ++++++
 4 files changed, 78 insertions(+), 113 deletions(-)

commit ed542cdc44c71b29050afc18466b98352d892b3a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-07-22 17:53:59 +0200

    ItemView: Use the Id if the Item doesn't have any links

 src/ItemView.cs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit ea41eb912e462e124d84e533e4fd971d2e4b10b8
Author: Andika Triwidada <andika@gmail.com>
Date:   2012-07-16 03:05:06 +0700

    Added Indonesian translation

 configure.in |   2 +-
 po/id.po     | 474 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 475 insertions(+), 1 deletion(-)

commit 0b7665f8f1418730356d85765fae4baa1dc2d123
Author: Tom Tryfonidis <tomtryf@gmail.com>
Date:   2012-06-29 14:06:17 +0300

    Updated Greek translation

 po/el.po | 48 ++++++++++++++++++++++++++++++++++--------------
 1 file changed, 34 insertions(+), 14 deletions(-)

commit 188fe00ab5d11ceb709370436f3c0075c2f94333
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   2012-05-15 22:55:41 +0300

    Updated Latvian translation.

 po/lv.po | 71 ++++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 35 insertions(+), 36 deletions(-)

commit c03c7860f6abc6a85b15359126c3acf7fd735ce1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 17:31:35 +0200

    Bring NEWS back to life

 NEWS | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

commit 1ba90312012464d849c7dc7f5921948b33ef44e0
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 17:07:44 +0200

    Bump version to 1.8.10
    
    Evolution, not revolution; don't try to go for 2.0 so fast.

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 201a1890d044da53e91adbeec2dd55e2a8bd441e
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 16:37:40 +0200

    Autogenerate the ChangeLog file from git

 ChangeLog     | 1972 ---------------------------------------------------------
 ChangeLog.old | 1972 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Makefile.am   |    9 +
 3 files changed, 1981 insertions(+), 1972 deletions(-)

commit b9e0c26558820f223633da04b0ce53fecdbb6382
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 03:44:47 +0200

    Prefer dmcs if it's available

 configure.in | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit f6e5e703df3d60040c6134f10bad3d95f84ba36a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 01:47:21 +0200

    Remove some default feeds that don't exist anymore

 collection.xml | 5 -----
 1 file changed, 5 deletions(-)

commit 379e35c00b968974d01ac1bc5c16858454bd105a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 01:44:43 +0200

    Be more explicit and allow building outside the source tree

 src/Makefile.am | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 7fdfb67dabade9f9e3ffecfaccd5f6fae1e885f9
Merge: e4155e3 07cbef6
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 01:27:21 +0200

    Merge branch 'blam-1.8'
    
    Conflicts:
    	Makefile.am
    	lib/Makefile.am
    	src/ItemView.cs
    	src/Makefile.am

commit e4155e378c3c214b2652b33dec68f944d5309da9
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-13 01:00:55 +0200

    Revert "Use db4o as storage" and "Remove workaround for the XML storage"
    
    This reverts commit cc5d6b87bdeac3303dba4100af253eda3cff078d.
    This reverts commit 7256a59dd128d2dc3753051538f475d0ec321e7f.
    
    Using db4o was a nice experiment, but failed.

 configure.in             |   2 -
 src/Application.cs       |   2 +-
 src/Channel.cs           |  42 +++++++-------
 src/ChannelCollection.cs |   2 +-
 src/Defines.cs.in        |   2 +-
 src/Item.cs              |  38 +++++++++++++
 src/ItemList.cs          |   8 +--
 src/ItemStore.cs         | 139 +++++++++++++++++++++++------------------------
 src/Makefile.am          |   2 +-
 9 files changed, 135 insertions(+), 102 deletions(-)

commit ff03141dd9d1f3a3bb47255b45ec95c0f8f48811
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 23:15:28 +0200

    Update DOAP file

 blam.doap | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit 07cbef6f0571bb5dd2caa25f85d88c6b450f6833
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 21:13:47 +0200

    configure: Allow the user to disable notification suport

 configure.in | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)

commit 682da6a4e5ab111186e5383b32443056875c0791
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 21:08:57 +0200

    configure: Allow the user to disable building with D-Bus

 configure.in       | 23 ++++++++++-------------
 src/Application.cs |  2 ++
 2 files changed, 12 insertions(+), 13 deletions(-)

commit a6513be1d58e53b54402c9e46a53dc88cc121b2b
Merge: 78fcc83 97459c7
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 20:39:16 +0200

    Merge branch 'blam-1.8.10' into blam-1.8

commit 97459c77dbe869742b954dece19341e929c7f26a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 20:14:43 +0200

    ChannelCollection: reliably save the state
    
    Use File.Copy() + File.Delete() to replace the collection savefile,
    telling it to overwrite an existing file if it exists.

 src/ChannelCollection.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ace269b5c3b2c4827956f5643c514e1e88222155
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 20:12:50 +0200

    Make 'planet' the default theme

 src/Defines.cs.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c43de2d768165ac087a6cb19ca93989b1fa60b20
Author: György Balló <ballogy@freestart.hu>
Date:   2012-05-05 21:39:03 +0200

        Remove gnome-sharp dependency

 blam.exe.config               |  1 +
 configure.in                  |  4 +---
 src/Application.cs            | 24 +++++-----------------
 src/ItemList.cs               |  6 +++---
 src/ItemView.cs               |  5 +++--
 src/Makefile.am               |  5 +++--
 src/gtk-sharp-beans/Global.cs | 46 +++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 62 insertions(+), 29 deletions(-)

commit 707fcc610aaea91ae79085222e6054b123e6e0bb
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 19:36:45 +0200

    ChannelList: don't crash if drop happens after last element
    
    When a drag-n-dop's dop happens after the last element of the
    TreeView, the path is null. Catch this case and don't do anything
    instead of trying to copy it and crashing.

 src/ChannelList.cs | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit fb89c5ca3239eff21f8e492a1c355b276cbf348c
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2012-05-12 19:22:49 +0200

    Remove NDesk's D-Bus library
    
    Use Freedesktop's library only.

 configure.in       | 28 ++++++++--------------------
 src/Application.cs |  9 ++-------
 src/Makefile.am    |  9 ++-------
 3 files changed, 12 insertions(+), 34 deletions(-)

commit d8eeed1d69c343701e4c17e60e58dc9ca180103d
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   2012-03-02 14:22:06 +0200

    [l10n] Updated Estonian translation

 po/et.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 5059c9f5657cde4bbf45f71d4574624bb08e36f9
Author: Mattias Põldaru <mahfiaz@gmail.com>
Date:   2012-03-02 13:51:45 +0200

    [l10n] Updated Estonian translation

 po/et.po | 303 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 157 insertions(+), 146 deletions(-)

commit b648dbf54c87d04d7cd0cb9ceedff885fdfe8d1a
Author: Daniel Nylander <po@danielnylander.se>
Date:   2012-02-28 08:32:25 +0100

    Updated Swedish translation

 po/sv.po | 477 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 298 insertions(+), 179 deletions(-)

commit 6e98ab0fc3c4eccfb8ffe37a09e1ce461d5c5a97
Author: Mateusz Kacprzak <mateusz.kacprzak@yandex.ru>
Date:   2012-02-26 01:18:01 +0100

    Updated Polish translation

 po/pl.po | 430 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 257 insertions(+), 173 deletions(-)

commit a55eefd967ad81718e7cc43ac89798af802b1430
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   2012-01-14 16:33:11 +0900

    Updated Japanese translation

 po/ja.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 616fefbd3ea2f21b17230e072074e1dce206e230
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-12-04 18:36:14 +0100

    Include sources in the dist

 Makefile.am     | 1 +
 lib/Makefile.am | 3 +--
 2 files changed, 2 insertions(+), 2 deletions(-)

commit b596bfddda7ae2c10cb0444911f125a3aa16c9ee
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-12-04 13:59:57 +0100

    Use #elif instead of #elseif

 src/Application.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6e7fd652ed1ae6500dd879780c9d2c6bbce2c672
Author: Götz Waschk <waschk@mandriva.org>
Date:   2011-12-04 13:37:15 +0100

    Fix dbus detection
    
    There were some more logical bugs in the check, e.g. a missing 'x' before the
    variable and it also must set the right variables.

 configure.in | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

commit de8a71588ce817fb0524f71de1b098b7ab6b620e
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-12-04 13:30:09 +0100

    ItemList: sort correctly
    
    Compare both the publish and the update time, otherwise some feeds
    won't sort properly.

 src/ItemList.cs | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

commit 0c5a85700d46faf533b94798aad37af6e3f95e6f
Author: Jiro Matsuzawa <jmatsuzawa@src.gnome.org>
Date:   2011-11-23 08:03:29 +0900

    Updated Japanese translation

 po/ja.po | 287 +++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 196 insertions(+), 91 deletions(-)

commit f65859254d3b13f39ff42ce284271e16cd0b4fdf
Merge: 8c777e8 78fcc83
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-11-13 12:23:26 +0100

    Merge branch 'blam-1.8'

commit 78fcc83a80d5be3df2b7c4af0d01d8964437e87a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-11-12 23:09:20 +0100

    Make "Show in browser" a link in the 'blam' theme

 themes/blam/theme.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 74c4c9a693de26dc1006b124c946561080643c38
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-11-12 22:36:16 +0100

    Use the right variables for dbus in configure.in
    
    Thanks to Götz Waschk for the patch

 configure.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 43d3159704cc5d73fb39658ea2d0e3b406f8a243
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-11-12 22:30:38 +0100

    Use #elif instead of #elseif
    
    Mono 2.6 allows #elseif, but 2.10 doesn't like it.

 src/Application.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8c777e84c019ae8882a6e30d118419fade5901ac
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-26 03:10:07 +0200

    Lock all of the channel update, not just the end
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs | 44 +++++++++++++++++++++-----------------------
 1 file changed, 21 insertions(+), 23 deletions(-)

commit c3da27a96d948c56a9d6dd22e92d104648b274db
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-26 03:00:08 +0200

    Fix adding an item to a channel
    
    Instead of using the id taken from the feed, which may be wrong,
    create an Item from it and use that known-good id from onwards. On the
    way, remove a double-adding, which was causing the database to grow
    endlessly, as we could never get rid of old entries.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs | 19 +++++--------------
 1 file changed, 5 insertions(+), 14 deletions(-)

commit 995a3a9b5db4b7f769e965187e7f6d7fd39fdc0b
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-26 02:57:40 +0200

    Cast currentItem.Content so we get the content and not the type
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemView.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4f74b87966b5b9e6c07e80d5a04c10f6a7c0bb6f
Author: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>
Date:   2011-11-11 19:30:31 +0100

    Add Esperanto translation

 configure.in |   2 +-
 po/eo.po     | 465 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 466 insertions(+), 1 deletion(-)

commit 69c4a69aa3efc0be0e1e8ec88bd59e11be4bbccf
Author: Fran Dieguez <fran@openhost.es>
Date:   2011-09-25 13:22:52 +0200

    Updated Galician translations

 po/gl.po | 98 ++++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 62 insertions(+), 36 deletions(-)

commit c7f733ede29e523d7672bdab819bad1adaa4b129
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   2011-09-19 00:07:57 +0200

    Updated Danish translation

 po/da.po | 77 ++++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 46 insertions(+), 31 deletions(-)

commit ea565d318cb1243edaa97eafcc0cffa7b1c288f3
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   2011-09-18 22:37:07 +0300

    Updated Latvian translation.

 po/lv.po | 56 ++++++++++++++++++++++++++++++++------------------------
 1 file changed, 32 insertions(+), 24 deletions(-)

commit dcd9a20ef4344b4ecd5f8d2cb0e68a7361dda083
Author: Alexandre Franke <alexandre.franke@gmail.com>
Date:   2011-09-01 15:22:34 +0200

    Update French translation

 po/fr.po | 45 +++++++++++++++++++++++++++++----------------
 1 file changed, 29 insertions(+), 16 deletions(-)

commit a5563ffae25dcd4f69f2ddf57860731b360a1a36
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-25 21:16:57 +0200

    Rename the Item lock to obj
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 7256a59dd128d2dc3753051538f475d0ec321e7f
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-25 21:03:27 +0200

    Remove workaround for the XML storage
    
    There is no more need for the "blam" namespace, as it was a workaround
    to store our fields in the item store, which was a feed.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 38 --------------------------------------
 1 file changed, 38 deletions(-)

commit e62bee4c3423bb3de34bf34a6c69fd6ba25dd639
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-24 16:32:11 +0200

    Remove lock(this) from ChannelCollection
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ChannelCollection.cs | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit ab3e84f4bf518ee6fcea766fb50ef2bda43c8ad8
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-24 16:12:34 +0200

    Do use an internal object for locking in Item
    
    Locking on the 'this' object can lead to deadlocks. Use an internal
    object for locking.
    
    Thanks to Andrés G. Aragoneses for pointing this out.

 src/Item.cs | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 4390cd1ea1c45358219cd175417407cf337f2fe9
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-24 01:17:12 +0200

    Also don't use an extra object to lock
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit c6eb13bd0c3d2004d20df90c4465074a1e2bec4c
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-24 01:14:25 +0200

    Lock on this and not some new object
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit bd609a3c9494793cc30188ee27c32e9b736d3480
Author: FLORET Régis <r.floret@laposte.net>
Date:   2011-08-23 23:43:10 +0200

    Add OPML filter for import dialog

 src/Opml.cs | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit a7f3e1e5b90e19812a0083fa25375d5aaaec5c1e
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-23 21:36:26 +0200

    Try harder not to crash when loading item content
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemView.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 9ade2d4a49cd09aaa5644bb6937f3bce1493c168
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-23 20:34:36 +0200

    Set the channel name to its URL on add
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Dialogs.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 82d318a8c5bdfe9819ec856b3122d0de662c3fb4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-23 20:29:11 +0200

    Use Interlocking for reference counting

 src/Item.cs | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

commit a76e1bcc65bbd29a3d8ce1487c9a78fcd817de8d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-23 20:11:15 +0200

    Use a cache for the items
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)

commit cc0d14c8c3add5fc36033e80b5a9ea9adeb239fc
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-23 20:09:25 +0200

    Catch exception if notifications can't be used
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/UnreadNotification.cs | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit 827281138100ebad6cb4ac5b42b6dda090cf873f
Author: Yuri Myasoedov <omerta13@yandex.ru>
Date:   2011-08-22 10:11:27 +0400

    Updated Russian translation

 po/ru.po | 46 +++++++++++++++++++++++++++++++++-------------
 1 file changed, 33 insertions(+), 13 deletions(-)

commit 7a72136aac6d57bd244ef4b1b9e3c5ff46df730a
Author: Marek Černocký <marek@manet.cz>
Date:   2011-08-19 08:20:15 +0200

    Updated Czech translation

 po/cs.po | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

commit cc5d6b87bdeac3303dba4100af253eda3cff078d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-08-17 19:41:28 +0200

    Use db4o as storage
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 configure.in             |   2 +
 src/Application.cs       |   2 +-
 src/Channel.cs           |  32 +++++------
 src/ChannelCollection.cs |   2 +-
 src/Defines.cs.in        |   2 +-
 src/ItemList.cs          |   8 +--
 src/ItemStore.cs         | 138 ++++++++++++++++++++++++-----------------------
 7 files changed, 97 insertions(+), 89 deletions(-)

commit 9d955836edb6cdfa55201df61bedc8df94de68fe
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-07-31 13:16:37 +0200

    Remove itemfile as we can't overwrite it
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 1 +
 1 file changed, 1 insertion(+)

commit 19acadcff3f0f23919a922ab3a6001e46f8d4985
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-04-08 18:24:34 +0200

    Make item saving atomic
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 73926443f5d40a31f0e5163f918f1bf05790a33b
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-07-31 13:17:40 +0200

    Use dbus-sharp if available
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 configure.in       | 33 +++++++++++++++++++++++++++++----
 src/Application.cs | 13 ++++++++-----
 src/Makefile.am    |  9 +++++++--
 3 files changed, 44 insertions(+), 11 deletions(-)

commit 927f4983ebfc63d4a2dc4e65657abea640af62a4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-07-31 14:01:53 +0200

    Bump version to 1.8.9
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit d6e2115084a0cb9fa7bf089461578de3dbfcb1fe
Author: Andre Klapper <a9016009@gmx.de>
Date:   2011-06-01 02:12:39 +0200

    Add missing file to POTFILES.in. Fixes bug #651587

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 25d3f315a3ee8ddae4256b94201404f04021e356
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 01:12:17 +0100

    Update po/POTFILES.{in,skip}

 po/POTFILES.in   | 2 ++
 po/POTFILES.skip | 1 +
 2 files changed, 3 insertions(+)

commit a6fdf2f753c47e5a539a645365c1d451079a8aa2
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-07-31 13:17:40 +0200

    Use dbus-sharp if available
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 configure.in       | 33 +++++++++++++++++++++++++++++----
 src/Application.cs | 13 ++++++++-----
 src/Makefile.am    |  9 +++++++--
 3 files changed, 44 insertions(+), 11 deletions(-)

commit 3d48dcc786c922a038549d904f6be658bb19ab59
Author: Flamarion Jorge <jorge.flamarion@gmail.com>
Date:   2011-06-28 11:29:19 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 135 ++++++++++++++----------------------------------------------
 1 file changed, 31 insertions(+), 104 deletions(-)

commit 5c291cb2fafde1893eeee0a9b00507124ba67613
Author: Marek Černocký <marek@manet.cz>
Date:   2011-06-13 12:50:35 +0200

    Updated Czech translation

 po/cs.po | 50 ++++++++++++++++++++++++++++++++------------------
 1 file changed, 32 insertions(+), 18 deletions(-)

commit c425ed617fdd6cfb8081beac0072926efcac2c32
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2011-06-11 17:36:12 +0200

    Updated Slovenian translation

 po/sl.po | 978 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 501 insertions(+), 477 deletions(-)

commit d145787309325015864398637652c5776e0545b7
Author: Mario Blättermann <mariobl@gnome.org>
Date:   2011-06-05 12:55:20 +0200

    [l10n] Updated German translation

 po/de.po | 49 ++++++++++++++++++++++++++++++++-----------------
 1 file changed, 32 insertions(+), 17 deletions(-)

commit 31e84d4f861efd6372ab95d6533538f3036fe223
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   2011-06-01 21:02:10 +0200

    Updated Spanish translation

 po/es.po | 50 ++++++++++++++++++++++++++++++++------------------
 1 file changed, 32 insertions(+), 18 deletions(-)

commit 5dd94134369b724a504579b27f201ee198fc3c78
Author: Andre Klapper <a9016009@gmx.de>
Date:   2011-06-01 02:12:39 +0200

    Add missing file to POTFILES.in. Fixes bug #651587

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 0b78d77b1e9fe2ee6e4b489334e7a7ef8a072f36
Author: Yuri Kozlov <yuray at komyakino.ru>
Date:   2011-05-12 19:03:18 +0400

    Updated Russian translation

 po/ru.po | 258 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 157 insertions(+), 101 deletions(-)

commit d9d9f66ecf72a9e164ad38dd2d88124a34cd54bf
Author: Lê Trường An <xinemdungkhoc1@gmail.com>
Date:   2011-05-05 20:32:57 +0700

    Updated Vietnamese translation

 po/vi.po | 101 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 48 insertions(+), 53 deletions(-)

commit 85730550b5a546004d34f4766b9b7d4e05420e74
Author: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Date:   2011-05-05 20:26:53 +0700

    po/vi.po: import from Damned Lies

 po/vi.po | 180 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 104 insertions(+), 76 deletions(-)

commit 36ebeb3e20970d9e0a5971f511676ff2d85b186d
Author: Rudolfs Mazurs <rudolfs.mazurs@gmail.com>
Date:   2011-04-25 20:09:27 +0300

    Updated Latvian translation.

 po/lv.po | 274 +++++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 179 insertions(+), 95 deletions(-)

commit 234faf308c53884532f189f6bc0ca7b63b51585c
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-27 21:43:36 +0200

    Item: Collapse whitespace in title
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 3 +++
 1 file changed, 3 insertions(+)

commit 1757ac3f9cc28cd807e0c5cc468e20d30ef5f0d4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-27 17:37:48 +0200

    Item: Store content in the Summary field
    
    The feed parser only writes out the summary field, so store the data
    there.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs     | 24 ++++++++----------------
 src/ItemView.cs |  3 +--
 2 files changed, 9 insertions(+), 18 deletions(-)

commit cff48f3ad2b3423323f39b3a9e3c1358cce44bf8
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-27 17:37:19 +0200

    Item: Remove needless cast
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a6fb2b53c45e8f851b08d4db51e0088127f1ea9b
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-27 14:43:40 +0200

    ItemStore: Use a lock around the hash table access
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 51 ++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 36 insertions(+), 15 deletions(-)

commit 3b91b4726fb887c3b7e3b9185b1a552b1d3bbaf5
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-27 14:37:22 +0200

    FeedUpdater: Add simple filtering
    
    If the first load doesn't succeed, pass it through a filter and try
    again.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/FeedUpdater.cs | 14 +++++++++-----
 src/Filter.cs      | 27 +++++++++++++++++++++++++++
 src/Makefile.am    |  3 ++-
 3 files changed, 38 insertions(+), 6 deletions(-)

commit 78290fef99cab64fe3bd7cefa6b621a89d11c9c4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-27 14:34:27 +0200

    Also mark groups as read on menu entry
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Application.cs | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit 612031ceb05d3ee39fd748c06e158258fe9e02bd
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-26 14:02:14 +0100

    ItemStore: protect the item hash table
    
    In preparation for better locking, don't allow users to access the has
    table directly.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs   | 22 +++++++++++++---------
 src/ItemList.cs  |  2 +-
 src/ItemStore.cs | 17 +++++++++--------
 3 files changed, 23 insertions(+), 18 deletions(-)

commit 0947e274614258ed0a666bece046abaafd8d4c02
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-26 12:26:01 +0100

    ItemStore: Fail gracefully if the DB file isn't found
    
    Return immediately if the backing file isn't found instead of creating
    and empty one and have the parser throw an exception which causes
    higher levels to use the default channels.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

commit c7ac9cf1c5a5a44e3d225c8a0cf418adc421ea96
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-26 12:06:31 +0100

    Item: Really fix value reset
    
    Add an `init' flag, set after item initialisation, to indicate when we
    can skip loading the extensions.
    
    Every time we store the item DB, the extensions are written, so it
    doesn't help to clear them just once.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 36 ++++++++++++++++++++----------------
 1 file changed, 20 insertions(+), 16 deletions(-)

commit cb8061a4e18415f1beefa402824f8c2bdb5728e1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-25 11:21:17 +0100

    Item: SetUnread always works on all channels
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Application.cs | 2 +-
 src/Channel.cs     | 2 +-
 src/Item.cs        | 2 +-
 src/ItemList.cs    | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

commit 3ac2e773f94b749d1c38b54ffd80ce33455cd8d1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-25 11:18:25 +0100

    Item: Move content:encoded to Content
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 43eae60ec68457a57a3a5b2a8d45706fd760eb4d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-24 00:08:47 +0100

    Add locks and null checks
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs  | 35 ++++++++++++++++++++++++-----------
 src/Item.cs     |  2 +-
 src/ItemList.cs |  3 +++
 3 files changed, 28 insertions(+), 12 deletions(-)

commit 17ee69aff6eb92386648bfaf0f9da834ad2e053d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-24 00:07:35 +0100

    Save content:encoded in the DB
    
    Store the contents of content:encoded in the summary field so it gets
    saved to disk.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 4a435392a15055d08488c5f282ab16611a43fa12
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-24 00:03:25 +0100

    Clear the item's extensions on first load
    
    Clear an item's extensions once it's loaded from disk. Failure to do
    so will cause these values to reset on each update.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 6 ++++++
 1 file changed, 6 insertions(+)

commit ee24951d2670e824176e84bfa68705c3d1ee5881
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-03 02:54:12 +0100

    Make channel update/refresh saner
    
    The previous code worked through some magic which broke as soon as I
    tried to keep reference counts in items properly. The Channel class is
    now in charge of the update, so FeedUpdater doesn't need to do
    anything.
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs     | 78 ++++++++++++++++++++++++++++++++++--------------------
 src/FeedUpdater.cs | 17 ++----------
 src/ItemStore.cs   |  2 +-
 3 files changed, 53 insertions(+), 44 deletions(-)

commit baab343dbf4f57e2ee269002a8c89f4cb8c2c839
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-03 02:08:57 +0100

    Add locks
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

commit 001079db722ea31d3ed72d22bb44f4b8717f4ce6
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   2011-03-19 00:30:52 +0100

    Updated Romanian translation

 configure.in |   2 +-
 po/ro.po     | 458 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 459 insertions(+), 1 deletion(-)

commit 171b66c796d168fc4d6c3d564c4a1c275f4f9bb6
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-01 16:06:23 +0100

    ChannelGroup: Also call Setup() on sub-channels
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs           | 1 +
 src/ChannelCollection.cs | 1 +
 src/ChannelGroup.cs      | 7 +++++++
 3 files changed, 9 insertions(+)

commit e20f32dcb5134e85431359e71fbf4e2c1a296dd5
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-01 15:49:05 +0100

    Item: Use FillItem() to create and update
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Item.cs | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit b205dc761f23c733a60c6058315fa06894a190fc
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-01 15:48:14 +0100

    ItemStore: Create the items file if nonexistant
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 9830d65c86f4ed88d590a7d8e7d473e78e2c2963
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-01 13:09:19 +0100

    Channel: Remove items on channel removal
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/Channel.cs      | 11 +++++++++++
 src/ChannelGroup.cs |  7 +++++++
 src/ChannelList.cs  |  1 +
 3 files changed, 19 insertions(+)

commit 8a4ab66eaba8531ae6583908fa4133b993c49cc3
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-03-01 13:06:55 +0100

    ItemStore: Allow removing by id
    
    Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>

 src/ItemStore.cs | 9 +++++++++
 1 file changed, 9 insertions(+)

commit eac9ef8d88a1a1540974e2e7dafba2d63ab4ebe4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-02-10 19:22:50 +0100

    Add codename support

 configure.in      | 3 +++
 src/Defines.cs.in | 1 +
 src/Dialogs.cs    | 2 +-
 src/Makefile.am   | 1 +
 4 files changed, 6 insertions(+), 1 deletion(-)

commit c8bfed32fdb0678d6d92b493153f68119b28220d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-02-07 23:27:12 +0100

    ItemView: Don't open iframes on the browser
    
    Only open a navigation request on the browser if the user was hovering
    on the link.
    
    I.e. don't open the facebook iframe on the browser if a post has it.

 src/ItemView.cs | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

commit ffc8119487b664da9e843577897096f0008ad7fb
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2011-02-07 22:36:36 +0100

    ItemView: Also check for date in LastUpdatedTime
    
    Some feeds (*cough* monologue *cough*) don't have a published time but
    only an "updated" time. When Setting the date string, prefer the
    updated time to the published time.
    
    Also get the "[No date available]" string from the catalog.

 src/ItemView.cs | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit 72ea2820bed7d1f0871344ae21d980a799a8385f
Author: Marek Černocký <marek@manet.cz>
Date:   2011-01-20 12:58:21 +0100

    Updated Czech translation

 po/cs.po | 69 +++++++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 44 insertions(+), 25 deletions(-)

commit b730dc90799899e97309500ff55e07daeea164f1
Author: George Stefanakis <george.stefanakis@gmail.com>
Date:   2011-01-13 21:06:43 +0200

    Updated Greek translation

 po/el.po | 81 ++++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 48 insertions(+), 33 deletions(-)

commit f6abd1b32cefd307f7c6b03e1554132e17822291
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-12-25 23:05:18 +0000

    Use the full path of the mono binary

 Makefile.am | 2 +-
 blam.in     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit b2bd7473ef082f0d9a1ea291aa739104c5a9d355
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   2010-12-20 15:33:35 +0200

    [l10n] Updated Estonian translation

 po/et.po | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit d2e75afd8101205cbea22f017b118047c6fb6785
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-15 12:17:42 +0200

    ItemView: PublishDate is a DateTimeOffset

 src/ItemView.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8f3b1ce63da9d52fbed2df28e36560d409d6f702
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-14 22:37:52 +0200

    OOPS: Channel: use item.Id as id isn't a variable

 src/Channel.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b6fbe40b8e6729b7b41dcd7713e1f83547580c5c
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-14 14:38:23 +0200

    ChannelList: Check the channel's update event on add

 src/ChannelList.cs | 2 ++
 1 file changed, 2 insertions(+)

commit 1b32e4ac544d5d139b4ba8bddf4651bda5463c1f
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-11 21:30:18 +0100

    Channel: Also use locking

 src/Channel.cs | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

commit a563a1f71e143bbf5e0612a6d8830d08828767ce
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-11 20:16:23 +0100

    Item: Add reference counting

 src/Item.cs | 1 -
 1 file changed, 1 deletion(-)

commit eb83dcc76fb9c185a8f2a46a97dcc229518cdbbe
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-11 13:32:43 +0100

    Temporary fix for context:encoded

 src/Item.cs | 1 +
 1 file changed, 1 insertion(+)

commit 6fbb073f1d8b3f3ff60f9dd8fb12f91ab8c1c579
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-11 21:30:18 +0100

    Channel: Also use locking

 src/Channel.cs | 34 ++++++++++++++++++++++------------
 1 file changed, 22 insertions(+), 12 deletions(-)

commit 779882ec23bc9f4d304c7c5aac18cb3b21182d81
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-11 20:16:23 +0100

    Item: Add reference counting

 src/Channel.cs   | 15 +++++++++++++--
 src/Item.cs      | 28 ++++++++++++++++++++++++++++
 src/ItemStore.cs | 12 ++++++++----
 3 files changed, 49 insertions(+), 6 deletions(-)

commit 9a9411af546415ce4458ac99222c14c618c020d7
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-11 13:32:43 +0100

    Temporary fix for context:encoded

 src/Item.cs | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

commit 7eafa06a7d324164a7008ca1a0b9b20cd7e83f7a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 18:56:48 +0100

    Remove references to TheApp.
    
    Use events and delegates instead.

 src/Application.cs       |  4 +---
 src/Channel.cs           | 27 ++++++++++++++++++++++++++-
 src/ChannelCollection.cs | 15 +++++++++++++--
 src/ChannelDialog.cs     |  3 +--
 src/ChannelGroup.cs      |  2 ++
 src/Item.cs              |  2 --
 6 files changed, 43 insertions(+), 10 deletions(-)

commit beacc9f569b5b172942ee884abfa47c44f2db018
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 18:53:43 +0100

    Channel: Protect another item from being null

 src/Channel.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fe2bb18db0851029cf68cf2878085c2e8ac52edf
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 17:10:36 +0100

    Channel: NrOfUnreadItems: Check if item is null

 src/Channel.cs | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

commit 4a9abd92f828f0b02bc8a6c0e50641d417caed09
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 16:26:36 +0100

    ChannelCollection: Remove two unused functions

 src/ChannelCollection.cs | 28 ----------------------------
 1 file changed, 28 deletions(-)

commit d2c67dbc26a6963c402bc4cbcefb0095c7d92183
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 16:13:06 +0100

    Channel: Use the basic ctor for support

 src/Channel.cs | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

commit 8e549215cbbc39a4b5192835426a64006b7d6d9c
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 14:57:20 +0100

    ItemStore: Save(): Close the writer so it flushes.
    
    Otherwise, it may do a short write and we won't be able to read
    the data back in.

 src/ItemStore.cs | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

commit 3d8936c26a25633d50576320cdb304a6ea7e6765
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-10-10 14:52:49 +0100

    Bump version to 1.90.0 to mark bleeding edge

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 8b98b67a808c8f0dcef71ca1637ffb2c12caa0c1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-29 20:15:17 +0100

    ItemStore: Pass the items to the constructor

 src/ItemStore.cs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit ab9a7eb19af95278b866a71b07a371d14feff25d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-27 15:43:18 +0200

    ItemStore: Save and load the items in a file

 src/ItemStore.cs | 47 +++++++++++++++++++++++++++++++++--------------
 1 file changed, 33 insertions(+), 14 deletions(-)

commit 2ae084fce4b27f8028f6cb0b4e3c7f15e916acd2
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-25 21:41:00 +0200

    Item: Use ElementExtensions to save properties.
    
    The constructor reads in these extensions and caches them as variables
    to be read and written in the normal way.
    
    WriteExtensions() must be called in order for the updated values to
    be serialised.

 src/Item.cs | 46 +++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 39 insertions(+), 7 deletions(-)

commit 84deec3f2832f36280d3e87c7f94444ef60d2756
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-25 21:19:10 +0200

    ItemView: Check to see if the author's name is null

 src/ItemView.cs | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit ad97c496cafc9bfcaff576f64bf1129a25cab6c2
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   2010-10-07 23:34:08 +0200

    Updated Basque language

 po/eu.po | 73 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 38 insertions(+), 35 deletions(-)

commit 0d4016282e3a1ed87b92d3478446496d9bc86784
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-18 22:14:15 +0100

    ItemView: Only show the author when there is at least one

 src/ItemView.cs | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit dec408a701681847cc490c14c0ad82a29bd18626
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-18 22:08:49 +0100

    ItemStore: Save when saving ChannelCollection

 src/Application.cs       | 1 +
 src/ChannelCollection.cs | 1 +
 src/ItemStore.cs         | 6 +++++-
 3 files changed, 7 insertions(+), 1 deletion(-)

commit bf175ad862a6d654aadd88e287a89ab1371fd8c8
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-18 21:51:07 +0100

    ItemStore: Co-operate with XmlSerializer

 src/ItemStore.cs | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

commit 500ce16e7bdb8d198fda623ce6168974d48cbae5
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-18 21:48:08 +0100

    Item: Use the first link as the ID if it's null

 src/Item.cs | 4 ++++
 1 file changed, 4 insertions(+)

commit 4837dc7999b71eeb0b91ecc9fec4d4b02e5a4e02
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-18 21:47:18 +0100

    Initialise collection.Groups

 src/ChannelCollection.cs | 1 +
 1 file changed, 1 insertion(+)

commit ab727412861a7ad9e31da1d520234601f57e4055
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-16 19:24:22 +0100

    Use ItemStore as central storage for entries

 src/Channel.cs      | 76 ++++++++++++++++++++++++++++-------------------------
 src/ChannelGroup.cs | 12 +++------
 src/ChannelList.cs  |  5 ++--
 src/ItemList.cs     |  9 +++----
 src/ItemStore.cs    |  7 ++++-
 5 files changed, 57 insertions(+), 52 deletions(-)

commit 837959d0d7cb3a88c4055cffe1f67cdb0a47c91e
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-16 18:47:33 +0100

    Channel: Get an ItemStore instance on ctor

 src/Channel.cs   | 28 ++++++++++++++++------------
 src/ItemStore.cs |  8 ++++----
 2 files changed, 20 insertions(+), 16 deletions(-)

commit 01081ce765dd0c75dbd9e211d2652cd228c0ea59
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 17:09:08 +0100

    ItemStore: Implement saving

 src/ItemStore.cs | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

commit 2b76d465e7b53e9c724e5f134960004f42594249
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 05:05:30 +0100

    ItemStore: Add deserialization code

 src/ItemStore.cs | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

commit 1a5388e7ffc8f2d972a29e480ef191b068c5fe16
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 05:05:13 +0100

    Channel: Remove unused UpdateItem()

 src/Channel.cs | 20 +-------------------
 1 file changed, 1 insertion(+), 19 deletions(-)

commit fd11750fb21f1925aa5a3c4af7ff3ad7836c7764
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 04:40:42 +0100

    configure.in: Remove a couple of statements

 configure.in | 5 -----
 1 file changed, 5 deletions(-)

commit 96ebf7353b7522d503cf245d0faaf36331135bd6
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 04:32:38 +0100

    Channel: Move the items to be in hash tables

 src/Channel.cs      | 33 ++++++++++++++++-----------------
 src/ChannelGroup.cs |  9 +++++----
 2 files changed, 21 insertions(+), 21 deletions(-)

commit b138154e9fa9be39dae22ad144212af260c42944
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 04:31:58 +0100

    FeedUpdater: Remove unnecessary GenerateItemId()

 src/FeedUpdater.cs | 23 ++---------------------
 1 file changed, 2 insertions(+), 21 deletions(-)

commit 1cea316e69795f35fa952c47a70c8a849318e0c4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 04:30:58 +0100

    Item: Create update delegate/event properly

 src/Item.cs | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

commit 7ce78f1100d39479e83b0915d3d538f9e40e5fcc
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 03:07:14 +0100

    Add constants for the XML files

 src/Defines.cs.in | 2 ++
 1 file changed, 2 insertions(+)

commit 1b083c7147f2e7482186af0cf5b413c25504500e
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-15 02:38:53 +0100

    Make ItemStore a singleton

 src/ItemStore.cs | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

commit 8b589c28fedf7ae29a778eb04d34ae61e74a192b
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 20:33:11 +0100

    Item: Add an ``Updated'' delgate

 src/Item.cs | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit 9262e150ea97a61f7094aeb783a0c3bcb3a83b2f
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 20:25:27 +0100

    Make Blam.Item inherit from SyndicationItem
    
    Some functionality has been lost

 src/Channel.cs           | 10 +---------
 src/ChannelCollection.cs |  4 ----
 src/Item.cs              | 51 ++++++++++++------------------------------------
 src/ItemList.cs          |  9 +++++----
 src/ItemView.cs          | 14 +++++++------
 5 files changed, 26 insertions(+), 62 deletions(-)

commit 2baabdd320ea7eb8ff2a0e5e956d58f0a9cdb880
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 17:22:06 +0100

    Remove unused functions Get{Local,Remote}Channel()

 src/FeedUpdater.cs | 99 ------------------------------------------------------
 1 file changed, 99 deletions(-)

commit a2766de9556b16765058265b1fe7a53b24d3af46
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 17:06:44 +0100

    Initial code for the ItemStore class

 src/ItemStore.cs | 21 +++++++++++++++++++++
 src/Makefile.am  |  3 ++-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit 8e7d6dacb57215bc1c69be5e3bffe59abd486005
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 01:31:19 +0100

    Ignore any feed with an exception

 src/FeedUpdater.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 22b43e19c4412623c2bfbb55653a3c66150b457b
Merge: acad151 dfe4c0d
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 01:15:02 +0100

    Merge wcf branch

commit acad15157ab4b2921cb451b97d81725ff791f49a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-14 01:12:17 +0100

    Update po/POTFILES.{in,skip}

 po/POTFILES.in   | 2 ++
 po/POTFILES.skip | 1 +
 2 files changed, 3 insertions(+)

commit 61a3f0c2ba50d21cbada46636f990b793af17eaa
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-12 22:15:11 +0100

    Bump version to 1.8.8

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 96af178c22719a6456161412667db5e134dbc3e4
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-10 15:48:11 +0100

    Atom: Use the same logic in Update() as in the constructor to get content

 src/Item.cs | 32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

commit f4297caf30250d4a4a5c9773d1225575081a08d3
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-09 22:09:58 +0100

    Revert "Only notify is there number of unread feeds is different"
    
    This reverts commit 9d0bc6693641ff6c9a15881a0a09b08508f13c53.
    
    In order for this to work correctly, more changes are needed, so
    wait for them to come.

 src/UnreadNotification.cs | 7 -------
 1 file changed, 7 deletions(-)

commit 3a28da0a61fe8a82d12140fe60dc6ec5c77942a2
Author: Daniel Nylander <po@danielnylander.se>
Date:   2010-09-12 20:14:57 +0200

    Updated Swedish translation

 po/sv.po | 77 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 43 insertions(+), 34 deletions(-)

commit 902c53e90c2a607c38d81b099c2355671bffe307
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   2010-09-11 15:49:54 +0200

    Updated Danish translation

 po/da.po | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

commit 3e649a79871ba9b51627d5b2bb2e784e4e3d4ec0
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   2010-09-10 10:45:25 +0300

    [l10n] Updated Estonian translation

 po/et.po | 27 +++++++++++++++++++--------
 1 file changed, 19 insertions(+), 8 deletions(-)

commit 3c87400abc3e856398b1eaf93f84c8b31dcf4666
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-09 20:13:40 +0100

    UpdateThread(): Make sure we don't try to update groups

 src/ChannelCollection.cs | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

commit 9d0bc6693641ff6c9a15881a0a09b08508f13c53
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-09 16:30:24 +0100

    Only notify is there number of unread feeds is different

 src/UnreadNotification.cs | 7 +++++++
 1 file changed, 7 insertions(+)

commit dfe4c0db9ff05cbd9a221b89289e9c08977fe6fe
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-07 00:39:04 +0100

    Delete RSSFeed and AtomFeed libraries

 Makefile.am     |   2 +-
 configure.in    |   1 -
 lib/.cvsignore  |   2 -
 lib/AtomFeed.cs | 142 -----------------------------
 lib/Makefile.am |  29 ------
 lib/RSSFeed.cs  | 272 --------------------------------------------------------
 6 files changed, 1 insertion(+), 447 deletions(-)

commit dba62aa0b6010f128e79b82e7f063e866f044233
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-06 22:38:51 +0100

    Delete references to the old libraries from the code

 src/Channel.cs     |  2 --
 src/FeedUpdater.cs |  2 --
 src/Item.cs        | 58 ------------------------------------------------------
 3 files changed, 62 deletions(-)

commit f9b65aadfa68e1b8b25c886894389a5efde551ef
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-09-05 14:13:57 +0100

    Change the license from GPLv2 to GPLV2 or later.
    
    This is what the original author intended, anyway.

 COPYING         | 4 ++++
 lib/AtomFeed.cs | 5 ++++-
 lib/RSSFeed.cs  | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

commit b1196b4cc281df8fa1ed2632e110a3762fcd8b3c
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   2010-08-19 22:22:39 +0200

    Updated French translation

 po/fr.po | 79 ++++++++++++++++++++++++++++------------------------------------
 1 file changed, 34 insertions(+), 45 deletions(-)

commit 684255910c3e5e73f1095be1f887180a6d8af400
Author: Jonh Wendell <jwendell@gnome.org>
Date:   2010-08-19 13:49:03 -0300

    Updated Brazilian Portuguese Translation

 po/pt_BR.po | 56 +++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 35 insertions(+), 21 deletions(-)

commit b19cc6a46cf8918f8a971769dc5f81ae8124b3a7
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-08-09 13:35:03 +0100

    Don't depend on {Atom,RSS}Feed.dll

 src/Makefile.am | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit 9af4bcf38dd7b9d20f16ca93411c356e26e00352
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-07-23 14:56:01 +0200

    Remove some verbosity in FeedUpdater

 src/FeedUpdater.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 6b0b393a7f1b209e46e1c0671fdef63ae6980303
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 20:36:24 +0200

    Use new FootNotes URL

 collection.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 35352a01915cbdf4938fc805fb3d3ac901e027f1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 20:35:21 +0200

    Don't try to read Summary.Text if Summary is null

 src/Item.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f71ffffdbb95603cb4a46dda41b5254bc82afe94
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 20:31:16 +0200

    Make use of <content:encoded> if available

 src/Item.cs | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit b20d36ef101fe6f24370e6621a5fb223cf28a7a1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 18:24:53 +0200

    Atom support was added in 2.6

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6f7f32a3da3a0950e430c84d22f7065239b9cd3a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-03 11:50:32 +0200

    Add author and published date to Item

 src/Item.cs | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

commit 8e178455bf762db603d42e1667f450f0544b16d1
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-02 20:02:08 +0200

    Initial rough implementation of WCF
    
    Atom 1.0 feeds don't work, and not all informatino is taken
    from the RSS 2.0 ones

 src/Channel.cs     |  47 ++++------
 src/FeedUpdater.cs | 245 +++++++++--------------------------------------------
 src/Item.cs        | 105 +++++++----------------
 src/Makefile.am    |   1 +
 4 files changed, 88 insertions(+), 310 deletions(-)

commit e7e78cc82ced8c5308c3e51a990c9b163427ac81
Author: Aron Xu <aronxu@gnome.org>
Date:   2010-07-30 19:01:41 +0800

    Complete Simplified Chinese translation.

 po/zh_CN.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit de4f3f1a65603ff2dd0f2cf144818338e1b1db0d
Author: Aron Xu <aronxu@gnome.org>
Date:   2010-07-30 19:00:29 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 48 ++++++++++++++++++++++++++++++++----------------
 1 file changed, 32 insertions(+), 16 deletions(-)

commit 18f472e1bbce43eb5c92916e43cf84a21bcb90c5
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   2010-07-28 09:11:09 +0200

    Updated Spanish translation

 po/es.po | 30 ++++++++++++++++++++----------
 1 file changed, 20 insertions(+), 10 deletions(-)

commit 7c2ce3823fdb891be897daf511efbacb530d6493
Author: Mario Blättermann <mariobl@gnome.org>
Date:   2010-07-26 00:46:38 +0200

    [i18n] Updated German translation

 po/de.po | 28 ++++++++++++++++++----------
 1 file changed, 18 insertions(+), 10 deletions(-)

commit 5c323686a4f4aa49cec05fb985a3a3e96cfc556c
Author: Simon Wenner <simon@wenner.ch>
Date:   2010-07-25 20:07:20 +0200

    Remove jiggle from the ItemList and ChanelList when an unread item is selected

 src/ChannelList.cs | 2 +-
 src/ItemList.cs    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 4c1b0903b91378eb20f4b29febea642ce60a7450
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-07-25 19:56:38 +0200

    OOPS: copy and paste fail

 src/UnreadNotification.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit b881aa193ca6b1c9ce555ae5090d8496972f2aa0
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2010-07-24 07:39:30 +0200

    Updated Slovenian translation

 po/sl.po | 34 +++++++++++++++++++++++-----------
 1 file changed, 23 insertions(+), 11 deletions(-)

commit 6d451bbf50624f1d3c6c19e93c521b74f3591c03
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-07-23 15:16:33 +0200

    Add comments to a couple of translatable strings (Bug #624388)

 src/Application.cs        | 10 ++++++++--
 src/UnreadNotification.cs |  8 ++++++--
 2 files changed, 14 insertions(+), 4 deletions(-)

commit 6e5e5e44bdac935e8570b9d1a7f7b988f5b732d5
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   2010-07-15 11:59:01 +0200

    Updated Danish translation

 po/da.po | 48 ++++++++++++++++++++++++++++--------------------
 1 file changed, 28 insertions(+), 20 deletions(-)

commit dde1cdb8465af619b9afcb2e4b58d388cc8bf386
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   2010-06-25 10:00:25 +0300

    [l10n] Updated Estonian translation

 po/et.po | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

commit 2e7c4124b1ff9d6e686a9c3c15b09a8947a74b6e
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   2010-06-20 02:54:38 +0200

    Update Galician translations

 po/gl.po | 51 ++++++++++++++++++++++++++++-----------------------
 1 file changed, 28 insertions(+), 23 deletions(-)

commit d5fa022e0d3eaaa6a02a2ffe9375d7bd9f5f5aed
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   2010-06-17 08:53:00 +0200

    Updated Spanish translation

 po/es.po | 82 ++++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 44 insertions(+), 38 deletions(-)

commit c278d9be0a51b3b66bd7e05cfc56a48ba181e9e1
Author: Mario Blättermann <mariobl@gnome.org>
Date:   2010-06-12 20:58:36 +0200

    Updated German translation

 po/de.po | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit 7530f0ff66711cb2d3dfb7bfb97bff843ff07174
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2010-06-07 19:14:56 +0200

    Updated Slovenian translation

 po/sl.po | 48 +++++++++++++++++++++++++++---------------------
 1 file changed, 27 insertions(+), 21 deletions(-)

commit 9b21eec55224826277d7af94ed71b3eb95e87301
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 19:00:29 +0200

    ChannelCollection.RefreshAll(int) is no longer used. Delete

 src/ChannelCollection.cs | 28 ----------------------------
 1 file changed, 28 deletions(-)

commit 0cba95320fe0b26f60a7f37f5b49480bdeaf1cd9
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 18:54:35 +0200

    Show number of new posts in the tray-icon tooltip and the notification

 src/Application.cs        |  7 ++++---
 src/Channel.cs            | 14 ++++++++++++++
 src/ChannelCollection.cs  | 20 ++++++++++++++++++--
 src/ChannelGroup.cs       | 15 +++++++++++++++
 src/UnreadNotification.cs |  6 +++---
 5 files changed, 54 insertions(+), 8 deletions(-)

commit 10abd08e47e70624378d0a82c209d6b1aa76e452
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-06 00:49:20 +0200

    Show notification on update
    
    Whenever the update queue becomes empty, there are unread posts
    and the window isn't the active one, show a notification with the
    number of unread posts.

 src/ChannelCollection.cs  |  7 +++++++
 src/Makefile.am           |  1 +
 src/UnreadNotification.cs | 30 ++++++++++++++++++++++++++++++
 3 files changed, 38 insertions(+)

commit 03715626b52305608353e366d1c62346d1663320
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-05 15:25:02 +0200

    Add configuration for notification support

 configure.in    | 8 ++++++++
 src/Makefile.am | 5 +++++
 2 files changed, 13 insertions(+)

commit 603521e661fb9be984413f299639225788cdf68a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-04 17:24:52 +0200

    Make the "ui/show_item_list" magic string a preference
    
    You still can't configure it through the dialog

 src/Application.cs       | 8 ++++----
 src/PreferencesDialog.cs | 1 +
 2 files changed, 5 insertions(+), 4 deletions(-)

commit 0e9669fc1bca2cd8902e01c324c06739be11fab2
Author: Mario Blättermann <mariobl@gnome.org>
Date:   2010-06-05 22:26:06 +0200

    Updated German translation

 po/de.po | 55 ++++++++++++++++++++++++++++++-------------------------
 1 file changed, 30 insertions(+), 25 deletions(-)

commit 8d754cd471057e91d21f73492044082fee3e584b
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-04 16:30:36 +0200

    Show the time of next update
    
    Every time we update, move the next refresh time back and show the
    time when we next expect to update in the status bar

 src/Application.cs | 21 ++++++++++++++++++++-
 1 file changed, 20 insertions(+), 1 deletion(-)

commit 941a1596ffb9a36eb3dec2af8a3c522d8f722af0
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-03 12:06:35 +0200

    Use stock GNOME book icon names

 src/ItemList.cs | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2804c1458ab1c4dc0f77c63df317aab325762da3
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-02 18:17:35 +0200

    Refresh all channels at the same time on timeout
    
    Up to now, we checked each channel every 10s to see if any needed
    updating. In effect, each channel had its own timeout

 src/Application.cs | 35 ++++++++++-------------------------
 1 file changed, 10 insertions(+), 25 deletions(-)

commit 9fe170ea969c9c6a04a14d95770971e066aa3fd0
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2010-06-01 12:05:28 +0200

    Let the system figure out the locale
    
    Remove a bunch of ugly, manual and probably wrong code

 src/ItemView.cs | 25 +------------------------
 1 file changed, 1 insertion(+), 24 deletions(-)

commit 14e7405e2154df5e24d6065c1bd3341d0c9861b9
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2010-05-21 20:53:13 +0200

    Updated Slovenian translation

 po/sl.po | 919 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 459 insertions(+), 460 deletions(-)

commit 709cb32dd7129da8a10c56941015657b25d58f2e
Author: David Espinosa <filferros@yahoo.es>
Date:   2010-03-19 21:29:39 +0100

    Updated Catalan translation

 po/ca.po | 308 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 192 insertions(+), 116 deletions(-)

commit 54c78a733cb73f13e1effbaac8d0e889addb1cc0
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   2010-03-05 13:31:47 +0100

    Updated Galician translation

 po/gl.po | 21 +++++++++++----------
 1 file changed, 11 insertions(+), 10 deletions(-)

commit 4220439869ccaa63c94e402de3492c5012dce49b
Author: YunQiang Su <wzssyqa@gmail.com>
Date:   2010-02-18 11:09:58 +0800

    Update Simplified Chinese translation.

 po/zh_CN.po | 495 ++++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 419 insertions(+), 76 deletions(-)

commit c109e283c9832aed2935dd74e9729674279fc8a6
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   2009-12-01 00:36:50 +0100

    Updated Danish translation

 po/da.po | 262 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 127 insertions(+), 135 deletions(-)

commit 4a5c831d181661640c3421685997da1349c36946
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2009-11-11 15:43:11 +0100

    Adapt to some new WebKit changes

 src/ItemView.cs          | 13 +++++++++++--
 themes/blam/theme.html   |  2 +-
 themes/pimped/theme.html |  3 +--
 themes/planet/theme.html |  2 +-
 4 files changed, 14 insertions(+), 6 deletions(-)

commit 7ab87b0a6c1cb287527a86d8446988734fb484a7
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   2009-10-08 14:09:53 +0200

    Updated Slovenian translation

 po/sl.po | 199 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 110 insertions(+), 89 deletions(-)

commit 81cdee0c0bf4d1a876f104b191c102f321f8871a
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2009-08-22 15:58:41 +0200

    Bump version to 1.8.7

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a85656c4e33fda35e6db131bcae51eb03f1877b1
Author: Fran Diéguez <fran.dieguez@glug.es>
Date:   2009-08-19 19:48:56 +0200

    Added Galician Translation

 configure.in |   2 +-
 po/gl.po     | 439 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 440 insertions(+), 1 deletion(-)

commit 7bc1bf8c755ef074f38998fc112bc7a5daafd34a
Author: Carlos <carlos@manzanica.lab.cmartin.tk>
Date:   2009-07-03 10:16:14 +0200

    Set the category to desktop

 blam.doap | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1f043aa828453c76302ffed7196c19e0713ae52b
Author: Carlos <carlos@manzanica.lab.cmartin.tk>
Date:   2009-07-03 10:13:11 +0200

    Add the the project description (blam.doap)

 blam.doap | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 6d381b6f9b04bb3db0843c33f446ec93562f661c
Author: Priit Laes <plaes@plaes.org>
Date:   2009-07-02 05:40:43 +0300

    Added et (Estonian) to LINGUAS.

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit f14a2964b2779f49b9f024540b47d822d019ca6b
Author: Mattias Põldaru <mahfiaz gmail com>
Date:   2009-07-02 05:40:03 +0300

    Updating Estonian translation

 po/et.po | 334 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 334 insertions(+)

commit 60c29aa8c078a7d31ae0556297e7f0e3b912af7a
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2009-05-14 22:25:33 +0200

    Hungarian translation updated

 po/hu.po | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

commit 911fdd2e334b1ca0d9ee65e697956c3bf038de11
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2009-05-14 20:47:55 +0200

    Hungarian translation updated

 po/hu.po | 177 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 101 insertions(+), 76 deletions(-)

commit 05c328181a9ec178226a46e6441b81be78f3c7d0
Author: Carlos Martín Nieto <carlos@cmartin.tk>
Date:   2009-04-18 16:56:28 +0200

    Install the debug symbols. The file is only small.

 src/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 0cf6eb1b27914bc221bc3c4dac5813e01ea478fa
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   2009-03-27 07:08:40 +0000

    Updated British English translation by Jen Ockwell
    
    2009-03-27  Philip Withnall  <philip@tecnocode.co.uk>
    
    	* en_GB.po: Updated British English translation by Jen Ockwell
    	<jenfraggleubuntu@gmail.com>.
    
    
    svn path=/trunk/; revision=686

 po/ChangeLog |   5 ++
 po/en_GB.po  | 182 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 110 insertions(+), 77 deletions(-)

commit adfeb99377b34c887d3b2b03eb94912e834072c4
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 17:13:35 +0000

    Never hide the tray icon.
    
    Remove the last reference to TrayIcon.Hide() from
    UpdateTotalNumberOfUnread().
    
    svn path=/trunk/; revision=685

 src/Application.cs | 5 -----
 1 file changed, 5 deletions(-)

commit 98fe272d54d2450114b5f78377d01cd2e408c762
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 16:21:58 +0000

    Also move a channel out of a group when dropping on to of a top-level
    channel.
    
    Add this last (hopefully) case to the list of checks.
    
    svn path=/trunk/; revision=684

 src/ChannelList.cs | 6 ++++++
 1 file changed, 6 insertions(+)

commit 3286cee140028d617b3c3cb56589bfe91924137d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 16:14:22 +0000

    Be more generous accepting channels into groups.
    
    If we drop a channel on or around a channel inside a group, the source
    channel will get added to the destination's group.
    
    svn path=/trunk/; revision=683

 src/ChannelList.cs | 40 +++++++++++++++++++++++++++++++---------
 1 file changed, 31 insertions(+), 9 deletions(-)

commit adde6399dd241e5344bece9e1b32e904396105d3
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 16:14:17 +0000

    Only set a channel's name to the URL when it's null.
    
    Up to now, we assumed we only added brand new channels. Now, with DnD
    and groups, "live" channels are added, and we don't want to change
    the name.
    
    svn path=/trunk/; revision=682

 src/ChannelCollection.cs | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit b9d39db24068483e653978f03a55d67089068ef9
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 16:14:13 +0000

    Move TargetType to Imendio.Blam.
    
    It used to be in Imendio.Blam.Application.
    
    svn path=/trunk/; revision=681

 src/Application.cs  | 13 ++++++-------
 src/ChannelGroup.cs |  1 -
 src/ChannelList.cs  |  2 +-
 3 files changed, 7 insertions(+), 9 deletions(-)

commit 2b05097c6fef047772ee04d081af1810fb33f7bf
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 02:09:18 +0000

    Make a few strings nicer.
    
    Use Gtk.Stock.* a bit more and make the tray-icon i18n-able.
    
    svn path=/trunk/; revision=680

 src/ChannelList.cs |  8 ++++----
 src/TrayIcon.cs    | 11 +++++------
 2 files changed, 9 insertions(+), 10 deletions(-)

commit 0d1cc7538509f54a362d28b9b73649a985c026f3
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 01:39:26 +0000

    Make channel-in-group automagically get shown in the channel list.
    
    Overload ChannelCollection's Add() to show add the channel inside the group of the
    TreeView.
    
    svn path=/trunk/; revision=679

 src/Application.cs       |  6 ++++++
 src/ChannelCollection.cs | 13 +++++++++++++
 src/ChannelGroup.cs      |  8 ++++++++
 src/ChannelList.cs       |  9 ++++++---
 src/Delegates.cs         |  1 +
 5 files changed, 34 insertions(+), 3 deletions(-)

commit f62e4c48b4ee24068feb5975a4c9c4890e1a3231
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-10 01:39:19 +0000

    Fix a couple of DnD corner cases.
    
    Make moving to into the same group and out of a group not fail horribly.
    
    svn path=/trunk/; revision=678

 src/Channel.cs      |  1 +
 src/ChannelGroup.cs |  7 +++++++
 src/ChannelList.cs  | 50 ++++++++++++++++++++++----------------------------
 3 files changed, 30 insertions(+), 28 deletions(-)

commit 1e29d850594f6c1b49f01b9352baf719df370044
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 23:52:30 +0000

    Remove context-menu group management.
    
    The DnD is much better and simpler. Remove this hack.
    
    svn path=/trunk/; revision=677

 src/ChannelList.cs | 98 ------------------------------------------------------
 1 file changed, 98 deletions(-)

commit 9ae4ed0df26de809afaf7889586df105b32b2ad1
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 23:52:26 +0000

    Don't crash when dropping over a channel.
    
    A drop on top of a channel wil sometimes produce a destination which is null. Check
    for that and don't do anything.
    
    svn path=/trunk/; revision=676

 src/ChannelList.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ced7a4ea956e005e814f83a6cd11d1955a81825e
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 23:46:59 +0000

    Actually delete the channel from the source group when moving a channel between
    two groups.
    
    I forgot to delete it from the group's channels, so the channel would still show
    the old contents.
    
    svn path=/trunk/; revision=675

 src/ChannelList.cs | 11 +++++++++++
 1 file changed, 11 insertions(+)

commit 5d67ed91e3e489b55bbd93ef31032d721b52f8b0
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 23:46:54 +0000

    Implement taking a channel out of a group.
    
    If we detect that the drop was between two rows, we take it out.
    
    svn path=/trunk/; revision=674

 src/ChannelList.cs | 46 ++++++++++++++++++++++++++++++----------------
 1 file changed, 30 insertions(+), 16 deletions(-)

commit ee1bb3b75105a1be536324a67a6b53648e74fb4a
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 23:03:22 +0000

    Don't allow a group to be inside another group.
    
    Until we add the whole proper logic for it, it's just not possible.
    
    svn path=/trunk/; revision=673

 src/ChannelCollection.cs | 2 +-
 src/ChannelList.cs       | 9 +++++++--
 2 files changed, 8 insertions(+), 3 deletions(-)

commit 38176a63681d934160e9a0b942eccaff41aa593e
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 21:42:12 +0000

    Start implementing DnD on the channel list.
    
    Moving into and between groups works. Moving out of a group doesn't yet.
    
    svn path=/trunk/; revision=672

 src/Application.cs       |  5 +++--
 src/ChannelCollection.cs |  2 +-
 src/ChannelGroup.cs      |  4 ++--
 src/ChannelList.cs       | 38 ++++++++++++++++++++++++++++++++++++++
 4 files changed, 44 insertions(+), 5 deletions(-)

commit 79542d7ec9b5fd36fbfdd336c326ebca2960fc5a
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-03-08 14:44:24 +0000

    Add a context menu to the tray icon.
    
    Patch based on the one sent by regis <r.floret@laposte.net>.
    
    svn path=/trunk/; revision=671

 src/Application.cs |  5 +++++
 src/TrayIcon.cs    | 38 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

commit dc9bac126cd455a264d9c7acfc5d346d9999a6a0
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-01-06 09:54:22 +0000

    Hide window upon tray-click.
    
    svn path=/trunk/; revision=670

 ChangeLog          | 5 +++++
 src/Application.cs | 7 ++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 16f636e464830c9ce9b4ef8f89cce2625adba95b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-01-06 09:54:18 +0000

    Also mark items read in other channels inside groups.
    
    I forgot to add this when I implemented groups.
    
    svn path=/trunk/; revision=669

 ChangeLog                | 5 +++++
 src/ChannelCollection.cs | 7 +++++++
 2 files changed, 12 insertions(+)

commit f3975742376517661026f22b79b8a54023eb6a9d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2009-01-06 09:54:13 +0000

    Really move the channel from a group to the root.
    
    I forgot to actually change the data instead of just where
    the app shows.
    
    svn path=/trunk/; revision=668

 src/ChannelList.cs | 2 ++
 1 file changed, 2 insertions(+)

commit 841759951335dce593f5cee701f119f59706f236
Author: Simos Xenitellis <simos@src.gnome.org>
Date:   2009-01-05 12:42:43 +0000

    Updated Greek translation by Evgenia Petoumenou.
    
    svn path=/trunk/; revision=667

 po/ChangeLog |   4 +
 po/el.po     | 413 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 214 insertions(+), 203 deletions(-)

commit 163071c17d0387147b885c4c14a41a0e1e362abb
Author: Mario Blättermann <mariobl@src.gnome.org>
Date:   2008-11-29 10:21:46 +0000

    Updated German translation
    
    svn path=/trunk/; revision=666

 po/ChangeLog |   4 +
 po/de.po     | 314 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 199 insertions(+), 119 deletions(-)

commit 1d94f689488e106aa3ffde57951c481627eea58a
Author: Petr Kovar <pknbe@volny.cz>
Date:   2008-10-12 14:22:29 +0000

    Updated Czech translation by Lucas Lommer.
    
    2008-10-12  Petr Kovar  <pknbe@volny.cz>
    
    	* cs.po: Updated Czech translation by Lucas Lommer.
    
    svn path=/trunk/; revision=665

 po/ChangeLog |   4 ++
 po/cs.po     | 223 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 122 insertions(+), 105 deletions(-)

commit 8166d44e84f012e0f4e135d4a541651a7de2713c
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-10-10 12:38:25 +0000

    Implement removing from a group.
    
    There is a lot of duplicate code and we return null at times.
    
    svn path=/trunk/; revision=664

 src/ChannelList.cs | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 54 insertions(+), 2 deletions(-)

commit 31e2368da40ea81dc7428161a2073e8a10d97485
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-10-10 12:04:48 +0000

    Save the channel's iterator when moving to a group.
    
    svn path=/trunk/; revision=663

 src/ChannelList.cs | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

commit 851cece42ca8f877f5ebfb91005e7f5103ccd40c
Author: Jonh Wendell <jwendell@gnome.org>
Date:   2008-10-09 14:35:43 +0000

    Updated Brazilian Portuguese translation by Michel Recondo.
    
    2008-10-09  Jonh Wendell  <jwendell@gnome.org>
    
    	* pt_BR.po: Updated Brazilian Portuguese translation by Michel Recondo.
    
    svn path=/trunk/; revision=662

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 177 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 102 insertions(+), 79 deletions(-)

commit c9f557c469e7eeafedf9301639b5902383e6d3d2
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2008-10-07 16:03:42 +0000

    Updated Norwegian bokmål translation.
    
    2008-10-07  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.
    
    2008-10-04  Ilkka Tuohela <hile@iki.fi>
    
    svn path=/trunk/; revision=661

 po/ChangeLog |   4 ++
 po/nb.po     | 158 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 89 insertions(+), 73 deletions(-)

commit 8bbd905f24e0cef37c8db6977519b7d2d6e11b32
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2008-10-04 19:42:45 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=660

 po/ChangeLog |  4 ++++
 po/fi.po     | 24 +++++++++++-------------
 2 files changed, 15 insertions(+), 13 deletions(-)

commit a9793254e8abcd30c3fe10d5f47618368c487d96
Author: Robert-André Mauchin <bobmauchin@src.gnome.org>
Date:   2008-09-27 13:44:48 +0000

    Updated French translation by Yannick Tailliez
    
    svn path=/trunk/; revision=659

 po/ChangeLog |   4 ++
 po/fr.po     | 196 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 120 insertions(+), 80 deletions(-)

commit b4e80092cb90519a4d40b251f26c5f2a8e46e9c9
Author: Robert-André Mauchin <bobmauchin@src.gnome.org>
Date:   2008-09-27 13:37:07 +0000

    Removable translatable state for gtk-ok and gtk-cancel
    
    svn path=/trunk/; revision=658

 ChangeLog      | 5 +++++
 src/blam.glade | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 288e7bd2fc320ec48f1d64bca4b364b35e206166
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2008-09-24 17:06:02 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=657

 po/ChangeLog |   4 ++
 po/sv.po     | 178 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 104 insertions(+), 78 deletions(-)

commit 058a05490a53fb2884896700e8f34ce58cb8e64b
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   2008-09-20 11:27:47 +0000

    Updated Basque translation.
    
    2008-09-20 Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=656

 po/ChangeLog | 6 +++++-
 po/eu.po     | 8 ++++----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit 11b40bafe938f1aad18a8eb77bf2995cc08a23b7
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-09-18 20:18:37 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=655

 po/ChangeLog | 4 ++++
 po/es.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit cb3329a4d504af85a90b2d4d3bae12535d8c633b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-18 17:07:15 +0000

    Remove groups and channels inside groups.
    
    Check where the channel/group we are looking for exists and delete it
    from there instead of blindly removing it from top-level.
    
    svn path=/trunk/; revision=654

 ChangeLog                |  5 +++++
 src/ChannelCollection.cs | 15 ++++++++++++++-
 2 files changed, 19 insertions(+), 1 deletion(-)

commit ace5dbcf1fc450a7e8b249ee05692afcc1daf034
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-18 17:06:35 +0000

    Change string to say remove channel or group.
    
    svn path=/trunk/; revision=653

 src/Dialogs.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c23ee79ffc3cef01ab70d9130bf4bc3ac0da9262
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2008-09-18 12:39:14 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=652

 po/ChangeLog |   4 ++
 po/fi.po     | 164 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 99 insertions(+), 69 deletions(-)

commit 73bae4057dba8c307398384c5734fff0a3f5d31a
Author: Inaki Larrañaga Murgoitio <dooteo@euskalgnu.org>
Date:   2008-09-18 11:58:51 +0000

    Updated Basque translation.
    
    2008-09-18 Inaki Larrañaga Murgoitio  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=651

 po/ChangeLog |   4 ++
 po/eu.po     | 158 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 93 insertions(+), 69 deletions(-)

commit c9d71ce60abf4681d4e29276c28e19427685a3aa
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-09-17 07:52:18 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=650

 po/ChangeLog |   4 ++
 po/es.po     | 142 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 87 insertions(+), 59 deletions(-)

commit c88a4c4e0b5a94b7cb4731d85b16b3c81790644b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-16 20:56:12 +0000

    OOPS: It should read "Add Group" and not just "Add".
    
    svn path=/trunk/; revision=649

 src/blam.glade | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit 8405445c4c0d616586e75f53b513c4b037119b3e
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-16 20:56:05 +0000

    Make adding channels to groups a bit more correct.
    
    Store each iter in the object itself so that we don't need to look for
    it when adding or removing.
    
    svn path=/trunk/; revision=648

 ChangeLog           |  6 ++++++
 src/Channel.cs      | 16 +++++++++++++++-
 src/ChannelGroup.cs | 10 ++++++++++
 src/ChannelList.cs  | 21 ++++++++++++++-------
 src/Dialogs.cs      |  3 ++-
 5 files changed, 47 insertions(+), 9 deletions(-)

commit 8d26b2c51f79cb7c7e8cc9e3e55867796515cc12
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-16 20:55:57 +0000

    Make sure it's safe to access ChannelGroup.Channels.
    
    svn path=/trunk/; revision=647

 src/ChannelCollection.cs |  2 ++
 src/ChannelGroup.cs      | 14 ++++++++++++++
 2 files changed, 16 insertions(+)

commit 42f2e0c51bf01cafcdc756c7a0aa36d7869cf0e5
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-16 20:55:50 +0000

    Hide the Add Group dialog.
    
    svn path=/trunk/; revision=646

 src/Dialogs.cs | 2 ++
 1 file changed, 2 insertions(+)

commit 439ee20161273d535b11ca2ee4b13a4ef099a36d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-16 20:55:42 +0000

    Implement adding a channel through a dialog.
    
    svn path=/trunk/; revision=645

 ChangeLog          |  2 ++
 src/Application.cs |  7 +++++++
 src/ChannelList.cs |  2 --
 src/Dialogs.cs     | 41 ++++++++++++++++++++++++++++++++++++++++-
 src/blam.glade     | 11 +++++++++++
 5 files changed, 60 insertions(+), 3 deletions(-)

commit 4c358a33ed93cf123a8a7880a378c623b5c84c13
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-16 20:55:34 +0000

    Add addGroupDialog.
    
    svn path=/trunk/; revision=644

 src/blam.glade | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 85 insertions(+)

commit 020fb0ab7d421aba0ca5a1d6a2308d1d1b7722bf
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-09-16 06:29:40 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=643

 po/ChangeLog |  4 ++++
 po/es.po     | 56 +++++++++++++++++++++++++++++---------------------------
 2 files changed, 33 insertions(+), 27 deletions(-)

commit 62870ef1d80ee95448ab0e6eb575f4539b2c5e19
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-15 15:28:22 +0000

    Use Glib.Object.Data instead of UserData to store the group name.
    
    This brings us again into completely managed code.
    
    svn path=/trunk/; revision=642

 ChangeLog          |  5 +++++
 src/ChannelList.cs | 12 ++----------
 2 files changed, 7 insertions(+), 10 deletions(-)

commit 1723b2e0f37cee51c163fd7254fcfa1673fe637f
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-14 21:19:07 +0000

    Remove the allocation from thelist once freed.
    
    svn path=/trunk/; revision=641

 src/ChannelList.cs | 1 +
 1 file changed, 1 insertion(+)

commit 4e03a3b9bdac2d87967522fc9d2f229c4cc8b959
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-14 21:16:59 +0000

    Implement adding a channel to a group.
    
    This code is ugly and uses unmanaged memory, but I saw no
    other way to pass the information.
    
    svn path=/trunk/; revision=640

 ChangeLog          |  1 +
 src/ChannelList.cs | 54 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 54 insertions(+), 1 deletion(-)

commit c3506358fa72c1a5bfc13466f1bb4c8475ca3eae
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-14 21:16:21 +0000

    Expose channelList through ChannelList
    
    svn path=/trunk/; revision=639

 ChangeLog          | 2 +-
 src/Application.cs | 6 ++++++
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 2ad1f62badff71afa6a6446661c2a3f62ab1ae66
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-14 21:15:33 +0000

    ChannelGroup doesn't have an edit dialog yet.
    
    svn path=/trunk/; revision=638

 ChangeLog          |  2 ++
 src/Application.cs | 10 +++++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 0612a213e9e4851d3fe4569927d16aa3a7795712
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-14 17:35:14 +0000

    Auto-update channels within groups.
    
    svn path=/trunk/; revision=637

 ChangeLog                |  5 +++++
 src/ChannelCollection.cs | 19 ++++++++++++++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

commit b7c14984ffaa91be6bfaba7c82945e243463d437
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-08 17:27:05 +0000

    A ListStore scaped before.
    
    svn path=/trunk/; revision=636

 src/ChannelList.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1750ebde1bc7499af83351a69d88265395add167
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-08 17:11:47 +0000

    Remove some commented-out code.
    
    svn path=/trunk/; revision=635

 src/FeedUpdater.cs | 58 ------------------------------------------------------
 1 file changed, 58 deletions(-)

commit 076d3430f61ea20f0a20f6e925d21b71b43e4af9
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-08 15:27:22 +0000

    Check for read in another feed before adding an item.
    
    svn path=/trunk/; revision=634

 src/Channel.cs           |  1 +
 src/ChannelCollection.cs | 11 +++++++++++
 2 files changed, 12 insertions(+)

commit 0e07d3877186fdf65a8584130d02cb1d4e42b85d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-08 15:26:50 +0000

    Make GetItem part of IChannel.
    
    svn path=/trunk/; revision=633

 src/Channel.cs      |  1 +
 src/ChannelGroup.cs | 12 ++++++++++++
 2 files changed, 13 insertions(+)

commit 16ba1ff702bb428c22c90f728e29d3122fc61a56
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-08 13:22:38 +0000

    Another Channel->IChannel missed.
    
    svn path=/trunk/; revision=632

 src/ChannelList.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e7c7cb3c33b951597dd86fb2adf39b3a79e08db2
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-07 14:40:57 +0000

    Change another function to IChannel.
    
    svn path=/trunk/; revision=631

 src/ChannelList.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 850614ff31490e181e05dd78590196c0e48971e6
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-07 14:40:19 +0000

    Remove some code left over from Gecko.
    
    WebKit does all of this for us now.
    
    svn path=/trunk/; revision=630

 src/Application.cs | 37 -------------------------------------
 1 file changed, 37 deletions(-)

commit f1d0f29874b52db90299f77155c245bc8804f836
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-07 10:59:00 +0000

    Remove a couple of debug statements.
    
    svn path=/trunk/; revision=629

 src/ChannelList.cs | 2 --
 1 file changed, 2 deletions(-)

commit 1435ce369ba1953824cb887cb1dfcb577e1a2673
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-07 10:43:14 +0000

    Implement the IChannel interface for ChannelList.
    
    This interface allows us to work much more easily with
    channel groups by creating a backend-unaway interface to
    channels and groups.
    
    The transformation is probably not complete yet.
    
    svn path=/trunk/; revision=628

 src/Application.cs       | 30 ++++++++++-----------
 src/Channel.cs           | 34 +++++++++++++++++++++---
 src/ChannelCollection.cs | 12 ++++-----
 src/ChannelGroup.cs      | 46 ++++++++++++++++++++++++++++++--
 src/ChannelList.cs       | 68 ++++++++++++++++++++++++++++++------------------
 src/Delegates.cs         |  2 +-
 src/Dialogs.cs           |  2 +-
 src/ItemList.cs          |  4 +--
 src/Opml.cs              |  2 +-
 9 files changed, 144 insertions(+), 56 deletions(-)

commit d8b29ae95836978de25c4cfe002b8ccf8faeaaf9
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-07 10:42:38 +0000

    Initial implementation of channel groups.
    
    A standard interface has to be set up in order to show
    this properly in the GUI.
    
    svn path=/trunk/; revision=627

 src/ChannelCollection.cs |  6 ++++++
 src/ChannelGroup.cs      | 41 +++++++++++++++++++++++++++++++++++++++++
 src/Makefile.am          |  1 +
 3 files changed, 48 insertions(+)

commit ded375cb7683d34e17dab60ac9153684e3c9509f
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-06 10:34:14 +0000

    Only update the icon name when needed.
    
    svn path=/trunk/; revision=626

 src/ItemList.cs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 255692c69ba062b99c863a73409735637e7cf05f
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-06 10:32:48 +0000

    Make channel list save atomic.
    
    Use the Replace method instead of Remove + Move in order to make
    saving collection.xml an atomic operation.
    This fixes the race condition in GNOME bug #346553.
    
    svn path=/trunk/; revision=625

 src/ChannelCollection.cs | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 746f650b64b1f2bf9acd3e9a81a237335c7e3aff
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-05 11:57:20 +0000

    Use a sensible icon for item status.
    
    Use stock books. Green for unread old, red for unread new and
    and open book for read.
    
    svn path=/trunk/; revision=624

 src/ItemList.cs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 2f7a5179ad3829e36597131de3f73f2bc12e624e
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-04 13:20:09 +0000

    Add the "old" status for items.
    
    Once we leave a channel, we mark all items in it as old. Old and unread
    entries get a special distinction.
    
    svn path=/trunk/; revision=623

 src/ChannelList.cs | 10 ++++++++++
 src/Item.cs        |  1 +
 src/ItemList.cs    | 11 +++++++++--
 3 files changed, 20 insertions(+), 2 deletions(-)

commit 75d980c05ac1750a025ac93e1f0e5e822ad965d4
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-09-03 20:31:21 +0000

    Use an icon to indicate the status of entries.
    
    Right now the only difference is between read/unread and the icons are just
    some stock items used to test. Good read/unread/new icons will have to be
    found.
    
    svn path=/trunk/; revision=622

 src/ItemList.cs | 28 +++++++++++++++++++++++++++-
 1 file changed, 27 insertions(+), 1 deletion(-)

commit 7f986365c246a69be23368e7e4bc0a8830a6f829
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   2008-08-27 14:43:01 +0000

    Updated Basque translation.
    
    2008-08-27  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=621

 po/ChangeLog |   4 ++
 po/eu.po     | 130 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 65 insertions(+), 69 deletions(-)

commit b3d7a45c62d565335ca30eb78cbd44d93a11ff7c
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2008-08-27 12:03:12 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=620

 po/ChangeLog |   4 +++
 po/fi.po     | 112 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 69 insertions(+), 47 deletions(-)

commit 75d92eec565f8ee9eb1de2d00e081e4d7b0f6624
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   2008-07-31 10:23:35 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=619

 po/ChangeLog |   8 +++
 po/ar.po     | 216 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 127 insertions(+), 97 deletions(-)

commit b445f297e15461172fc040459f27990c5725c616
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-07-08 11:49:32 +0000

    Bump version to 1.8.6 for release.
    
    svn path=/trunk/; revision=618

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7e6aea3ee3e9f9e77f587eea144ee938e24174a8
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-07-04 11:43:58 +0000

    Add font settings support, not enabled for now
    
    svn path=/trunk/; revision=617

 src/ItemView.cs | 41 +++++++++++++++++++++++++++++++++++++++--
 1 file changed, 39 insertions(+), 2 deletions(-)

commit 09386d1aa21d1712bd5b15feecc9eb8ef2ed5a25
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2008-07-02 18:47:27 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=616

 po/ChangeLog |  4 +++
 po/oc.po     | 97 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 60 insertions(+), 41 deletions(-)

commit 90964f553bfc895f8ff4b135f65fa8c53799c636
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2008-06-27 12:54:43 +0000

    Updated Norwegian bokmål translation.
    
    2008-06-27  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=615

 po/ChangeLog |   4 +++
 po/nb.po     | 100 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 60 insertions(+), 44 deletions(-)

commit ff189d679f4c0889d48ec503256570e286593321
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2008-06-24 09:45:49 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=614

 po/ChangeLog |   4 ++
 po/sv.po     | 140 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 76 insertions(+), 68 deletions(-)

commit 248253d5889b77303cd2b64db12207abb0e84287
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 05:54:44 +0000

    Remove empty directory
    
    svn path=/trunk/; revision=613

commit 6bab244632c0613c1ca55ed91fef2eef8899b0c8
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 05:49:04 +0000

    Use stderr instead of stdout for warnings
    
    svn path=/trunk/; revision=612

 lib/AtomFeed.cs          |  2 +-
 lib/RSSFeed.cs           |  4 ++--
 src/ChannelCollection.cs |  4 ++--
 src/FeedUpdater.cs       | 24 ++++++++++++------------
 src/Item.cs              |  4 ++--
 src/ItemView.cs          |  2 +-
 src/Opml.cs              |  2 +-
 src/Proxy.cs             |  4 ++--
 8 files changed, 23 insertions(+), 23 deletions(-)

commit 342241dfbac332d038dcfd92cbddc8fc25fffa50
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 05:49:02 +0000

    Avoid bash dependency by porting to POSIX sh
    
    svn path=/trunk/; revision=611

 blam.in | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

commit 362fb99b9b665c3bca2999ed147d7b27c391c128
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 05:48:59 +0000

    Hook up clipboard copy menu item
    
    svn path=/trunk/; revision=610

 src/Application.cs | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 4e85179ac87e3732aa8f585e5145c4802212417e
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 05:48:57 +0000

    Add printing support, remove obsolete GnomePrint usage
    
    svn path=/trunk/; revision=609

 src/Application.cs |  18 +++++-----
 src/Makefile.am    |   1 -
 src/Printing.cs    | 100 -----------------------------------------------------
 src/blam.glade     |  14 ++++++++
 4 files changed, 24 insertions(+), 109 deletions(-)

commit 0ea8818f5cb3c15414b7e01db921bcf14d0225b6
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 04:38:46 +0000

    Implement link hover
    
    svn path=/trunk/; revision=608

 src/ItemView.cs | 53 ++++-------------------------------------------------
 1 file changed, 4 insertions(+), 49 deletions(-)

commit 3bbe5d84356134d46995432b1169b6ca23b2c0af
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 04:38:42 +0000

    Move ShowWindow() out of the org.gnome.feed.Reader D-Bus interface
    
    It's specific to Blam and not part of the standardised API.
    
    svn path=/trunk/; revision=607

 src/Application.cs | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

commit 4467532d06bced5c4bcd3a65b8e743100efe9a36
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 03:01:12 +0000

    Remove needless DBusMgr wrapper and fix a potential race condition
    
    svn path=/trunk/; revision=606

 src/Application.cs | 33 +++++++++++++++++++++--------
 src/DBus.cs        | 61 ------------------------------------------------------
 src/Makefile.am    |  2 --
 3 files changed, 24 insertions(+), 72 deletions(-)

commit 689c1f9dacb4d261c076423bd9632e5f4d3e1626
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 03:01:08 +0000

    Remove libbacon leftovers
    
    svn path=/trunk/; revision=605

 src/Application.cs       |  8 ------
 src/Makefile.am          |  1 -
 src/MessageConnection.cs | 74 ------------------------------------------------
 3 files changed, 83 deletions(-)

commit 9415f7cd7b68008e2d3c18135782ef83c3a4a817
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 02:12:54 +0000

    Make main Application class implement IFeedReader directly
    
    DBusMgr essentially does very little now and can be rolled into
    Application.cs (with appropriate #if ENABLE_DBUS wrapping).
    
    svn path=/trunk/; revision=604

 src/Application.cs | 22 +++++++++++++++++++++-
 src/DBus.cs        | 31 ++-----------------------------
 2 files changed, 23 insertions(+), 30 deletions(-)

commit 8f6d3fff885b90e97a77dca24dbe3c95ce0d3372
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-17 02:12:51 +0000

    Replace MarshalByRefObject use with an interface.
    
    MarshalByRefObject for D-Bus is deprecated and adds needless indirection
    here.
    
    svn path=/trunk/; revision=603

 src/Application.cs |  7 +++----
 src/DBus.cs        | 29 ++++++++++-------------------
 2 files changed, 13 insertions(+), 23 deletions(-)

commit 1948297c64a8ecc0ade961b530a36d40b5b1665c
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-06-16 15:46:05 +0000

    Change from libbacon to D-Bus.
    
    Instead of using libbacon to make the app single-instance, use managed
    D-Bus for that.
    
    svn path=/trunk/; revision=602

 src/Application.cs | 42 +++++++++++++++++-------------------------
 src/DBus.cs        | 36 +++++++++++++++++++++++++++---------
 2 files changed, 44 insertions(+), 34 deletions(-)

commit 5591c81c39e9c6880c5a723e39bf750a8de62aa7
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:22 +0000

    Update listed dependencies
    
    svn path=/trunk/; revision=601

 README | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit ce3f65d5581fb740369a9a873d0bea1e71ca4531
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:21 +0000

    Bump webkit-sharp required version to 0.2
    
    svn path=/trunk/; revision=600

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e5e83662b76b5fb02e59b1eb2d79c7b30b2acbe0
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:20 +0000

    Update headers where relevant
    
    svn path=/trunk/; revision=599

 src/Application.cs | 1 +
 src/ItemView.cs    | 1 +
 2 files changed, 2 insertions(+)

commit c1e5d69db5720331ea8b445f66401bd150655e34
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:18 +0000

    Don't bail out on failed prctl
    
    This function may not be available on platforms like Win32
    
    svn path=/trunk/; revision=598

 src/Application.cs | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit b335a0cfa98171b8685a03e40203096c922ff789
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:16 +0000

    Remove dead DllImports
    
    svn path=/trunk/; revision=597

 src/Utils.cs | 25 -------------------------
 1 file changed, 25 deletions(-)

commit 5819345895965178ccaf75189f886bae17ca7fb4
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:14 +0000

    Eliminate libblam
    
    svn path=/trunk/; revision=596

 Makefile.am                        |   2 +-
 configure.in                       |  15 ---
 libblam/.cvsignore                 |   5 -
 libblam/Makefile.am                |  14 ---
 libblam/bacon-message-connection.c | 246 -------------------------------------
 libblam/bacon-message-connection.h |  36 ------
 6 files changed, 1 insertion(+), 317 deletions(-)

commit a6e5d34d6a9f5dcbb8bef58634db39bf5e4438d2
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:13 +0000

    Avoid using libbacon
    
    We'll probably replace this with NDesk.DBus
    
    svn path=/trunk/; revision=595

 src/Application.cs | 6 ++++++
 1 file changed, 6 insertions(+)

commit abca2b47fa0b95378a5afe3053c8cf3c4039902d
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:11 +0000

    Init script requires bash ATM
    
    svn path=/trunk/; revision=594

 blam.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 026bb46fc09f3ef467bb76aaa5df98c30a3fafe5
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:08 +0000

    Eliminate some Mozilla cruft
    
    svn path=/trunk/; revision=593

 Makefile.am       |  2 +-
 blam.in           |  5 ++---
 src/Defines.cs.in |  1 -
 src/Makefile.am   |  1 -
 src/Utils.cs      | 12 ------------
 5 files changed, 3 insertions(+), 18 deletions(-)

commit 91aa662691e3c09bf3eac736ebb5e11960e44827
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:06 +0000

    Rename mMoz
    
    svn path=/trunk/; revision=592

 src/ItemView.cs | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

commit a01d5a4fee4f6563c0313e2d6a11ce8fe2ec3d06
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:04 +0000

    Stub link hover
    
    svn path=/trunk/; revision=591

 src/ItemView.cs | 5 +++++
 1 file changed, 5 insertions(+)

commit 0d6d7db3986f0e920dfbeb43ebc5c5e2d905fceb
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:56:01 +0000

    Open links with an external browser
    
    svn path=/trunk/; revision=590

 src/ItemView.cs | 26 +++++++++++---------------
 1 file changed, 11 insertions(+), 15 deletions(-)

commit 2bc6c1adefa30efd9c8cb4fe4619e267aa62becf
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:55:57 +0000

    Make it work with WebKit
    
    svn path=/trunk/; revision=589

 src/Application.cs | 12 ++++++++----
 src/ItemView.cs    | 30 ++++++++++++++++++------------
 src/Printing.cs    |  9 ++++++---
 src/Utils.cs       |  2 ++
 4 files changed, 34 insertions(+), 19 deletions(-)

commit c7417902a3cae8b2cd57e7eadbcb8c7c1c96f116
Author: Alp Toker <atoker@src.gnome.org>
Date:   2008-06-15 19:55:52 +0000

    Remove gecko-utils
    
    svn path=/trunk/; revision=588

 configure.in                 | 160 +------------------------------
 libblam/Makefile.am          |  13 ---
 libblam/blam-gecko-utils.cpp | 217 -------------------------------------------
 libblam/blam-gecko-utils.h   |  44 ---------
 4 files changed, 3 insertions(+), 431 deletions(-)

commit 480bce5043dc00e5377e9cca56a586c1f66ad983
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   2008-06-09 12:43:40 +0000

    Remove executable bit
    
    svn path=/trunk/; revision=587

 po/ne.po | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

commit f3d59ddb3fe46699780080bc39e90a6bd93a8fd0
Author: Jonh Wendell <jwendell@gnome.org>
Date:   2008-06-06 20:55:30 +0000

    Updated Brazilian Portuguese translation by Michel Recondo and Fábio
    
    2008-06-06  Jonh Wendell <jwendell@gnome.org>
    
    	* pt_BR.po: Updated Brazilian Portuguese translation by Michel Recondo
    	and Fábio Nogueira.
    
    svn path=/trunk/; revision=586

 po/ChangeLog |   5 ++
 po/pt_BR.po  | 218 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 125 insertions(+), 98 deletions(-)

commit 32098e95a13b59822bdf9954d3d0945ce8dd7bec
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   2008-06-06 06:12:02 +0000

    Updated Vietnamese translation
    
    svn path=/trunk/; revision=585

 po/ChangeLog |   4 ++
 po/vi.po     | 228 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 117 insertions(+), 115 deletions(-)

commit dcc80b17fe7b82f33aad0b1241f48dd5d411dffd
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-06-04 21:45:11 +0000

    Get link and author fields from rss20 if they exist and use them.
    
    svn path=/trunk/; revision=584

 lib/RSSFeed.cs | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 4b6d8c14fe94c0ceda6a1534b3b576a368777bd4
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-06-04 15:12:24 +0000

    Change UTC to +0000 in the date to parse.
    
    DateTime.Parse() doesn't like the time offset UTC. Change it in
    the string we pass to it in order to make it work.
    
    svn path=/trunk/; revision=583

 lib/RSSFeed.cs | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 4700970f0f8c3ac643f6b3ea4f2ab05dcaa000bd
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-06-04 14:15:38 +0000

    Don't crash if there is no content or summary found in an entry.
    
    svn path=/trunk/; revision=582

 src/Item.cs | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

commit fa13fe34e904a3a8bb5d9a63c2a8b0657351e061
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-05-10 19:39:41 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=581

 po/ChangeLog |  4 ++++
 po/es.po     | 28 ++++++++++++++++------------
 2 files changed, 20 insertions(+), 12 deletions(-)

commit 543ca08d51317c907698e9fab1abf73b8384e995
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-05-09 19:03:16 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=579

 po/ChangeLog |  4 ++++
 po/es.po     | 36 ++++++++++++++++++++----------------
 2 files changed, 24 insertions(+), 16 deletions(-)

commit a1eaa291d9973cbb63f9874e5cd5982c9a0281e1
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-05-09 14:00:16 +0000

    Show popup to "copy link location" and "open in browser" when atop a link only
    
    svn path=/trunk/; revision=578

 src/Application.cs | 12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

commit 0a8fc480cf5bbb9ccbf2f6b39429a0f1b25bcfc1
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-05-09 14:00:07 +0000

    Add the OpenLink() method for the ctx menu.
    
    svn path=/trunk/; revision=577

 src/Application.cs | 5 +++++
 1 file changed, 5 insertions(+)

commit ff6ddbbe6ae08494fa80dcd5763b7620a605c3b1
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-05-05 17:16:11 +0000

    Initial attempt at doing a popup menu at gecko.
    
    svn path=/trunk/; revision=576

 libblam/blam-gecko-utils.cpp | 13 +++++++++++++
 src/Application.cs           | 27 +++++++++++++++++++++++++++
 src/Utils.cs                 |  7 +++++++
 3 files changed, 47 insertions(+)

commit 8c73c24f8b1f210a067b37b82908edabb6001387
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-05-05 17:15:36 +0000

    Don't run running() on Unregister() because it segfaults.
    commit message for your changes.
    
    svn path=/trunk/; revision=575

 src/DBus.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 70bd0699d59b13cab6a3f1f882f7d4ea612f2cfd
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-05-05 17:15:10 +0000

    Make autogen.sh default to autotools 1.10.
    
    svn path=/trunk/; revision=574

 autogen.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 753e4e96695a1ec0f2ec1261d2e1edf197e7473c
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-05-05 17:14:40 +0000

    It turns out gecko-tools needs GTK+ dev.
    
    svn path=/trunk/; revision=573

 configure.in | 1 +
 1 file changed, 1 insertion(+)

commit c27ae629b0a502d43c9c57ee9a8771e4926da52c
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-05-04 19:46:33 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=572

 po/ChangeLog |  4 +++
 po/es.po     | 88 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 50 insertions(+), 42 deletions(-)

commit d7f4a8b387a349f5caf0c36f56ff24bae72bd898
Author: Gabor Kelemen <kelemeng@gnome.org>
Date:   2008-04-27 14:10:53 +0000

    Translation updated.
    
    2008-04-27  Gabor Kelemen  <kelemeng@gnome.org>
    
    	* hu.po: Translation updated.
    
    svn path=/trunk/; revision=571

 po/ChangeLog |   4 ++
 po/hu.po     | 202 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 112 insertions(+), 94 deletions(-)

commit fc79fe5c137bdb464e43b4ecfaac27f9a6fa8589
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-26 09:27:30 +0000

    Sort the channel list in managed code.
    
    This removes the last dependency on libblam/blam-utils.c and
    GTK+ devel files.
    
    svn path=/trunk/; revision=570

 ChangeLog            |  5 +++++
 configure.in         |  1 -
 libblam/Makefile.am  |  2 --
 libblam/blam-utils.c | 40 ----------------------------------------
 libblam/blam-utils.h | 42 ------------------------------------------
 src/ChannelList.cs   | 27 +++++++++++++++------------
 src/Utils.cs         | 10 ----------
 7 files changed, 20 insertions(+), 107 deletions(-)

commit 9384678cd0086a3bbb7b05820888654225fc25e3
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-26 09:27:17 +0000

    Set ItemView's sort function in managed code.
    
    This removes another function in libblam.so
    
    svn path=/trunk/; revision=569

 ChangeLog            |  5 +++++
 libblam/blam-utils.c |  9 ---------
 src/ItemList.cs      | 33 +++++++++------------------------
 src/Utils.cs         |  7 -------
 4 files changed, 14 insertions(+), 40 deletions(-)

commit 101656a646886a1e48f69423b72c327f0ceacce9
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-26 09:26:58 +0000

    Remove a few unneeded dependencies from configure.in.
    
    The dependencies are: mono, gconf and libgnomeui development
    packages.
    
    svn path=/trunk/; revision=568

 configure.in | 6 ------
 1 file changed, 6 deletions(-)

commit 3ff3c6534ef337c9a267d4367d569284a6cff3eb
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-25 17:57:30 +0000

    Add option to mark all posts as read. (#400327)
    
    svn path=/trunk/; revision=567

 ChangeLog          | 2 ++
 src/Application.cs | 7 +++++++
 src/blam.glade     | 8 ++++++++
 3 files changed, 17 insertions(+)

commit 78cdc57c213cbd6607e59424e581ece738f5b1bb
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-25 17:15:04 +0000

    Reflect wether options are active.
    
    Fill the Active property for the ingore SSL errors and
    refresh at startup options. (OOPS!)
    
    svn path=/trunk/; revision=566

 src/PreferencesDialog.cs | 4 ++++
 1 file changed, 4 insertions(+)

commit ccf1ed728988279532a96d9b02c0461089e0adb0
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-25 17:07:51 +0000

    Add option to refresh feeds on startup (#344853).
    
    Add the GtkCheckButton to the preferences dialog and act
    on it at startup.
    
    svn path=/trunk/; revision=565

 ChangeLog                |  5 +++++
 src/Application.cs       |  4 ++++
 src/PreferencesDialog.cs |  7 +++++++
 src/blam.glade           | 37 ++++++++++++++++++++++++++++++++++---
 4 files changed, 50 insertions(+), 3 deletions(-)

commit 76bd6416b3db607af9c2406f5d66c900a6ea48ae
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-25 17:07:43 +0000

    Make the date string shown on the ItemView localized.
    
    svn path=/trunk/; revision=564

 src/ItemView.cs | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

commit 444de4ebe9d838ad7b9392cf8ed8dd020169fe5d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-25 17:07:34 +0000

    Make ItemView inherit from Gtk.EventBox.
    
    This makes it possible to catch mouse clicks and therefore to
    show context menus.
    
    svn path=/trunk/; revision=563

 src/Application.cs | 2 +-
 src/ItemView.cs    | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

commit 7ebae05b4de312557877a17b1ef925804b8d962d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-24 14:46:46 +0000

    Make some items use GTK+ definitions.
    
    This includes the list-channel popup menu and the menubar.
    
    svn path=/trunk/; revision=562

 src/ChannelList.cs |  4 +++-
 src/blam.glade     | 35 +++++++++--------------------------
 2 files changed, 12 insertions(+), 27 deletions(-)

commit c044809fe30b8f01202c47bec5a10d585e7a850a
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-23 20:24:25 +0000

    Ellipsize the feed name if necessary.
    
    svn path=/trunk/; revision=561

 src/ChannelList.cs | 2 ++
 1 file changed, 2 insertions(+)

commit dfaac212580e9a5c40644fb1962312259fdf816f
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-23 20:24:16 +0000

    Use a default locale if the feed doesn't have one.
    
    svn path=/trunk/; revision=560

 lib/RSSFeed.cs | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

commit ae291e1fc0cd61778fbbe19ed77ba1294353b5d6
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-23 09:29:25 +0000

    Remove the broken Imendio and Mike feeds.
    
    svn path=/trunk/; revision=559

 collection.xml | 2 --
 1 file changed, 2 deletions(-)

commit 112a32928b337b3bb0bf24bc52a80ec860d7ba53
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-23 09:29:17 +0000

    Make read/unread align to the right.
    
    svn path=/trunk/; revision=558

 src/ChannelList.cs | 1 +
 1 file changed, 1 insertion(+)

commit 1a75feff56b0ef5a0f4158793973f6ae79f8c0a7
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-23 09:29:08 +0000

    RSSFeed: Parse pubDate according to the language of the channel.
    
    svn path=/trunk/; revision=557

 lib/RSSFeed.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 9affe48c31c5ae8e9307bc5860a020c019ac27a0
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2008-04-20 16:00:01 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=556

 po/ChangeLog |  4 ++++
 po/es.po     | 66 +++++++++++++++++++++---------------------------------------
 2 files changed, 27 insertions(+), 43 deletions(-)

commit 83005a38c7a516999497fb6300d7a2ec52e99fac
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-20 11:24:12 +0000

    Remove "Imendio" from user-visible places and update the copyright notice.
    
    svn path=/trunk/; revision=555

 INSTALL            | 4 ++--
 README             | 4 ++--
 autogen.sh         | 4 ++--
 src/Application.cs | 2 +-
 src/Dialogs.cs     | 2 +-
 5 files changed, 8 insertions(+), 8 deletions(-)

commit 3edaf869efe47f90b00fde0604f465537cd1cf0d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-20 11:24:03 +0000

    Actually connect the GNOME client to the session.
    
    svn path=/trunk/; revision=554

 src/Application.cs | 1 +
 1 file changed, 1 insertion(+)

commit b41a2b4fcea61ced4e91d9f7f8d03e6a50ae0908
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-20 08:54:18 +0000

    Fix the URI-in-clipboard logic.
    
    svn path=/trunk/; revision=553

 src/Dialogs.cs | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

commit 6b564f440b09bf821c206790d8ab6f448f9ceedb
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-20 08:53:46 +0000

    Remove last traces of the old icons.
    
    svn path=/trunk/; revision=552

 icons/Makefile.am | 2 +-
 src/Makefile.am   | 5 +----
 2 files changed, 2 insertions(+), 5 deletions(-)

commit 036eaee52a8bd7e289dbbe568b71bd3b761f7fea
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-20 08:24:26 +0000

    Remove old-style unused icons.
    
    svn path=/trunk/; revision=551

 icons/Makefile.am        |   5 -
 icons/blam-about.png     | Bin 36548 -> 0 bytes
 icons/blam-about.svg     | 333 -----------------------------------------------
 icons/blam-tray-icon.png | Bin 836 -> 0 bytes
 icons/blam.png           | Bin 4338 -> 0 bytes
 icons/blam.svg           | 121 -----------------
 6 files changed, 459 deletions(-)

commit dee77a319dec675c47b88195599b5bced5de1eef
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-19 21:39:30 +0000

    Move some of the Gecko init to manged code.
    
    svn path=/trunk/; revision=550

 libblam/blam-gecko-utils.cpp | 14 --------------
 src/Defines.cs.in            |  1 +
 src/Makefile.am              |  1 +
 src/Utils.cs                 |  3 +++
 4 files changed, 5 insertions(+), 14 deletions(-)

commit 52ee04b98857fbb4ebebc42068aa0a83bff2a3a4
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-19 21:39:21 +0000

    Setup the next-session-start with the GNOME session.
    
    svn path=/trunk/; revision=549

 src/Application.cs | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

commit b6eed73bcddef35026e37345a0c54beb8571e50d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-19 21:39:10 +0000

    Add a handler for Client.Die.
    
    svn path=/trunk/; revision=548

 lib/RSSFeed.cs     | 4 ++--
 src/Application.cs | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)

commit df4e0ab3068ec159795d6ce1f086a00d3a906915
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-19 08:47:19 +0000

    Simplify the D-Bus code a bit and unregister early.
    
    Make the code a bit shorter and readable and unregister as soon as we've
    been asked to exit.
    
    svn path=/trunk/; revision=547

 src/Application.cs | 16 ++++++++++++++--
 src/DBus.cs        | 37 ++++++++++++++++---------------------
 2 files changed, 30 insertions(+), 23 deletions(-)

commit b0d8d51948b3d35e5fffa8db206dab51c2e17d94
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-19 08:47:08 +0000

    Don't segfault at feed adding when the clipboard is empty.
    
    If the clipboard is empty, the string is set to null and we didn't
    check for that.
    
    svn path=/trunk/; revision=546

 src/Dialogs.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit c55ddd9a3e5de1623f360033bdee98c9082de4bd
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-16 14:04:06 +0000

    Use a TreeCellDataFunc to automatically set the channel name and weight.
    
    This is what is already done to set the unread/total number of items and
    simplifies code, deleting duplicated logic.
    
    svn path=/trunk/; revision=545

 ChangeLog          |  5 +++++
 src/ChannelList.cs | 39 ++++++++++++++++-----------------------
 2 files changed, 21 insertions(+), 23 deletions(-)

commit 0d7f717e566227fbf75b0911c4081d6e123754dc
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-14 14:18:13 +0000

    Remove manual ellipsizing and let pango do it for us.
    
    This removes another call into unmanaged code and simplifies Blam.
    
    svn path=/trunk/; revision=544

 ChangeLog            |  2 ++
 libblam/blam-utils.c | 60 ----------------------------------------------------
 src/ItemList.cs      | 13 +++---------
 src/Utils.cs         |  6 ------
 4 files changed, 5 insertions(+), 76 deletions(-)

commit ec4a81b1ac0d5cd8419fd108d3b98800f2904121
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-14 13:53:20 +0000

    Resize the channel name when a name becomes smaller.
    
    svn path=/trunk/; revision=543

 ChangeLog          | 4 ++++
 src/ChannelList.cs | 1 +
 2 files changed, 5 insertions(+)

commit 5039f11d5963e5eb2c5e0bef0f64a085e27ac1e1
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 19:05:53 +0000

    Make the install target depend on RSSFeed
    
    svn path=/trunk/; revision=542

 lib/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e8a5242191eb38c3de450e2605effa209a494a78
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 15:56:33 +0000

    Always show the tray icon when the window is hidden.
    
    svn path=/trunk/; revision=541

 src/Application.cs | 1 +
 1 file changed, 1 insertion(+)

commit 142ecdd19fa4d03987b0e897b347d5d9a0753927
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 15:41:26 +0000

    Some entries don't have a date.
    
    svn path=/trunk/; revision=540

 lib/RSSFeed.cs | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit eda5905fe569824d78fd7a15e9f8c296ebfcacb7
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 14:12:31 +0000

    Credit Johan Wallenberg with for previous commit.
    
    svn path=/trunk/; revision=539

 ChangeLog | 2 ++
 1 file changed, 2 insertions(+)

commit 30bbc13dba2b20e73aea145049ec08a50a8648f3
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 14:10:20 +0000

    Toggle viewing the item list with the i key.
    
    svn path=/trunk/; revision=538

 src/Application.cs | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

commit ed4a92ff900bfd01af2f94c049525d2d10aa4bd9
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 13:28:31 +0000

    Register with the GNOME session.
    
    svn path=/trunk/; revision=537

 src/Application.cs       | 8 ++++++++
 src/ChannelCollection.cs | 1 -
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 95b43ac4d9fa75fe147f2ede2203dbfde10abf6b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 13:24:36 +0000

    Remove reference to RSS.NET.dll
    
    svn path=/trunk/; revision=536

 src/Makefile.am | 1 -
 1 file changed, 1 deletion(-)

commit 3cb381f9bd08be7c9d1758f597c4efdc51c0df1d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 13:23:02 +0000

    Remove further references to Atom.NET and RSS.NET
    
    svn path=/trunk/; revision=535

 ChangeLog |  1 +
 README    | 17 +++--------------
 2 files changed, 4 insertions(+), 14 deletions(-)

commit 706e3164011c6a8aa20f0fe3d117d72d91c2d889
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 07:59:29 +0000

    Remove all traces of RSS.NET
    
    svn path=/trunk/; revision=534

 lib/Makefile.am |   2 --
 lib/RSS.NET.dll | Bin 45568 -> 0 bytes
 2 files changed, 2 deletions(-)

commit a2b758fade99eb35caf2bb157674ab9afbf55d0d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-06 07:57:08 +0000

    Adapt for use with RSSFeed
    
    RSSFeed has been adapted to fit better with Blam.
    Blam has been adapted to use RSSFeed.
    
    svn path=/trunk/; revision=533

 ChangeLog          |   7 ++++
 lib/RSSFeed.cs     |  67 ++++++++++++++++++-----------------
 src/Channel.cs     |   4 +--
 src/FeedUpdater.cs | 100 +++++++++++++++++++++++++++++++++++------------------
 src/Item.cs        |  48 +++++++++++++------------
 src/Makefile.am    |   3 +-
 6 files changed, 139 insertions(+), 90 deletions(-)

commit ed9740d45775a443850b9b64121ee59baeec5957
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-05 14:47:51 +0000

    make lib/Makefile target all depend on RSSFeed
    
    svn path=/trunk/; revision=532

 lib/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7dde3a23aa0b44a0e92c8a09d14497dbe748a789
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-04-05 13:59:46 +0000

    Check-in the RSSFeed library.
    
    svn path=/trunk/; revision=531

 ChangeLog          |   5 ++
 lib/Makefile.am    |  21 +++--
 lib/RSSFeed.cs     | 240 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/FeedUpdater.cs |   1 -
 4 files changed, 260 insertions(+), 7 deletions(-)

commit b044ce06032f3f94719cc89ae725757679220df0
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-03-21 09:34:22 +0000

    Bump version to 1.8.5 to release
    
    svn path=/trunk/; revision=529

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 75a50ff1222e90df510c6cdfbf0a4f501371cf6b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-03-21 09:31:27 +0000

    Revert last revision, they're already set as not translatable
    
    svn path=/trunk/; revision=528

 src/blam.glade | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit ed895e2a5c51c3be39b023b35b5777a82119b27c
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-03-20 14:51:10 +0000

    Set translatable="no" to GTK stock messages.
    
    svn path=/trunk/; revision=527

 src/blam.glade | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit decfdc229442e605610caaad90c667ac6b7f32d0
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-03-20 09:21:37 +0000

    Fix a couple of lines, one with strange chars in it and the other with an extra tab.
    
    svn path=/trunk/; revision=526

 src/PreferencesDialog.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 8425cdeffb5c1983936de04a5a49a2ca435543ff
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2008-03-16 09:28:26 +0000

    Add gnome-sharp to pkg-config checks which is needed now.
    
    svn path=/trunk/; revision=525

 configure.in | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

commit 1cb593af3fb0a938a0d608b2c1ac8e07c117bd9d
Author: Philip Withnall <pwithnall@svn.gnome.org>
Date:   2008-03-09 17:36:20 +0000

    Updated British English translation.
    
    2008-03-09  Philip Withnall  <pwithnall@svn.gnome.org>
    
    	* en_GB.po: Updated British English translation.
    
    
    svn path=/trunk/; revision=524

 po/ChangeLog |   4 ++
 po/en_GB.po  | 181 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 96 insertions(+), 89 deletions(-)

commit d7f9d5d1da4c59751e0ba36c840da67acfab2ec5
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2008-02-23 15:05:04 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=523

 po/oc.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit fff5d54c5bc749965ab446c15084b08c031451ee
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2008-02-19 23:03:13 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=522

 po/oc.po | 57 ++++++++++++++++++++++++++-------------------------------
 1 file changed, 26 insertions(+), 31 deletions(-)

commit 75bdc4f9e97f171d51142e838f92d83b2be58440
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2008-02-19 05:24:25 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=521

 po/ChangeLog |   4 ++
 po/fi.po     | 170 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 90 insertions(+), 84 deletions(-)

commit b8e6a73f6f16090e80d57d723ff5a4f1c596348c
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2008-02-18 17:50:38 +0000

    Don't translate widget labels
    
    2008-02-18  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* src/blam.glade: Don't translate widget labels
    
    svn path=/trunk/; revision=520

 ChangeLog      |  4 ++++
 src/blam.glade | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit f528649deb09495203169e0a4124a41983dd8abc
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2008-02-18 17:48:27 +0000

    Updated Norwegian bokmål translation.
    
    2008-02-18  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=519

 po/ChangeLog |   4 ++
 po/nb.po     | 155 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 73 insertions(+), 86 deletions(-)

commit 9b33f6fab0d8f35b375343784b3a5853be29f69c
Author: Pawan Chitrakar <pachimho@src.gnome.org>
Date:   2008-02-14 10:39:02 +0000

    Updated Nepali Translation
    
    svn path=/trunk/; revision=518

 po/ChangeLog |   4 ++
 po/ne.po     | 218 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 127 insertions(+), 95 deletions(-)

commit d15915ca1624a653ea89434af76929f74f730312
Author: Inaki Larranaga Murgoitio <dooteo@euskalgnu.org>
Date:   2008-02-08 16:15:30 +0000

    Updated Basque translation.
    
    2008-02-08  Inaki Larranaga Murgoitio  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=517

 po/ChangeLog |   4 ++
 po/eu.po     | 192 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 103 insertions(+), 93 deletions(-)

commit 4888d3e0e360d86a46444acbf0f3ea3b8e368b65
Author: Michael Monreal <mmonreal@svn.gnome.org>
Date:   2008-01-09 17:24:59 +0000

    ** Fix for bug 504710
    
    2008-01-09  Michael Monreal  <mmonreal@svn.gnome.org>
    
        ** Fix for bug 504710
    
        * src/Dialogs.cs: Remove some debug output.
    
    svn path=/trunk/; revision=516

 ChangeLog      | 6 ++++++
 src/Dialogs.cs | 1 -
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 9d007ffdee6409f3cdbf3dfb83ee7fc9a1edd26e
Author: Michael Monreal <mmonreal@svn.gnome.org>
Date:   2008-01-09 17:21:39 +0000

    ** Fix for bug 504709
    
    2008-01-09  Michael Monreal  <mmonreal@svn.gnome.org>
    
        ** Fix for bug 504709
    
        * src/Application.cs:
        * src/ChannelDialog.cs:
        * src/Dialogs.cs:
        * src/Opml.cs:
        * src/PreferencesDialog.cs:
        * src/TrayIcon.cs: Use the correct icon size for window- and tray
        icons. Also adds a window icon to the export dialog.
    
    svn path=/trunk/; revision=515

 ChangeLog                | 12 ++++++++++++
 src/Application.cs       |  4 ++--
 src/ChannelDialog.cs     |  2 +-
 src/Dialogs.cs           |  9 ++++-----
 src/Opml.cs              |  4 ++--
 src/PreferencesDialog.cs |  2 +-
 src/TrayIcon.cs          | 10 +---------
 7 files changed, 23 insertions(+), 20 deletions(-)

commit abae21bd7637c12314b932945b57a2e9c55c2e7f
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2007-12-31 18:55:27 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=514

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit be6298509ea49064fc6c169e1e41409f2daa9605
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2007-12-31 18:48:49 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=513

 po/oc.po | 190 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 105 insertions(+), 85 deletions(-)

commit d08188c609c64b1f465a29a4f025d3634d51e206
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2007-12-30 00:55:49 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=512

 po/ChangeLog |  4 ++++
 po/es.po     | 61 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 39 insertions(+), 26 deletions(-)

commit 7644966ede59d8ab0258c4fcbbfdd9cf5a4bc47b
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2007-12-28 19:12:53 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=511

 po/ChangeLog |  4 ++++
 po/sv.po     | 60 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 39 insertions(+), 25 deletions(-)

commit b8e0caf25a3bb503070b595ac42755abe490cd30
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-20 17:57:52 +0000

    Rename Settings to Preferences.
    
    Settings was used only in the menu. Patch by Michalel Monrea
    <michael.monreal@gmx.net>
    
    svn path=/trunk/; revision=510

 ChangeLog      | 5 +++++
 src/blam.glade | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit 56ba002040a539996d268507b408f5444480b7d2
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-20 17:48:45 +0000

    Mark entries read after a timeout.
    
    Optionally mark entries read after being read for a certain amount of
    time instead of straight away.
    
    svn path=/trunk/; revision=509

 CONTRIBUTORS             |   2 +
 ChangeLog                |   9 ++-
 src/ItemList.cs          |  27 ++++++-
 src/PreferencesDialog.cs |  23 +++++-
 src/blam.glade           | 197 +++++++++++++++++++++++++++++------------------
 5 files changed, 177 insertions(+), 81 deletions(-)

commit 13e01859f8df18f8cf7100576539f43467dc8fb2
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-18 21:55:46 +0000

    Stop update threads on quit.
    
    Which we didn't do before.
    
    svn path=/trunk/; revision=508

 src/Application.cs       |  1 +
 src/ChannelCollection.cs | 10 ++++++++++
 2 files changed, 11 insertions(+)

commit c88850fb891fa76fb0204e1323def6939d89959e
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 22:45:23 +0000

    Use full RSS.NET.dll filename.
    
    Use RSS.NET.dll instead of just RSS.NET.
    
    svn path=/trunk/; revision=507

 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 84d4ca33064cbd673b1c10ce270f8551c89cfd16
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 18:28:48 +0000

    OOPS: Fix small typo
    
    svn path=/trunk/; revision=506

 src/Application.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 678ad0654164863d8c73f475d42da926ce0dba61
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 18:14:07 +0000

    Always show tray icon when the window is hidden.
    
    There has to be a way to recall the window when we're minimised to systray and
    there are no unread news.
    
    svn path=/trunk/; revision=505

 ChangeLog          |  1 +
 src/Application.cs | 12 +++++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit 7e072719988a73923abc77ea98c6bac69ed5aa4f
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 18:13:43 +0000

    Minimize to the system tray.
    
    Minimize to systray whenever Esc or the X are pressed.
    
    svn path=/trunk/; revision=504

 ChangeLog          | 2 ++
 src/Application.cs | 5 +++--
 2 files changed, 5 insertions(+), 2 deletions(-)

commit bdbbbd0d3a0ad730b7e92de056c8d8b0f09e0dea
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 15:31:54 +0000

    OOPS: Don't use the mCanShow variable which doesn't exist anymore.
    
    Also delete some debug which snuck in.
    
    svn path=/trunk/; revision=503

 src/Dialogs.cs | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

commit 70f4bd6d56e0eb5b4de17f1b6c190a1898f4ebc2
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 15:25:29 +0000

    Save the channel list after adding or removing a channel.
    
    If we crash between adding/removing a channel and the entries being
    saved, the channel list isn't saved.
    Mark the list dirty after adding and removing a channel.
    
    svn path=/trunk/; revision=502

 ChangeLog                | 4 +++-
 src/ChannelCollection.cs | 4 ++++
 2 files changed, 7 insertions(+), 1 deletion(-)

commit d5b2d1be468bde388340178ce4636dc686774251
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 15:04:47 +0000

    Check if the clipboard contains a valid URL.
    
    Check to see if the clipboard contains a valid URL before setting the
    URL entry's default text.
    Fix a couple of warnings and actually unregister our D-Bus.
    
    svn path=/trunk/; revision=501

 ChangeLog          |  9 +++++++++
 src/Application.cs |  2 +-
 src/DBus.cs        |  9 +++++++--
 src/Dialogs.cs     | 28 +++++++++++++++++++++-------
 4 files changed, 38 insertions(+), 10 deletions(-)

commit 7862595e3684616bdbb189b4e7d025168e4f85e0
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-16 01:04:50 +0000

    Migrate to Gtk.StatusIcon.
    
    Use Gtk.StatusIcon instead of libegg. The current code has the same
    functionality as the libegg code.
    
    svn path=/trunk/; revision=500

 ChangeLog          |   7 +
 src/Application.cs |   4 +-
 src/Makefile.am    |   5 +-
 src/TrayIcon.cs    |  61 +++----
 src/egg-sharp.cs   | 477 -----------------------------------------------------
 5 files changed, 35 insertions(+), 519 deletions(-)

commit 396bb48b158ad57f2af1c8a0af0f1111106897a5
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-15 12:47:06 +0000

    Revert "Migrate to ServerCertificateValidationCallback"
    
    The new method isn't implemented yet so we can't download any
    feeds. Using old method until it's fixed.
    
    svn path=/trunk/; revision=499

 src/FeedUpdater.cs | 40 ++++++++++++++++++++++------------------
 1 file changed, 22 insertions(+), 18 deletions(-)

commit 89fd341f15c60f9b7bb5412280333ad6114ee27b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-15 12:36:16 +0000

    Fix D-Bus integration.
    
    Link to ndesk-dbus-glib-1.0 and call BusG.Init() so we get a working D-Bus.
    
    svn path=/trunk/; revision=498

 configure.in |  4 ++--
 src/DBus.cs  | 22 +++++++++++++++++-----
 2 files changed, 19 insertions(+), 7 deletions(-)

commit e4fca5d09df3df5b457ac746c6f3d3a551cddb24
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-15 12:35:58 +0000

    First implementation of new DBus interface.
    
    Although it doesn't quite work, it is ready to do so and just needs
    some minor changes.
    
    svn path=/trunk/; revision=497

 ChangeLog             |  7 ++++++
 configure.in          |  2 +-
 src/Application.cs    | 16 +++++-------
 src/DBus.cs           | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/DBusFeedReader.cs | 39 ------------------------------
 src/Makefile.am       |  4 +--
 6 files changed, 83 insertions(+), 52 deletions(-)

commit d7211e0a9142a38923f6d2b5f4162df11a555172
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-11 21:20:16 +0000

    Delete encoding entry in desktop file.
    
    UTF-8 encoding is compulsory now.
    
    svn path=/trunk/; revision=496

 blam.desktop.in.in | 1 -
 1 file changed, 1 deletion(-)

commit 8b1492954166dde7eb8757152b6e098a2940ec5f
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2007-12-11 05:22:24 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=495

 po/ChangeLog |   4 ++
 po/es.po     | 140 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 70 insertions(+), 74 deletions(-)

commit 2073f0ccec8b205dddc95722240b1070e40cba67
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2007-12-11 02:10:17 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=494

 po/ChangeLog |   4 ++
 po/sv.po     | 160 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 88 insertions(+), 76 deletions(-)

commit 6e7a6bac7d2fd054c6c8e2f951516a47a17b8174
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-08 23:14:55 +0000

    Delete an extra about window.
    
    Delte an extra about window which makes glade rewrite the while file.
    
    svn path=/trunk/; revision=493

 ChangeLog      |    4 +
 src/blam.glade | 4437 ++++++++++++++++++++------------------------------------
 2 files changed, 1597 insertions(+), 2844 deletions(-)

commit c78f7675fde183a2be9acc0c002a534756cf912d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-12-08 23:14:42 +0000

    Migrate to ServerCertificateValidationCallback
    
    Use this instead of the CertificatePolicy.
    
    svn path=/trunk/; revision=492

 src/FeedUpdater.cs | 40 ++++++++++++++++++----------------------
 1 file changed, 18 insertions(+), 22 deletions(-)

commit d98d8fbd652179ef37ce66a50e599d27e0837697
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2007-11-21 17:23:17 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=491

 po/ChangeLog |  4 ++++
 po/oc.po     | 19 +++++++++----------
 2 files changed, 13 insertions(+), 10 deletions(-)

commit 84fc8e701acd139055d5d3ec8c7279b5253549df
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2007-11-20 21:37:43 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=490

 po/oc.po | 78 +++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 40 insertions(+), 38 deletions(-)

commit eb67031c582733d82cc8620f0318c63e3017e732
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2007-11-03 15:48:49 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=489

 po/ChangeLog |   4 +++
 po/sv.po     | 114 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 62 insertions(+), 56 deletions(-)

commit 5c9b7ed4630b0a42116294f1fbb1672c27fa105b
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2007-11-03 12:46:20 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=488

 po/ChangeLog |   4 +++
 po/es.po     | 112 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 62 insertions(+), 54 deletions(-)

commit 9c84d2f29071ffd457a2fdd72654ea852229e53b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2007-11-02 13:59:38 +0000

    Add UTF-8 header Updated Norwegian bokmål translation.
    
    2007-11-02  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* POTFILES.in: Add UTF-8 header
    	* nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=487

 po/ChangeLog   | 5 +++++
 po/POTFILES.in | 2 ++
 2 files changed, 7 insertions(+)

commit ed50a7e0b5615d296a8cd773a6fb4570031f33b3
Author: Kjartan Maraas <kmaraas@src.gnome.org>
Date:   2007-11-02 13:59:33 +0000

    Fix header
    
    svn path=/trunk/; revision=486

 po/nb.po | 116 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 60 insertions(+), 56 deletions(-)

commit b7fb76216815de133900691321ea682f2dfade77
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2007-10-31 14:57:24 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=485

 po/ChangeLog |   4 +++
 po/fi.po     | 110 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 61 insertions(+), 53 deletions(-)

commit f77450618fd61a53f6350bb1babb84f7cac5e87f
Author: Matej Urbančič <mateju@src.gnome.org>
Date:   2007-10-21 07:42:52 +0000

    Updated Slovenian translation
    
    svn path=/trunk/; revision=484

 po/ChangeLog |   4 ++
 po/sl.po     | 131 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 78 insertions(+), 57 deletions(-)

commit 8589ce4268f7ae9e3f3d1b312adcb0efa093fbc8
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2007-10-14 09:50:57 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=483

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ecd583cf1545bd864c4d17194953f70d593486ba
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-10-13 15:20:08 +0000

    Reduce debug output in RSS.NET
    
    RSS.NET used to output the content of every entry it came across. Do
    not do that anymore.
    
    svn path=/trunk/; revision=482

 lib/RSS.NET.dll | Bin 45568 -> 45568 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 092ce7661c3263ddc6b0d29a7da50ecab44af6af
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-10-12 11:20:07 +0000

    Be smarter about using Streams.
    
    We used to take a Stream, copy that into a StringWriter and then make
    that a string. Now we go Stream->StreamReader->string which is faster
    as we don't read one byte at a time.
    
    svn path=/trunk/; revision=481

 src/FeedUpdater.cs | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

commit 8f6738014c81b24c81b6bee42c1c4f2893852dd3
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-23 15:28:08 +0000

    Use the new icons and about dialog
    
    Switch to the new icon theme and implement the new about dialog.
    
    svn path=/trunk/; revision=480

 ChangeLog                |   3 ++
 src/Application.cs       |   6 ++--
 src/ChannelDialog.cs     |   2 +-
 src/Dialogs.cs           |  79 +++++++++++++++++------------------------------
 src/Opml.cs              |   4 +--
 src/PreferencesDialog.cs |   2 +-
 src/blam.glade           |  32 +++++++++++++++++++
 themes/pimped/blam.png   | Bin 4338 -> 3338 bytes
 8 files changed, 71 insertions(+), 57 deletions(-)

commit 52f31b0a4e2e47024975fb622b0be1f04715256b
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-23 11:22:55 +0000

    Remove a further reference to Atom.NET (oops!)
    
    svn path=/trunk/; revision=479

 lib/Makefile.am | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 84ffb6ad9d57d8377b076e1919b1d763ce754c70
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-23 10:40:05 +0000

    Migrate from Atom.NET to AtomFeed.
    
    Change the Atom-specific parts of the code to use the new AtomFeed
    library instead of Atom.NET.
    
    svn path=/trunk/; revision=478

 ChangeLog          |   7 +++++
 Makefile.am        |   2 +-
 lib/Atom.NET.dll   | Bin 119808 -> 0 bytes
 lib/AtomFeed.cs    |  90 ++++++++++++++++++++++++++++++++++++++++++++---------
 src/Channel.cs     |   3 +-
 src/FeedUpdater.cs |  24 +++++++-------
 src/Item.cs        |  67 ++++++++++++++++++++-------------------
 src/Makefile.am    |   2 +-
 8 files changed, 132 insertions(+), 63 deletions(-)

commit 583876a2912ffa1fe91bf8862369ed424206f0c1
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-23 10:39:57 +0000

    Initial import of AtomFeed library.
    
    We now ship it but don't use it. More functionality will be added as
    the need emerges.
    
    svn path=/trunk/; revision=477

 ChangeLog       |  7 +++++
 blam.1          |  2 +-
 lib/AtomFeed.cs | 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 lib/Makefile.am | 19 ++++++++++++-
 src/Makefile.am |  2 +-
 5 files changed, 109 insertions(+), 3 deletions(-)

commit 2251afcb54c8632269887315339874916fa59ed9
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-20 19:00:29 +0000

    Add Tango artwork by Andreas Nilsson.
    
    It's not the default yet, and we ship the old one, but we'll migrate
    to it as the UI code is reviewed.
    
    Also update ChangeLog which I always forget to do.
    
    svn path=/trunk/; revision=476

 ChangeLog                  |   8 ++
 configure.in               |   6 +
 icons/16x16/Makefile.am    |   4 +
 icons/16x16/blam.png       | Bin 0 -> 806 bytes
 icons/22x22/Makefile.am    |   4 +
 icons/22x22/blam.png       | Bin 0 -> 1276 bytes
 icons/24x24/Makefile.am    |   4 +
 icons/24x24/blam.png       | Bin 0 -> 1281 bytes
 icons/32x32/Makefile.am    |   4 +
 icons/32x32/blam.png       | Bin 0 -> 2261 bytes
 icons/48x48/Makefile.am    |   4 +
 icons/48x48/blam.png       | Bin 0 -> 3338 bytes
 icons/Makefile.am          |   1 +
 icons/scalable/Makefile.am |   4 +
 icons/scalable/blam.svg    | 319 +++++++++++++++++++++++++++++++++++++++++++++
 15 files changed, 358 insertions(+)

commit aece946be7b75b3c2e2ac4d5f742745a98239d25
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-19 20:22:35 +0000

    Delete a couple of debug statements that shouldn't be there
    
    svn path=/trunk/; revision=475

 src/Item.cs | 2 --
 1 file changed, 2 deletions(-)

commit d6dbf34eb14386ebffa3415dff88ab635d43eb15
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-19 18:41:36 +0000

    Clean debug src/blam.exe.mdb whith the rest
    
    This was left behind when 'make clean' was run.
    
    svn path=/trunk/; revision=474

 src/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 025626ad252ae64e2ec779b759aca4f45a86dfaa
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   2007-09-14 13:51:36 +0000

    2007-09-14    vi.po    Updated Vietnamese translation
    
    Clytie Siddall <clytie@riverland.net.au>
    
    svn path=/trunk/; revision=473

 po/ChangeLog |   4 +
 po/vi.po     | 329 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 187 insertions(+), 146 deletions(-)

commit 6976e339ecb5175fe9ecf27f4b479c1da7f3d955
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-12 17:17:25 +0000

    Make Theme.Render() more flexible.
    
    Instead of having the strings hard-coded, accept keywork-text pairs
    and do it on the fly.
    
    svn path=/trunk/; revision=472

 src/ItemView.cs | 12 ++++++++++--
 src/Theme.cs    | 30 +++++++++++++++---------------
 2 files changed, 25 insertions(+), 17 deletions(-)

commit 5ff1f96e7411b07056dbd7d30fe5f4f0e38ac8bc
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-09-12 16:28:32 +0000

    Update MAINTAINERS file to the new format
    
    svn path=/trunk/; revision=471

 ChangeLog   | 4 ++++
 MAINTAINERS | 4 +++-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit 5c5b9c25bdc65bf20b75c3a2253dffcb21d5801b
Author: Yannig MARCHEGAY <ymarcheg@src.gnome.org>
Date:   2007-08-19 14:41:59 +0000

    Updated Occitan translation
    
    svn path=/trunk/; revision=470

 po/oc.po | 427 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 427 insertions(+)

commit afea1a615a038f23821a9d1d6c39c90b259590b6
Author: Kjartan Maraas,,23491770 <kmaraas@gnome.org>
Date:   2007-08-17 00:51:43 +0000

    Updated Norwegian bokmål translation.
    
    2007-08-17  Kjartan Maraas,,23491770  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=469

 po/ChangeLog |   4 ++
 po/nb.po     | 118 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 71 insertions(+), 51 deletions(-)

commit ccb7e3d246c398308a53e211ac0bb71d2525c4f4
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2007-08-14 18:55:06 +0000

    Updated Finnish translation
    
    svn path=/trunk/; revision=468

 po/ChangeLog |   4 ++
 po/fi.po     | 140 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 88 insertions(+), 56 deletions(-)

commit 2f812982c24d37ed302cd9818fbab389f433864e
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:   2007-08-09 10:06:06 +0000

    Updated Basque translation.
    
    2007-08-09  Inaki Larranaga Murgoitio  <dooteo@zundan.com>
    
    	* eu.po: Updated Basque translation.
    
    
    svn path=/trunk/; revision=467

 po/ChangeLog |   4 ++
 po/eu.po     | 160 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 98 insertions(+), 66 deletions(-)

commit a084bbf9b27f12f1d3deda16fa18f255d366ba07
Author: Stéphane Raimbault <stephaner@src.gnome.org>
Date:   2007-07-14 20:32:20 +0000

    Updated French translation.
    
    svn path=/trunk/; revision=466

 po/ChangeLog |   4 ++
 po/fr.po     | 117 ++++++++++++++++++++++++++---------------------------------
 2 files changed, 56 insertions(+), 65 deletions(-)

commit 2176aab096d0d4712e22b042c4b74093ca9405d5
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   2007-06-21 05:00:08 +0000

    Updated dzongkha translation
    
    svn path=/trunk/; revision=465

 po/ChangeLog |   4 ++
 po/dz.po     | 121 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 73 insertions(+), 52 deletions(-)

commit 77f7c4f0c3c8645e59adda9d5c1f3143ef2f1b9e
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   2007-06-08 16:50:46 +0000

    Updated Albanian translation.
    
     * sq.po: Updated Albanian translation.
    
    svn path=/trunk/; revision=464

 po/ChangeLog |   4 ++
 po/sq.po     | 118 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 71 insertions(+), 51 deletions(-)

commit 368878256c17041788e2a0e949bef7c812c1881b
Author: Leonardo Ferreira Fontenelle <leonardof@svn.gnome.org>
Date:   2007-05-19 20:58:47 +0000

    Updated Brazilian Portuguese translation by Vladimir Melo
    
    2007-05-19  Leonardo Ferreira Fontenelle  <leonardof@svn.gnome.org>
    
    	* pt_BR.po: Updated Brazilian Portuguese translation by Vladimir Melo
    	<vladimirmelo.psi@gmail.com>. Closes bug #438218.
    
    svn path=/trunk/; revision=463

 po/ChangeLog |   5 +
 po/pt_BR.po  | 303 +++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 184 insertions(+), 124 deletions(-)

commit d01d9b55314a7aa4b9f881c5a3c58f25f3b944a4
Author: David Lodge <dlodge@src.gnome.org>
Date:   2007-05-16 06:27:39 +0000

    Updated en_GB translation
    
    svn path=/trunk/; revision=462

 po/ChangeLog |  6 +++-
 po/en_GB.po  | 98 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 56 insertions(+), 48 deletions(-)

commit fdc56ed2bc8fc68ec1a27d5dda43e9bd442cbe54
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2007-05-14 17:35:07 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=461

 po/ChangeLog |   4 ++
 po/sv.po     | 199 +++++++++++++++++++----------------------------------------
 2 files changed, 66 insertions(+), 137 deletions(-)

commit e6071194efdab33f8280a2bf45681aa3a38d75cd
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2007-05-05 10:49:33 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=460

 po/ChangeLog |  4 +++
 po/es.po     | 98 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 55 insertions(+), 47 deletions(-)

commit b72eb8ae4f9f729e33f5a60be2548824dfbf74cd
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-05-04 13:21:52 +0000

    Use our own ErrorDialog class instead of writing it in C.
    
    Create an ErrorDialog class so we don't have to create it in
    libblam.so. This serves to delete one large function from there.
    
    svn path=/trunk/; revision=459

 libblam/blam-utils.c | 180 ---------------------------------------------------
 src/HigUtils.cs      |  39 ++++++-----
 src/Opml.cs          |  11 +---
 src/blam.glade       | 146 +++++++++++++++++++++++++++++++++++++++++
 4 files changed, 172 insertions(+), 204 deletions(-)

commit 297924fb7c21e804bcf81a1316a7c62c5aa4f8ed
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-05-04 13:21:50 +0000

    Pass references to strings rather than copying it.
    
    The feed content's gets passed around quite a bit,  so pass it through
    references instead of copying it. This reduces the memory usage, but
    it's still way too high.
    
    svn path=/trunk/; revision=458

 src/FeedUpdater.cs | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit 7927a6d331d74601992ae4ce248e100babcb0447
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-05-04 13:21:48 +0000

    Fix remote feed support. (Bug #426591)
    
    I broke this when adding local feed support. Check for the existance
    of the feed _after_ requesting it and transform it correctly.
    
    svn path=/trunk/; revision=457

 ChangeLog          |  7 ++++++-
 src/FeedUpdater.cs | 13 +++++++++++--
 2 files changed, 17 insertions(+), 3 deletions(-)

commit 401fc8d0105f9431e3bee72e7cc81de07b4e80a5
Author: David Lodge <dlodge@src.gnome.org>
Date:   2007-04-29 07:38:29 +0000

    Updated en_GB translation
    
    svn path=/trunk/; revision=456

 po/ChangeLog |  6 +++++-
 po/en_GB.po  | 37 +++++++++++++++++++++++++------------
 2 files changed, 30 insertions(+), 13 deletions(-)

commit 9879bfc283064ebdd7e92e36beec753cb7418924
Author: Claude Paroz <claudep@src.gnome.org>
Date:   2007-04-25 16:26:24 +0000

    Updated French translation.
    
    svn path=/trunk/; revision=455

 po/ChangeLog |   4 +
 po/fr.po     | 294 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 158 insertions(+), 140 deletions(-)

commit 8797a69ce4bb6a9788be8e393ca9bfaafa3c9bc2
Author: Jorge Gonzalez Gonzalez <jorgegonz@src.gnome.org>
Date:   2007-04-24 22:36:55 +0000

    Updated Spanish translation
    
    svn path=/trunk/; revision=454

 po/ChangeLog |  4 ++++
 po/es.po     | 50 +++++++++++++++++++++++++++++++-------------------
 2 files changed, 35 insertions(+), 19 deletions(-)

commit 3d56295cecd0dee8a0f9d173667e62c9c1cbfbcb
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   2007-04-22 00:22:08 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=453

 po/ChangeLog |   4 +
 po/ar.po     | 239 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 121 insertions(+), 122 deletions(-)

commit 80337ecc7b05b90b3f914aa939697411a5fed9e3
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2007-04-15 17:54:18 +0000

    sv.po: Updated Swedish translation
    
    svn path=/trunk/; revision=452

 po/ChangeLog |   4 ++
 po/sv.po     | 146 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 123 insertions(+), 27 deletions(-)

commit 67ceb66fc9d5f0f98d1b1e4bd5b2a5eca4c16129
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   2007-04-14 17:56:56 +0000

    Updated Arabic Translation by Djihed Afifi.
    
    svn path=/trunk/; revision=451

 po/ChangeLog |   4 ++
 po/ar.po     | 135 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 82 insertions(+), 57 deletions(-)

commit 545c5bb4abfa5f49e1a999045a771d99eed145e4
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   2007-04-10 10:03:13 +0000

    Updated Czech translation.
    
    2007-04-09  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=450

 po/ChangeLog |  4 ++++
 po/cs.po     | 36 ++++++++++++++++++++++++------------
 2 files changed, 28 insertions(+), 12 deletions(-)

commit 775d99e5553ce4c013bb529eabdb6b3563feb589
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-04-08 18:43:21 +0000

    Migrate to FileChooserDialog.
    
    Use FileChooserDialog instead of FileSelection. Fixes bug #315573
    
    svn path=/trunk/; revision=449

 src/Application.cs | 8 +++++---
 src/Opml.cs        | 9 +++++----
 2 files changed, 10 insertions(+), 7 deletions(-)

commit 17654621fbe68dd1d468524c45754f813db0c6c3
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   2007-04-04 12:52:59 +0000

    Updated Czech translation.
    
    2007-04-04  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: Updated Czech translation.
    
    
    svn path=/trunk/; revision=448

 po/ChangeLog |   4 +++
 po/cs.po     | 103 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 62 insertions(+), 45 deletions(-)

commit 1deef1e755b68dfcc27aa1263ef1f000dce453c6
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   2007-03-28 10:43:28 +0000

    svn path=/trunk/; revision=447
    
    
    
    svn path=/trunk/; revision=447

 po/ChangeLog |   4 +++
 po/dz.po     | 100 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 60 insertions(+), 44 deletions(-)

commit f90429a64028d88b4046484331d98713a43c843a
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-03-27 14:43:49 +0000

     Support feeds in the local filesystem.
    
    If a feed looks like a local address rather than a remote one, we
    look for the file in the local filesystem and then process it as
    normal.
    
    svn path=/trunk/; revision=446

 ChangeLog          |  10 ++++++
 src/FeedUpdater.cs | 102 +++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 86 insertions(+), 26 deletions(-)

commit cb08685b1d1a56587327961a33e1e48e8ca4cac3
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   2007-03-21 17:48:00 +0000

    Updated Albanian translation.
    
    svn path=/trunk/; revision=445

 po/ChangeLog |   4 +
 po/sq.po     | 269 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 148 insertions(+), 125 deletions(-)

commit 1f1b0bc09d41c0a3ac7a25845360f6240dec590d
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-03-19 14:38:31 +0000

    Distribute attribution files.
    
    Tell autotools to distribute the CONTRIBUTORS and MAINTER files.
    
    svn path=/trunk/; revision=444

 Makefile.am | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

commit e54757209ae06979388e171e24a9225e388cf5e7
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-03-19 14:38:15 +0000

    Distribute the theme files
    
    Add EXTRA_DIST with the theme files in the theme Makefile.am
    files. This makes `make dist` package them, bringing us closer to a
    package that can be release using autotools.
    
    svn path=/trunk/; revision=443

 themes/akregator/Makefile.am | 2 ++
 themes/blam/Makefile.am      | 2 ++
 themes/pimped/Makefile.am    | 2 ++
 themes/planet/Makefile.am    | 2 ++
 4 files changed, 8 insertions(+)

commit 948d4a9b94c95117c8c45b165139ecdb94a533db
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-03-19 14:37:57 +0000

    Install the arabic translation.
    
    Add the ar locale to the ALL_LINGUAS var in configure.in so it gets
    built and installed like the rest.
    
    svn path=/trunk/; revision=442

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4398b8808a5812c19d6baa617360b02925e77432
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-03-19 14:37:42 +0000

    Add the blam.css to the list of instalable files in themes/blam/Makefile.am
    
    svn path=/trunk/; revision=441

 themes/blam/Makefile.am | 1 +
 1 file changed, 1 insertion(+)

commit 7d9697ff0884f3cf5f4ec60c828c22437251c6c5
Author: Luca Ferretti <elle.uca@libero.it>
Date:   2007-03-06 07:55:29 +0000

    Updated Italian translation by Stefano Canepa.
    
    2007-03-06  Luca Ferretti  <elle.uca@libero.it>
    
    	* it.po: Updated Italian translation by Stefano Canepa.
    
    
    svn path=/trunk/; revision=440

 po/ChangeLog |   4 +
 po/it.po     | 234 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 139 insertions(+), 99 deletions(-)

commit 9825956ba431270c13fa18e39f44f7d7a1ddbbd5
Author: Matic Žgur <maticz@src.gnome.org>
Date:   2007-02-24 09:15:48 +0000

    Added Slovenian translation.
    
    svn path=/trunk/; revision=439

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 05e871e05aed43f2659dde58723bdb2508f1c707
Author: Matic Žgur <maticz@src.gnome.org>
Date:   2007-02-24 09:15:34 +0000

    Added Slovenian translation.
    
    svn path=/trunk/; revision=438

 po/ChangeLog |   4 +
 po/sl.po     | 422 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 426 insertions(+)

commit a00fc18f471dd415043119ef7267dc544eca4450
Author: Peter Bach <pbach@src.gnome.org>
Date:   2007-02-22 17:57:46 +0000

    Updated Danish translation
    
    svn path=/trunk/; revision=437

 po/ChangeLog |   8 ++-
 po/da.po     | 222 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 132 insertions(+), 98 deletions(-)

commit 9b1bceb4a364250594d1b937c67a77ccbecfe388
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-02-21 10:44:39 +0000

    Partial fix for the blam theme. The style is CSS but we it doesn't have rounded corners yet.
    
    svn path=/trunk/; revision=436

 themes/blam/blam.css   | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++
 themes/blam/theme.html | 41 ++++++++++++++++++++-----------
 2 files changed, 92 insertions(+), 14 deletions(-)

commit dc1056a3eda0bbbeca9dd7b81c80ddf8dd6e3d56
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-02-21 10:15:15 +0000

    Set the icon from css so it shows when the base url is different.
    
    This is the fix for the pimped theme.
    
    svn path=/trunk/; revision=435

 themes/pimped/pimped.css | 9 ++++++++-
 themes/pimped/theme.html | 2 +-
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 391a0af963f96d7d1f5b4994f16f9e6363947591
Author: Roberto Majadas <telemaco@src.gnome.org>
Date:   2007-02-20 10:31:57 +0000

    Update spanish translation
    
    
    svn path=/trunk/; revision=434

 po/ChangeLog |   4 ++
 po/es.po     | 135 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 68 insertions(+), 71 deletions(-)

commit b31b26ca4597353e65acbd0e875b52e1436b477f
Author: Daniel Nylander <dnylande@src.gnome.org>
Date:   2007-02-02 23:42:23 +0000

    sv.po: Swedish translation updated
    
    svn path=/trunk/; revision=433

 po/ChangeLog |   4 +++
 po/sv.po     | 113 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 66 insertions(+), 51 deletions(-)

commit 2a16c44b381ac99f4874e256b9b6847ee0ae04fd
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2007-01-24 14:31:41 +0000

    Updated Norwegian bokmål translation.
    
    2007-01-24  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.
    
    svn path=/trunk/; revision=432

 po/ChangeLog |  4 +++
 po/nb.po     | 96 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 58 insertions(+), 42 deletions(-)

commit 8d1ca2ee5249bce70cb192a2eadc2d98b7f0dc81
Author: Pema Geyleg <pgeyleg@src.gnome.org>
Date:   2007-01-24 10:22:10 +0000

    svn path=/trunk/; revision=431
    
    
    
    svn path=/trunk/; revision=431

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/dz.po     | 407 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 416 insertions(+), 1 deletion(-)

commit 999721e455311b41ceb659609eb9ae6b5e061642
Author: David Lodge <dlodge@src.gnome.org>
Date:   2007-01-23 21:34:10 +0000

    Updated (British) English translation
    
    svn path=/trunk/; revision=430

 po/ChangeLog |  4 +++
 po/en_GB.po  | 98 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 59 insertions(+), 43 deletions(-)

commit fc8a925a31e94d7c44099597d35b104d536ef1c2
Author: Carlos Martín Nieto <cmartin@src.gnome.org>
Date:   2007-01-18 16:21:40 +0000

    Update to 1.8.4 which was externally developed.
    
    svn path=/trunk/; revision=429

 AUTHORS                     |   1 +
 CONTRIBUTORS                |   1 +
 ChangeLog                   |  17 +++
 MAINTAINERS                 |   2 +-
 Makefile.am                 |   7 +-
 README                      |  16 ++-
 blam.1                      |  38 +++++++
 blam.in                     |  14 +--
 configure.in                |  33 +++---
 lib/Atom.NET.dll            | Bin 135168 -> 119808 bytes
 lib/RSS.NET.dll             | Bin 46080 -> 45568 bytes
 src/Application.cs          |  25 ++++-
 src/Channel.cs              |   4 +
 src/ChannelCollection.cs    |  13 ++-
 src/ChannelDialog.cs        |  18 ++-
 src/ChannelList.cs          |   4 +-
 src/Defines.cs.in           |   8 +-
 src/Dialogs.cs              |  33 ++++--
 src/FeedUpdater.cs          | 265 +++++++++++++++++++++++++++----------------
 src/Item.cs                 |  14 ++-
 src/ItemList.cs             |   8 +-
 src/ItemView.cs             |  40 ++++---
 src/Makefile.am             |   2 +-
 src/PreferencesDialog.cs    |  91 +++++++++++----
 src/Printing.cs             |   4 +-
 src/Proxy.cs                |   2 +-
 src/ThemeManager.cs         |  32 ++++--
 src/blam.glade              | 268 +++++++++++++++++++++++++++++++++++++++++++-
 themes/akregator/theme.html |   3 +-
 themes/blam/theme.html      |   3 +-
 themes/pimped/theme.html    |   3 +-
 themes/planet/theme.html    |   1 +
 32 files changed, 745 insertions(+), 225 deletions(-)

commit ce0e07b8a78ae5098f098cbddb9ae3d503f1b648
Author: Djihed Afifi <djihed@src.gnome.org>
Date:   2006-11-18 19:48:09 +0000

    Updated Arabic Translation.

 configure.in |   2 +-
 po/ChangeLog |   5 +
 po/ar.po     | 477 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 483 insertions(+), 1 deletion(-)

commit 885dffd2f6b9e30f9203d744ed417a57d03dfc6e
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   2006-11-02 16:04:11 +0000

    Fixed incorrect plural forms and updated Japanese translations.
    
    2006-11-03  Satoru SATOH <ss@gnome.gr.jp>
    
    	* ja.po: Fixed incorrect plural forms and updated Japanese translations.

 po/ChangeLog |   4 +
 po/ja.po     | 274 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 157 insertions(+), 121 deletions(-)

commit 9afeba5b0de3fd059cc33f9228a55b93e12bd3b3
Author: Raivis Dejus <orvils@gmail.com>
Date:   2006-10-04 13:59:06 +0000

    Added "lv" (Latvian) to ALL_LINGUAS. Added Latvian Translation.
    
    2006-10-04  Raivis Dejus  <orvils@gmail.com>
    
            * configure.in: Added "lv" (Latvian) to ALL_LINGUAS.
            * po/lv.po: Added Latvian Translation.

 ChangeLog    |   5 +
 configure.in |   3 +-
 po/ChangeLog |   4 +
 po/lv.po     | 403 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 414 insertions(+), 1 deletion(-)

commit 939e427b2728acefa7d67d3441f2f987311b9f81
Author: Pawan Chitrakar <pachimho@src.gnome.org>
Date:   2006-09-25 07:42:17 +0000

     Updated Nepali Translation

 po/ChangeLog |   4 +
 po/ne.po     | 391 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 204 insertions(+), 191 deletions(-)

commit 2039ba7d483bfdad363e37200ffd585e1d351043
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2006-09-13 11:23:33 +0000

    Updated Norwegian bokmål translation.
    
    2006-09-13  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.

 po/ChangeLog |   4 ++
 po/nb.po     | 147 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 78 insertions(+), 73 deletions(-)

commit d0457aae8704984e835d9d0fdefc31020f77c5d6
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   2006-09-12 07:46:36 +0000

    el.po: Fixed typos by Dimitris Glezos <dimitris@glezos.com>

 po/ChangeLog |   4 +
 po/el.po     | 427 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 372 insertions(+), 59 deletions(-)

commit 7054b5b7c6575e4bbf29c6d614c26e2e4d15f575
Author: David Lodge <dave@cirt.net>
Date:   2006-09-11 21:57:49 +0000

    Updated British (English) translation.
    
    2006-09-11  David Lodge <dave@cirt.net>
    
    	* en_GB.po: Updated British (English) translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 221 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 126 insertions(+), 99 deletions(-)

commit c7fa3765385540848b7a9c81819a9a3eee3dd871
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2006-08-16 01:33:28 +0000

    Translation updated.
    
    2006-08-16  Gabor Kelemen  <kelemeng@gnome.hu>
    
    	* hu.po: Translation updated.

 po/ChangeLog | 4 ++++
 po/hu.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 56e8a8e1b0087ff14c3e897d91cbb12a510456c1
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   2006-08-08 15:05:04 +0000

    Fixed some typos.
    
    2006-08-08  Inaki Larranaga  <dooteo@euskalgnu.org>
    
    	* eu.po: Fixed some typos.

 po/ChangeLog |  4 ++++
 po/eu.po     | 14 +++++++-------
 2 files changed, 11 insertions(+), 7 deletions(-)

commit 2429cfba5dee8c1c9cfde2395475e724dd59e40f
Author: Francisco Javier F. Serrador <serrador@openshine.com>
Date:   2006-07-29 17:40:04 +0000

    Updated Spanish translation.
    
    2006-07-29  Francisco Javier F. Serrador  <serrador@openshine.com>
    
    	* es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 12 ++++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit db8fc141a198a8eb4d5f6f07e12246e9784b1dc3
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   2006-07-25 12:46:47 +0000

    Updated French translation.

 po/ChangeLog |   4 +
 po/fr.po     | 438 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 376 insertions(+), 66 deletions(-)

commit 445d6b6a17fdf45aba514e5727756b0b8e0345e9
Author: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Date:   2006-07-09 17:00:54 +0000

    Added Russian translation by Valek Filippov <frob@df.ru>.
    
    2006-07-09  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>
    
    	* ru.po: Added Russian translation by
    	Valek Filippov <frob@df.ru>.

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   5 +
 po/ru.po     | 398 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 408 insertions(+), 1 deletion(-)

commit ce22c667af262bc5cbb280a8493829aa8c02488d
Author: Hendrik Richter <hendrikr@gnome.org>
Date:   2006-06-15 13:59:06 +0000

    Updated German translation.
    
    2006-06-15  Hendrik Richter  <hendrikr@gnome.org>
    
    	* de.po: Updated German translation.

 po/ChangeLog | 4 ++++
 po/de.po     | 9 ++++++---
 2 files changed, 10 insertions(+), 3 deletions(-)

commit 38ba845cf4b2fd4c92fe4f3705c433c57bd73294
Author: Mikael Hallendal <micke@imendio.com>
Date:   2006-06-03 08:52:19 +0000

    Updated obsoleted overloaded function.
    
    
    2006-06-03  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs: Updated obsoleted overloaded function.

 ChangeLog          | 4 ++++
 src/ChannelList.cs | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit f1a26275f2b241d6a91e65bf4458629c6ff4e313
Author: Mikael Hallendal <micke@imendio.com>
Date:   2006-06-03 08:47:58 +0000

    Use Gtk# 2 Build fix for newer firefox Updated from Ubuntu patch.
    
    
    2006-06-03  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in: Use Gtk# 2
    	* libblam/blam-gecko-utils.cpp: Build fix for newer firefox
    	* src/egg-sharp.cs: Updated from Ubuntu patch.

 ChangeLog                    |   6 +
 configure.in                 |  14 +-
 libblam/blam-gecko-utils.cpp |   2 +
 src/egg-sharp.cs             | 669 ++++++++++++++++++++++++-------------------
 4 files changed, 387 insertions(+), 304 deletions(-)

commit e3e4a41fbc57d161bd165f039414a2a5d76df352
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   2006-05-23 12:06:28 +0000

    Update,
    
    2006-05-23  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: Update,

 po/ChangeLog |   8 ++-
 po/cs.po     | 167 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 89 insertions(+), 86 deletions(-)

commit 0416643a04313a9e77697a507a6003164f2179ce
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2006-04-17 10:15:18 +0000

    Remove obsolete no_NO locale. And the translation.
    
    2006-04-17  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* configure.in: Remove obsolete no_NO locale.
    	* po/no.po: And the translation.

 ChangeLog    |   5 +
 configure.in |   2 +-
 po/no.po     | 400 -----------------------------------------------------------
 3 files changed, 6 insertions(+), 401 deletions(-)

commit 04e7496bf06b2f9f9c02c1d94c222d570ed1219e
Author: Daniel Nylander <po@danielnylander.se>
Date:   2006-04-11 23:21:38 +0000

    Updated Swedish translation
    
    2006-04-12  Daniel Nylander  <po@danielnylander.se>
    
            * sv.po: Updated Swedish translation

 po/ChangeLog |   4 +
 po/sv.po     | 253 +++++++++++++++++++++++------------------------------------
 2 files changed, 104 insertions(+), 153 deletions(-)

commit 8d327680c0e025217c53941877122304633dbc2a
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   2006-02-28 17:59:05 +0000

    Updated basque translation.
    
    2006-02-28  Inaki Larranaga  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated basque translation.

 po/ChangeLog |   4 +++
 po/eu.po     | 114 +++++++++++++++++++++++++++--------------------------------
 2 files changed, 56 insertions(+), 62 deletions(-)

commit 2999cc588782c073f4c562b272b04000a4b2d1f7
Author: Jakub Friedl <jfriedl@suse.cz>
Date:   2006-02-13 15:00:26 +0000

    minor fix
    
    2006-02-13  Jakub Friedl <jfriedl@suse.cz>
    
      * cs.po: minor fix

 po/ChangeLog |  4 ++++
 po/cs.po     | 10 ++++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit 32743aedce719956dd03a0cfef28e9f298f36726
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2006-01-28 19:06:57 +0000

    Translation updated by Tino Meinen.
    
    2006-01-28  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by  Tino Meinen.

 po/ChangeLog |   4 ++
 po/nl.po     | 137 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 82 insertions(+), 59 deletions(-)

commit e48dd401360f267bd595fddd1031ba6c35090aa4
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   2006-01-24 03:22:33 +0000

    ----------------------------------------------------------------------
    
    	* configure.in	Added vi in ALL_LINGUAS line.
    	CVS: ----------------------------------------------------------------------

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit d30c31cc753f01b5f427412758a2cbd1713d3967
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   2006-01-21 10:59:57 +0000

    Updated Traditional Chinese translation(Taiwan). Added Traditional Chinese
    
    
    2006-01-21  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
    	* zh_TW.po: Updated Traditional Chinese translation(Taiwan).
    	* zh_HK.po: Added Traditional Chinese translation(Hong Kong).

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   5 +
 po/zh_HK.po  | 417 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/zh_TW.po  | 147 ++++++++++++---------
 5 files changed, 511 insertions(+), 64 deletions(-)

commit 975df07f0c49fdeb49282e7e85edcecb62094295
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2006-01-06 22:32:36 +0000

    Updated Finnish translation

 po/ChangeLog |  4 +++
 po/fi.po     | 80 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 48 insertions(+), 36 deletions(-)

commit f30bda65e404a06335de1db64053d413bc0a9065
Author: Mikael Hallendal <micke@imendio.com>
Date:   2006-01-02 14:25:14 +0000

    Added
    
    
    2006-01-02  Mikael Hallendal  <micke@imendio.com>
    
    	* MAINTAINERS: Added

 ChangeLog   | 4 ++++
 MAINTAINERS | 1 +
 2 files changed, 5 insertions(+)

commit 47efe74f3ad71d1be447735d2f6b5b5c8f0da7e5
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   2006-01-02 12:23:18 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 ++
 po/vi.po     | 231 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 129 insertions(+), 106 deletions(-)

commit 4960983dd22909123a485669e1f0a8161508a046
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2005-12-22 21:19:11 +0000

    seems I forgot to commit the files

 themes/Makefile.am                    |   2 +-
 themes/planet/.cvsignore              |   2 +
 themes/planet/Makefile.am             |  13 +++++
 themes/planet/bubble-bottom-left.png  | Bin 0 -> 418 bytes
 themes/planet/bubble-bottom-right.png | Bin 0 -> 375 bytes
 themes/planet/bubble-bottom.png       | Bin 0 -> 189 bytes
 themes/planet/bubble-left.png         | Bin 0 -> 287 bytes
 themes/planet/bubble-nipple.png       | Bin 0 -> 569 bytes
 themes/planet/bubble-right.png        | Bin 0 -> 174 bytes
 themes/planet/bubble-top-left.png     | Bin 0 -> 642 bytes
 themes/planet/bubble-top-right.png    | Bin 0 -> 476 bytes
 themes/planet/bubble-top.png          | Bin 0 -> 486 bytes
 themes/planet/planet.css              |  87 ++++++++++++++++++++++++++++++++++
 themes/planet/theme.html              |  25 ++++++++++
 14 files changed, 128 insertions(+), 1 deletion(-)

commit f33cdc9dd8d5b8e19282c099e043aa5f8e20e2fc
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2005-12-19 15:31:05 +0000

    Hungarian translation updated.
    
    2005-12-19  Gabor Kelemen  <kelemeng@gnome.hu>
    
    	* hu.po: Hungarian translation updated.

 po/ChangeLog |  4 +++
 po/hu.po     | 82 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 49 insertions(+), 37 deletions(-)

commit 6af3793acf235d68393b68451c836575ee116df7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-12-18 15:53:51 +0000

    - Added theme based of planet gnome from Matt Philmon.
    
    
    2005-12-18  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in:
    	* themes/Makefile.am:
    	* themes/planet/*:
    	- Added theme based of planet gnome from Matt Philmon.

 ChangeLog    | 7 +++++++
 configure.in | 1 +
 2 files changed, 8 insertions(+)

commit 489c43a8ef1798b4445c3cb7cb19d5bd8f92d6c4
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-12-18 15:25:31 +0000

    Require Mono 1.1.10 Splitted out from Channel.cs Split out Item class Use
    
    
    2005-12-18  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in: Require Mono 1.1.10
    	* src/Item.cs: Splitted out from Channel.cs
    	* src/Channel.cs: Split out Item class
    	* src/*.cs: Use Mono.Unix.Catalog instead of Mono.Posix.Catalog

 ChangeLog                |   7 ++
 configure.in             |   2 +-
 src/Application.cs       |   4 +-
 src/Channel.cs           | 158 -------------------------------------------
 src/ChannelList.cs       |   9 +--
 src/Dialogs.cs           |   2 +-
 src/Item.cs              | 173 +++++++++++++++++++++++++++++++++++++++++++++++
 src/ItemView.cs          |   2 +-
 src/Makefile.am          |   1 +
 src/Opml.cs              |   2 +-
 src/PreferencesDialog.cs | 154 +++++++++++++++++++++--------------------
 src/ThemeManager.cs      |   2 +-
 12 files changed, 269 insertions(+), 247 deletions(-)

commit a8d798a3090ade81fb5e70b20d41cdf2efb267e0
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   2005-12-10 21:57:09 +0000

    Updated Spanish translation.
    
    2005-12-10  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
    	* es.po: Updated Spanish translation.

 po/ChangeLog |  4 ++++
 po/es.po     | 78 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 47 insertions(+), 35 deletions(-)

commit d8f08b3f6d454495b0471ccccf48d185b3cdfb9d
Author: Žygimantas Beručka <zygis@gnome.org>
Date:   2005-12-08 10:57:27 +0000

    Updated Lithuanian translation.
    
    2005-12-08  Žygimantas Beručka  <zygis@gnome.org>
    
            * lt.po: Updated Lithuanian translation.

 po/ChangeLog |   4 +
 po/lt.po     | 279 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 162 insertions(+), 121 deletions(-)

commit 0684eadf8ce3fdeef522cadf01346ca86bc59aa5
Author: Adam Weinberger <adamw@gnome.org>
Date:   2005-12-03 22:52:06 +0000

    Updated Canadian English translation.
    
    
    2005-12-03  Adam Weinberger  <adamw@gnome.org>
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 76 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 46 insertions(+), 34 deletions(-)

commit 1578626e6d6c163cc5c2d2f00844340e0ccf13d0
Author: Alexander Shopov <ash@contact.bg>
Date:   2005-12-01 10:24:58 +0000

    Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>
    
    2005-12-01  Alexander Shopov  <ash@contact.bg>
    
    	* bg.po: Updated Bulgarian translation by
    	Alexander Shopov <ash@contact.bg>

 po/ChangeLog |   5 ++
 po/bg.po     | 270 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 139 insertions(+), 136 deletions(-)

commit 4bd8bc0f100398dcab3e37306c321b16a004148a
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-11-27 12:39:43 +0000

    Added ThemeManager. Added a bunch of defines for Theme support.
    
    2005-11-27  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs: Added ThemeManager.
    	* src/Defines.cs.in: Added a bunch of defines for Theme support.
    	* src/HtmlTemplate.cs:
    	- Removed and replaced with Theme and ThemeManager.
    	* src/ItemView.cs: Use Theme/ThemeManager instead of HtmlTemplate.
    	* src/Makefile.am: Added Theme and ThemeManager.
    	* src/Theme.cs: Added.
    	* src/ThemeManager.cs: Added.

 ChangeLog           |   11 +
 src/Application.cs  | 1274 ++++++++++++++++++++++++++-------------------------
 src/Channel.cs      |  591 ++++++++++++------------
 src/ChannelList.cs  |  762 +++++++++++++++---------------
 src/Defines.cs.in   |   10 +-
 src/HtmlTemplate.cs |   65 ---
 src/ItemView.cs     |    9 +-
 src/Makefile.am     |    3 +-
 src/Theme.cs        |   65 +++
 src/ThemeManager.cs |  126 +++++
 src/Utils.cs        |   14 +-
 src/blam.glade      |   98 ++++
 12 files changed, 1640 insertions(+), 1388 deletions(-)

commit 45dc2dcd85d219e9cf7f17a7066167be51910e2b
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2005-11-21 22:39:07 +0000

    Hungarian translation updated.
    
    2005-11-21  Gabor Kelemen  <kelemeng@gnome.hu>
    
    	* hu.po: Hungarian translation updated.

 po/ChangeLog |   4 ++
 po/hu.po     | 165 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 88 insertions(+), 81 deletions(-)

commit 8915d439ea1988761fb905c95b03ffc2b9f37dbc
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2005-11-20 09:45:16 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 122 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 71 insertions(+), 55 deletions(-)

commit 2e9268edd571678dee77b60929df1b2a0da2a575
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-11-19 19:10:30 +0000

    Fixed problem when gconf key was set to point to non-existing path for a
    
    
    2005-11-19  Mikael Hallendal  <micke@imendio.com>
    
    	* src/HtmlTemplate.cs: Fixed problem when gconf key was set to
    	  point to non-existing path for a template.
    	- Reported by Richard Hult.

 ChangeLog           | 6 ++++++
 src/HtmlTemplate.cs | 1 +
 2 files changed, 7 insertions(+)

commit 947c8e2960d057e42bd0092303d2463755a7de08
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-11-18 20:45:31 +0000

    - Patch from Ed Catmur. - Fix a problem when the egg notification area
    
    
    2005-11-18  Mikael Hallendal  <micke@imendio.com>
    
    	* src/egg-sharp.cs:
    	- Patch from Ed Catmur.
    	- Fix a problem when the egg notification area icon was ported to C#.
    	- Fixes bug #155484, icon leaves notification area forever.

 ChangeLog                |   7 ++
 src/PreferencesDialog.cs |   1 +
 src/blam.glade           | 108 +++++++++++++++++----
 src/egg-sharp.cs         | 242 +++++++++++++++++++++++++++++++++++++++++------
 4 files changed, 306 insertions(+), 52 deletions(-)

commit fe986db45304f58063e682868abf8e5a820632c2
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   2005-11-18 18:07:27 +0000

    Updated Spanish translation.
    
    2005-11-18  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
    	* es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 119 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 69 insertions(+), 54 deletions(-)

commit 2f96f8eea4c4a456333075eaaebcd47c63c05295
Author: Adam Weinberger <adamw@gnome.org>
Date:   2005-11-18 01:54:19 +0000

    Updated Canadian English translation.
    
    
    2005-11-17  Adam Weinberger  <adamw@gnome.org>
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 117 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 68 insertions(+), 53 deletions(-)

commit 952df97cf50d25aeaeb8ddf2ed1723b27b96f669
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   2005-11-15 16:58:36 +0000

    Updated Basque translation.
    
    2005-11-15  Inaki Larranaga  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated Basque translation.

 po/ChangeLog |   4 ++
 po/eu.po     | 122 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 70 insertions(+), 56 deletions(-)

commit ce966b68272042da0e09fd4e7471b2087e1010bc
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2005-11-14 00:17:50 +0000

    ssh

 themes/.cvsignore           | 2 ++
 themes/akregator/.cvsignore | 2 ++
 themes/blam/.cvsignore      | 2 ++
 themes/pimped/.cvsignore    | 2 ++
 4 files changed, 8 insertions(+)

commit daac8f7ea52e4c48ed35f908292dd8a5bd568bf7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-11-13 21:15:44 +0000

    - Cleaned up the style a bit to better match the rest of the code.
    
    
    2005-11-13  Mikael Hallendal  <micke@imendio.com>
    
    	* src/HtmlTemplate.cs:
    	* src/ItemView.cs:
    	- Cleaned up the style a bit to better match the rest of the code.

 ChangeLog           |  6 ++++
 src/HtmlTemplate.cs | 89 ++++++++++++++++++++++++++++-------------------------
 src/ItemView.cs     |  4 +--
 3 files changed, 55 insertions(+), 44 deletions(-)

commit fe9425da0154fed336b20a9642fa2f520e971938
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-11-13 20:41:48 +0000

    - Rename index.html to theme.html in all places :)
    
    
    2005-11-13  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Defines.cs.in:
    	* themes/akregator/Makefile.am:
    	* themes/blam/Makefile.am:
    	* themes/pimped/Makefile.am:
    	- Rename index.html to theme.html in all places :)

 ChangeLog                    | 8 ++++++++
 src/Defines.cs.in            | 2 +-
 themes/akregator/Makefile.am | 2 +-
 themes/blam/Makefile.am      | 2 +-
 themes/pimped/Makefile.am    | 2 +-
 5 files changed, 12 insertions(+), 4 deletions(-)

commit b284e23b5603adb09d238ea2582941057baf081a
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2005-11-13 16:40:42 +0000

    add files

 themes/akregator/Makefile.am | 3 +++
 themes/blam/Makefile.am      | 8 ++++++++
 themes/pimped/Makefile.am    | 6 ++++++
 3 files changed, 17 insertions(+)

commit 64bd9ca08398f188c5b2f732151583ccb93a05b8
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2005-11-13 16:40:05 +0000

    k
    
    
    k

 themes/pimped/blam.png   | Bin 0 -> 4338 bytes
 themes/pimped/news.png   | Bin 0 -> 1607 bytes
 themes/pimped/pimped.css |  44 ++++++++++++++++++++++++++++++++++++++++++++
 themes/pimped/theme.html |  25 +++++++++++++++++++++++++
 4 files changed, 69 insertions(+)

commit f0537e774e95777d1c72a7b4364522512bbb3468
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-11-13 13:06:26 +0000

    First commit on new theme support hacked on by Michael Ostermeier. Added
    
    
    2005-11-13  Mikael Hallendal  <micke@imendio.com>
    
    	* First commit on new theme support hacked on by Michael Ostermeier.
    	* configure.in: Added themes
    	* blam.schemas.in: Added theme key
    	* icons/Makefile.am:
    	* icons/blam-box-*: Moved to themes/blam.
    	* src/Defines.cs.in:
    	- Moved definition of app home dir here
    	- Added define for theme.
    	* src/Application.cs: Use app home define.
    	* src/HtmlTemplate.cs: New file to render a theme template.
    	* src/HtmlUtils.cs:
    	- Moved EncodeUnicode and FixMarkup here from ItemView.
    	* src/ItemView.cs: Load from theme template instead.
    	* src/Makefile.am: Added HtmlTemplate.cs
    	* themes/*:
    	- Added the default theme and two themes from Michael Ostermeier.

 ChangeLog                             |  19 ++++
 Makefile.am                           |   2 +-
 blam.schemas.in                       |  13 +++
 configure.in                          |   4 +
 icons/Makefile.am                     |  10 +--
 icons/blam-box-bottom-left.png        | Bin 140 -> 0 bytes
 icons/blam-box-bottom-right.png       | Bin 125 -> 0 bytes
 icons/blam-box-pad.png                | Bin 156 -> 0 bytes
 icons/blam-box-top-left.png           | Bin 129 -> 0 bytes
 icons/blam-box-top-right.png          | Bin 143 -> 0 bytes
 src/Application.cs                    |   7 +-
 src/Defines.cs.in                     |   8 +-
 src/HtmlTemplate.cs                   |  59 +++++++++++++
 src/HtmlUtils.cs                      |  31 ++++++-
 src/ItemView.cs                       | 160 +++-------------------------------
 src/Makefile.am                       |   3 +-
 src/PreferencesDialog.cs              |   8 +-
 src/blam.glade                        |  21 +++++
 themes/Makefile.am                    |   1 +
 themes/akregator/theme.html           |  18 ++++
 themes/blam/blam-box-bottom-left.png  | Bin 0 -> 140 bytes
 themes/blam/blam-box-bottom-right.png | Bin 0 -> 125 bytes
 themes/blam/blam-box-pad.png          | Bin 0 -> 156 bytes
 themes/blam/blam-box-top-left.png     | Bin 0 -> 129 bytes
 themes/blam/blam-box-top-right.png    | Bin 0 -> 143 bytes
 themes/blam/theme.html                |  53 +++++++++++
 26 files changed, 249 insertions(+), 168 deletions(-)

commit 6de76952692a4e4bbace92bce7ea190015c11888
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2005-10-27 15:22:00 +0000

    Updated Norwegian bokmål translation. Same.
    
    2005-10-27  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Updated Norwegian bokmål translation.
    	* no.po: Same.

 po/ChangeLog |  5 ++++
 po/nb.po     | 86 +++++++++++++++++++++++++++++++++---------------------------
 po/no.po     | 86 +++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 99 insertions(+), 78 deletions(-)

commit 4d75939606993a54947087e99037bb89141ee8c6
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2005-09-26 22:16:09 +0000

    Translation updated by Tino Meinen.
    
    2005-09-27  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by  Tino Meinen.

 po/ChangeLog |   4 ++
 po/nl.po     | 172 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 100 insertions(+), 76 deletions(-)

commit 80f628b73704f6298d60b1af7a32f0ab419eae6e
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-09-13 07:56:16 +0000

    - amd64 fix, fixes #316129, patch from Brandon Hale.
    
    2005-09-13  Mikael Hallendal  <micke@imendio.com>
    
    	* src/egg-sharp.cs:
    	- amd64 fix, fixes #316129, patch from Brandon Hale.

 ChangeLog        | 5 +++++
 src/egg-sharp.cs | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 901ee76fd1b0a23bb0abcf8878f2e875d1a1f0f0
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2005-09-11 15:25:09 +0000

    Updated Finnish translation

 po/ChangeLog |  4 ++++
 po/fi.po     | 10 +++++-----
 2 files changed, 9 insertions(+), 5 deletions(-)

commit ee2e44cccddd1b874ecbfe237a93b6c9e485b0c7
Author: Inaki Larranaga <dooteo@euskalgnu.org>
Date:   2005-09-09 16:33:10 +0000

    Updated Basque translation.
    
    2005-09-09  Inaki Larranaga  <dooteo@euskalgnu.org>
    
    	* eu.po: Updated Basque translation.

 po/ChangeLog |   4 +
 po/eu.po     | 248 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 135 insertions(+), 117 deletions(-)

commit 0741950583a291b2defb7d73d8b71e0a553e5145
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   2005-09-04 10:18:22 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 ++
 po/ca.po     | 166 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 90 insertions(+), 80 deletions(-)

commit 46e8337cfdfd4a0fd56a4f3360cfdfde96eb636b
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   2005-08-27 06:42:46 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog | 4 ++++
 po/vi.po     | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit 70d5ea168a4a9dfc66f6bab7dbb8e133911f2da8
Author: Clytie Siddall <clyties@src.gnome.org>
Date:   2005-08-18 13:10:11 +0000

    vi.po: Updated Vietnamese translation.

 po/ChangeLog |   4 +
 po/vi.po     | 379 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 383 insertions(+)

commit b13a687e67720853e62821731c49a8976101c399
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2005-08-14 23:52:37 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 162 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 87 insertions(+), 79 deletions(-)

commit 55d4007a34405c87ae93c329980c50366e923a50
Author: Pedro Marcelo Villavicencio Garrido <pvillavi@src.gnome.org>
Date:   2005-08-11 19:48:29 +0000

    Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 266 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 154 insertions(+), 116 deletions(-)

commit 3be365225602c340bf289b50663f1b244fe30d36
Author: Maxim Dziumanenko <mvd@mylinux.ua>
Date:   2005-08-09 06:30:39 +0000

    Added Ukrainian tranlsation.
    
    2005-08-09  Maxim Dziumanenko <mvd@mylinux.ua>
    
    	* Added Ukrainian tranlsation.

 po/ChangeLog |   4 +
 po/uk.po     | 396 +++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 332 insertions(+), 68 deletions(-)

commit 59365557ed54de15dcc08dc6812d4614a8170812
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2005-07-31 17:13:00 +0000

    Bulk change to fi.po: (gnome-fi.org to gnome.fi)

 po/ChangeLog | 5 +++++
 po/fi.po     | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit 1c565c0ea9818019383631e576e40b83ba23668f
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   2005-07-21 08:02:46 +0000

    Updated German translation.
    
    2005-07-21  Frank Arnold  <farnold@cvs.gnome.org>
    
    	* de.po: Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 163 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 89 insertions(+), 78 deletions(-)

commit 9f65f54135fc0ac932bc7d68f28261421444f992
Author: Pawan Chitrakar <pachimho@src.gnome.org>
Date:   2005-07-16 05:16:09 +0000

    Nepali Translation Added

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/ne.po     | 396 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 405 insertions(+), 1 deletion(-)

commit d9b8601c988291fc221ac3f01289d25ef0c1facf
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   2005-07-16 01:59:04 +0000

    Updated Traditional Chinese translation.
    
    
    2005-07-16  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
    	* zh_TW.po: Updated Traditional Chinese translation.

 po/ChangeLog |   4 ++
 po/zh_TW.po  | 129 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 71 insertions(+), 62 deletions(-)

commit 46312eec07f92bceca944e086227ac48f7cdc6a1
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2005-07-14 08:54:38 +0000

    Updated Czech translation.
    
    2005-07-14  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 122 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 67 insertions(+), 59 deletions(-)

commit 7cece0f7d9459f08222165cc60d9075e011a0ecc
Author: Adam Weinberger <adamw@gnome.org>
Date:   2005-07-10 21:55:23 +0000

    Updated Canadian English translation.
    
    
    2005-07-10  Adam Weinberger  <adamw@gnome.org>
    
    	* en_CA.po: Updated Canadian English translation.

 po/en_CA.po | 52 ++++++++++++++++++++++++++++------------------------
 1 file changed, 28 insertions(+), 24 deletions(-)

commit 1902ec3014b1910462aae539afb9ef97c1023ed2
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-07-10 11:13:22 +0000

    Turn of marking as unreade on update, it's annoying.
    
    
    2005-07-10  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs: Turn of marking as unreade on update, it's annoying.

 ChangeLog          | 4 ++++
 src/Application.cs | 1 +
 src/Channel.cs     | 1 -
 3 files changed, 5 insertions(+), 1 deletion(-)

commit 3c42d2069b86fb89604b18a80ceb1da948b1d6b3
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-07-10 10:35:35 +0000

    - Use GUID as link if entry doesn't have a link and GUID is a permalink. -
    
    
    2005-07-10  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs:
    	- Use GUID as link if entry doesn't have a link and GUID is a
    	  permalink.
    	- Patch from kraai (at) ftbfs.org
    	- Fixes bug #309563.

 ChangeLog      | 8 ++++++++
 src/Channel.cs | 6 +++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 7e3ca2cf32bb16300ce13f7a4eee4255ee53b79f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-07-10 10:30:35 +0000

    - Use better default link for items without a link. - Patch from kraai
    
    
    2005-07-10  Mikael Hallendal  <micke@imendio.com>
    
    	* src/FeedUpdater.cs:
    	- Use better default link for items without a link.
    	- Patch from kraai (at) ftbfs.org
    	- Fixes bug #309561.

 ChangeLog          |  7 +++++++
 src/Application.cs | 11 +++++++++++
 src/Channel.cs     | 23 +++++++++++++++++++++++
 src/FeedUpdater.cs |  2 +-
 src/blam.glade     | 18 ++++++++++++++----
 5 files changed, 56 insertions(+), 5 deletions(-)

commit a053bda29cfd35079b9f1f22f93d0ade13d5d090
Author: Adam Weinberger <adamw@gnome.org>
Date:   2005-07-10 05:01:56 +0000

    Remove removed file.
    
    
    2005-07-10  Adam Weinberger  <adamw@gnome.org>
    
    	* POTFILES.skip: Remove removed file.

 po/ChangeLog     | 1 +
 po/POTFILES.skip | 1 -
 2 files changed, 1 insertion(+), 1 deletion(-)

commit ef0abbbd196d7e91c74896e4be2647302f9e3219
Author: Adam Weinberger <adamw@gnome.org>
Date:   2005-07-10 04:59:53 +0000

    Updated Canadian English translation.
    
    
    2005-07-10  Adam Weinberger  <adamw@gnome.org>
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 202 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 99 insertions(+), 107 deletions(-)

commit 8f1841a81863075d0ea98c75dd5a75866c9f2ae9
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-07-09 12:39:56 +0000

    - Added keywords to channels, isn't used for anything yet but can be set
    
    2005-07-09  Mikael Hallendal  <micke@imendio.com>
    
    	* src/blam.glade:
    	* src/ChannelDialog.cs:
    	* src/Channel.cs:
    	- Added keywords to channels, isn't used for anything yet but can be
    	  set in the properties dialog of the channel.
    	* src/ChannelCollection.cs:
    	- Don't mark as read if item has just been set to be unread.

 ChangeLog            |  10 +++
 src/Channel.cs       |  12 +++-
 src/ChannelDialog.cs |   5 +-
 src/blam.glade       | 193 +++++++++++++++++++++++++++++++++++++++++++++++----
 4 files changed, 206 insertions(+), 14 deletions(-)

commit 26c88f2d3f39188b9112c0be99b70716f1277c9e
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-07-08 20:46:32 +0000

    - Try to bring back setting unread when title or text changes. - We have
    
    2005-07-08  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs:
    	- Try to bring back setting unread when title or text changes.
    	- We have better strip functions now so the number of "false updates"
    	  might be smaller.
    	- Fixes bug #309610.

 ChangeLog      | 8 ++++++++
 src/Channel.cs | 2 ++
 2 files changed, 10 insertions(+)

commit 216e1b72fd3a40bd826c68e7530113f702aa1d94
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-07-08 20:41:15 +0000

    - Make the automatic refresher smarter and check whether it was more than
    
    2005-07-08  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelCollection.cs:
    	* src/Channel.cs:
    	* src/FeedUpdater.cs:
    	* src/Application.cs:
    	- Make the automatic refresher smarter and check whether it was more
    	  than the refresh rate since last refresh when starting so that we get
    	  the functionality back when starting Blam for the first time in a
    	  while it will automatically refresh.
    	- Also solves a bunch of refresh issues.

 ChangeLog                | 12 ++++++++++++
 src/Application.cs       | 46 ++++++++++++++++++++++++----------------------
 src/Channel.cs           |  2 ++
 src/ChannelCollection.cs | 41 +++++++++++++++++++++++++++++++++--------
 src/FeedUpdater.cs       |  6 ++++--
 5 files changed, 75 insertions(+), 32 deletions(-)

commit 2ceaab159ad0e658e3d84890ee866ba5203d2d51
Author: Marcel Telka <marcel@telka.sk>
Date:   2005-06-21 05:35:33 +0000

    Added sk.
    
    2005-06-21  Marcel Telka  <marcel@telka.sk>
    
    	* configure.in (ALL_LINGUAS): Added sk.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 35f8f2c27edfdbf10121f8460a1099b46d4a1dfe
Author: Marcel Telka <marcel@telka.sk>
Date:   2005-06-21 05:30:49 +0000

    Added Slovak translation by Mário Vrablanský <majko@t-zones.sk>
    
    2005-06-21  Marcel Telka  <marcel@telka.sk>
    
    	* sk.po: Added Slovak translation by
    	Mário Vrablanský <majko@t-zones.sk>

 po/ChangeLog |   5 +
 po/sk.po     | 377 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 382 insertions(+)

commit e8b29e21731c36bfc21513f575fbd8d34353b4db
Author: Raphael Slinckx <rslinckx@cvs.gnome.org>
Date:   2005-06-20 20:02:50 +0000

    - Repairs the previous attempt to add dbus support.
    
    2005-06-20  Raphael Slinckx  <rslinckx@cvs.gnome.org>
    
    	* configure.in:
    	* src/Application.cs:
    	* src/DBusFeedReader.cs:
    	* src/Makefile.am:
    	- Repairs the previous attempt to add dbus support.

 ChangeLog             |  8 ++++++++
 configure.in          |  1 +
 src/Application.cs    |  2 +-
 src/DBusFeedReader.cs |  6 +++---
 src/Makefile.am       | 22 ++++++++++++----------
 5 files changed, 25 insertions(+), 14 deletions(-)

commit 918d7ae0172a9576088c98c95d39c293ed517d07
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-20 17:28:13 +0000

    Added - Added support for subscribing to feeds over D-BUS. - Patch from
    
    
    2005-06-20  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in:
    	* src/Application.cs:
    	* src/Channel.cs:
    	* src/Makefile.am:
    	* src/DBusFeedReader.cs: Added
    	- Added support for subscribing to feeds over D-BUS.
    	- Patch from Raphael Slinckx.
    	- Fixes bug #171911.
    	- This works with the epiphany extension for subscribing to RSS feeds
    	  from inside the browser.

 ChangeLog             | 13 +++++++++++++
 configure.in          |  8 ++++++++
 src/Application.cs    | 28 ++++++++++++++++++++++++++--
 src/Channel.cs        |  2 +-
 src/DBusFeedReader.cs | 39 +++++++++++++++++++++++++++++++++++++++
 src/Makefile.am       | 16 ++++++++++++----
 6 files changed, 99 insertions(+), 7 deletions(-)

commit c50492d7f365a8b9bcc9bac897465a9ff00cf3a0
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-20 15:17:28 +0000

    Release 1.8.2
    
    
    2005-06-20  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.8.2
    
    	* NEWS:
    	* configure.in:
    	* lib/Makefile.am:
    	- Updated for 1.8.2
    	- Missed to dist the .dlls.

 ChangeLog       | 10 ++++++++++
 NEWS            |  6 ++++++
 configure.in    |  2 +-
 lib/Makefile.am |  2 +-
 4 files changed, 18 insertions(+), 2 deletions(-)

commit 320517bc3687414d9eba39d7a63852a45ef0485a
Author: Sigurd Gartmann <sigurd-translate@brogar.org>
Date:   2005-06-19 15:56:53 +0000

    Updated Norwegian Bokmål translation. Updated Norwegian Bokmål
    
    2005-06-19  Sigurd Gartmann  <sigurd-translate@brogar.org>
    
    	* nb.po: Updated Norwegian Bokmål translation.
    	* no.po: Updated Norwegian Bokmål translation.

 po/ChangeLog |   5 ++
 po/nb.po     | 276 ++++++++++++++++++++++++++++++-----------------------------
 po/no.po     | 276 ++++++++++++++++++++++++++++++-----------------------------
 3 files changed, 285 insertions(+), 272 deletions(-)

commit 437350b1d92b2817378c26e7bf250d19edc46547
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-19 15:31:26 +0000

    Updated
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* POTFILES.in: Updated

 po/ChangeLog   |  4 ++++
 po/POTFILES.in |  2 +-
 po/sv.po       | 66 +++++++++++++++++++++++++++-------------------------------
 3 files changed, 36 insertions(+), 36 deletions(-)

commit b388dca56622b9138754a93ab10f7f473361c4ad
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-19 15:00:30 +0000

    - Updated for 1.8.1
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* NEWS:
    	* configure.in:
    	- Updated for 1.8.1

 ChangeLog       | 6 ++++++
 NEWS            | 9 +++++++++
 configure.in    | 2 +-
 src/TrayIcon.cs | 1 +
 4 files changed, 17 insertions(+), 1 deletion(-)

commit bf91120a58b4d6e0ddb5e717dc6b4a13b389a28f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-19 11:55:03 +0000

    - Renamed internal variables.
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs:
    	* src/ItemList.cs:
    	- Renamed internal variables.
    	* src/Makefile.am:
    	* src/Spinner.cs:
    	- Removed unused code.

 ChangeLog          |  9 +++++++++
 src/ChannelList.cs |  6 +++---
 src/ItemList.cs    |  6 +++---
 src/Makefile.am    |  1 -
 src/Spinner.cs     | 45 ---------------------------------------------
 5 files changed, 15 insertions(+), 52 deletions(-)

commit 104695fa2a8dce46ae110ab8c0cc2ac8d84f81b3
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-19 11:38:13 +0000

    Removed. Removed. - Removed C glue code, spinner wasn't used and the
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/Makefile.am:
    	* libblam/blam-channel-menu.[ch]: Removed.
    	* libblam/blam-spinner.[ch]: Removed.
    	- Removed C glue code, spinner wasn't used and the channel menu has
    	  been moved to managed code.
    	* src/Application.cs:
    	* src/ChannelDialog.cs:
    	* src/Dialogs.cs:
    	* src/ItemView.cs:
    	* src/Opml.cs:
    	* src/PreferencesDialog.cs:
    	* src/Utils.cs:
    	* src/egg-sharp.cs:
    	- Changed private to public on glade callbacks to get rid of a bunch
    	  of warnings.
    	* src/ChannelList.cs:
    	- Implement the channel menu in managed code instead.

 ChangeLog                   |  20 ++
 libblam/Makefile.am         |   4 -
 libblam/blam-channel-menu.c | 137 -----------
 libblam/blam-channel-menu.h |  31 ---
 libblam/blam-spinner.c      | 579 --------------------------------------------
 libblam/blam-spinner.h      |  71 ------
 src/Application.cs          |  86 +++----
 src/ChannelDialog.cs        |   8 +-
 src/ChannelList.cs          | 126 ++++------
 src/Dialogs.cs              | 102 ++++----
 src/ItemView.cs             |  33 +--
 src/Opml.cs                 |  19 +-
 src/PreferencesDialog.cs    |   8 +-
 src/Utils.cs                |  47 ++++
 src/egg-sharp.cs            |   6 -
 15 files changed, 221 insertions(+), 1056 deletions(-)

commit e6029f08ee7843d41dc1f000663d36b918b482cc
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-19 10:08:04 +0000

    - Changed the order of the right-click menu and added a separator. - Fixes
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-channel-menu.c:
    	- Changed the order of the right-click menu and added a separator.
    	- Fixes bug #303404.

 ChangeLog                   |  6 ++++++
 libblam/blam-channel-menu.c | 24 ++++++++++++++++--------
 2 files changed, 22 insertions(+), 8 deletions(-)

commit 2ce8e448d0b1db349d8651ef9ef6c89789b4e35b
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2005-06-19 09:32:37 +0000

    forgot to add this

 lib/Atom.NET.dll | Bin 0 -> 135168 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

commit 73d25e8bb67358a24daf3a35a8051e3f69980aad
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-19 00:41:29 +0000

    - Added.
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am:
    	* blam.exe.config:
    	- Added.
    	* lib/Makefile.am:
    	* lib/atom.dll:
    	* src/Makefile.am:
    	- Renamed to atom.dll to Atom.NET.Dll

 ChangeLog       |  10 ++++++++++
 Makefile.am     |   4 ++++
 blam.exe.config |   4 ++++
 lib/Makefile.am |   2 +-
 lib/atom.dll    | Bin 117760 -> 0 bytes
 src/Makefile.am |   8 ++++----
 6 files changed, 23 insertions(+), 5 deletions(-)

commit fd444631d69b623808fb3b7c59ea450f3b3ce1cc
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-18 22:07:32 +0000

    - Replaced rss.dll with RSS.NET.dll
    
    
    2005-06-19  Mikael Hallendal  <micke@imendio.com>
    
    	* lib/Makefile.am:
    	* lib/RSS.NET.dll:
    	* lib/rss.dll:
    	- Replaced rss.dll with RSS.NET.dll
    	* src/ChannelCollection.cs:
    	- Write to a temp file and then move it.
    	- Fixes bug #303918.
    	* src/Makefile.am:
    	- Fixed a couple of warnings.

 ChangeLog                |  12 ++++++++++++
 lib/Makefile.am          |   2 +-
 lib/RSS.NET.dll          | Bin 0 -> 46080 bytes
 lib/rss.dll              | Bin 46080 -> 0 bytes
 src/ChannelCollection.cs |  40 +++++++++++++++++++++++++++++++++-------
 src/Makefile.am          |   9 ++++-----
 src/PreferencesDialog.cs |   6 +++---
 7 files changed, 53 insertions(+), 16 deletions(-)

commit 411e25203e6b33a52d14d9153e00e2ed0de567f9
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-18 17:04:17 +0000

    - Cleared out a bunch of warnings about not being assigned or not being
    
    
    2005-06-18  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	* src/ChannelDialog.cs:
    	* src/Dialogs.cs:
    	* src/HigUtils.cs:
    	* src/ItemView.cs:
    	* src/Opml.cs:
    	* src/PreferencesDialog.cs:
    	* src/Printing.cs:
    	* src/TrayIcon.cs:
    	* src/egg-sharp.cs:
    	- Cleared out a bunch of warnings about not being assigned or not
    	  being used.

 ChangeLog                |  15 +++++++
 src/Application.cs       |  76 ++++++++++++++++----------------
 src/ChannelDialog.cs     |  18 ++++----
 src/Dialogs.cs           | 110 +++++++++++++++++++++++------------------------
 src/HigUtils.cs          |  14 +++---
 src/ItemView.cs          |  14 ++----
 src/Opml.cs              |  28 ++++++------
 src/PreferencesDialog.cs |  25 ++++++-----
 src/Printing.cs          |  16 +++----
 src/TrayIcon.cs          |   9 ++--
 src/egg-sharp.cs         |  11 -----
 11 files changed, 162 insertions(+), 174 deletions(-)

commit f8975a1be9246fb3481363654456c3d17fd19a70
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-06-18 16:44:18 +0000

    - Added precompiled versions of these.
    
    
    2005-06-18  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am:
    	* configure.in:
    	* lib/.cvsignore:
    	* lib/Makefile.am:
    	* lib/atom.dll:
    	* lib/rss.dll:
    	- Added precompiled versions of these.
    	* README:
    	- Added comment on where to get RSS.NET and Atom.net.
    	* src/Makefile.am:
    	* src/atom/*:
    	* src/rss/*:
    	- Removed the source from the blam tree.
    	- Use prebuild dll-files from the official trees instead.

 ChangeLog                                          |   17 +
 Makefile.am                                        |    2 +-
 README                                             |   12 +-
 configure.in                                       |    3 +-
 lib/.cvsignore                                     |    2 +
 lib/Makefile.am                                    |    6 +
 lib/atom.dll                                       |  Bin 0 -> 117760 bytes
 lib/rss.dll                                        |  Bin 0 -> 46080 bytes
 src/ItemView.cs                                    |   22 +-
 src/Makefile.am                                    |    4 +-
 src/atom/.cvsignore                                |    4 -
 .../DublinCore/DcElement.cs                        |  145 ---
 src/atom/Atom.AdditionalElements/ScopedElement.cs  |  117 --
 .../ScopedElementCollection.cs                     |  122 --
 .../Atom.Core.Collections/AtomContentCollection.cs |  145 ---
 .../Atom.Core.Collections/AtomEntryCollection.cs   |  120 --
 .../Atom.Core.Collections/AtomLinkCollection.cs    |  145 ---
 .../AtomPersonConstructCollection.cs               |  122 --
 src/atom/Atom.Core/AtomContent.cs                  |  226 ----
 src/atom/Atom.Core/AtomContentConstruct.cs         |  306 -----
 src/atom/Atom.Core/AtomDateConstruct.cs            |  332 ------
 src/atom/Atom.Core/AtomElement.cs                  |  345 ------
 src/atom/Atom.Core/AtomEntry.cs                    |  656 -----------
 src/atom/Atom.Core/AtomFeed.cs                     |  660 -----------
 src/atom/Atom.Core/AtomGenerator.cs                |   89 --
 src/atom/Atom.Core/AtomLink.cs                     |  251 -----
 src/atom/Atom.Core/AtomPersonConstruct.cs          |  230 ----
 src/atom/Atom.Core/Enums.cs                        | 1185 --------------------
 src/atom/Atom.Core/Exceptions.cs                   |  224 ----
 src/atom/Atom.Utils/DefaultValues.cs               |  162 ---
 src/atom/Atom.Utils/Utils.cs                       |  428 -------
 src/atom/AtomReader.cs                             |  103 --
 src/atom/AtomWriter.cs                             |  148 ---
 src/atom/Makefile.am                               |   47 -
 src/atom/README.txt                                |    2 -
 src/atom/mediatypes.txt                            |  550 ---------
 src/atom/mvpxml/XPathNavigatorReader.cs            |  764 -------------
 src/atom/mvpxml/XmlNamespaces.cs                   |   88 --
 src/rss/.cvsignore                                 |    4 -
 src/rss/Collections/ExceptionCollection.cs         |  109 --
 src/rss/Collections/RssCategoryCollection.cs       |   95 --
 src/rss/Collections/RssChannelCollection.cs        |   94 --
 src/rss/Collections/RssFeedCollection.cs           |  113 --
 src/rss/Collections/RssItemCollection.cs           |  139 ---
 src/rss/Collections/RssModuleCollection.cs         |   99 --
 src/rss/Collections/RssModuleItemCollection.cs     |  116 --
 .../RssModuleItemCollectionCollection.cs           |   99 --
 src/rss/Makefile.am                                |   45 -
 src/rss/README.txt                                 |    2 -
 src/rss/RssChannel/RssChannel.cs                   |  219 ----
 src/rss/RssChannel/RssCloud.cs                     |   77 --
 src/rss/RssChannel/RssImage.cs                     |   90 --
 src/rss/RssChannel/RssTextInput.cs                 |   76 --
 src/rss/RssFeed.cs                                 |  265 -----
 src/rss/RssItem/RssEnclosure.cs                    |   63 --
 src/rss/RssItem/RssGuid.cs                         |   55 -
 src/rss/RssItem/RssItem.cs                         |  126 ---
 src/rss/RssItem/RssSource.cs                       |   55 -
 src/rss/RssModule.cs                               |   91 --
 src/rss/RssModuleItem.cs                           |  147 ---
 src/rss/RssModules/RssBlogChannel.cs               |   61 -
 src/rss/RssModules/RssCreativeCommon.cs            |   66 --
 src/rss/RssModules/RssPhotoAlbum.cs                |  367 ------
 src/rss/RssReader.cs                               |  700 ------------
 src/rss/RssWriter.cs                               |  607 ----------
 src/rss/Shared/DBBool.cs                           |  172 ---
 src/rss/Shared/RssCategory.cs                      |   58 -
 src/rss/Shared/RssCompact.cs                       |   46 -
 src/rss/Shared/RssDefault.cs                       |   79 --
 src/rss/Shared/RssElement.cs                       |   41 -
 src/rss/Shared/RssEnumerators.cs                   |   68 --
 71 files changed, 49 insertions(+), 12179 deletions(-)

commit 6c81897f15b1cdf6b38435b5e3aa71443e88ae72
Author: Alexander Shopov <ash@contact.bg>
Date:   2005-06-10 08:00:04 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2005-06-10  Alexander Shopov  <ash@contact.bg>
    
    	* bg.po: Updated Bulgarian translation by
    	Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |   7 +-
 po/bg.po     | 248 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 146 insertions(+), 109 deletions(-)

commit 3b5fb608cda8a407ddc5fde6c1513bf0606da950
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:   2005-06-04 03:26:44 +0000

    Updated Traditional Chinese translation.
    
    2005-06-04  Chao-Hsiung Liao  <j_h_liau@yahoo.com.tw>
    
            * zh_TW.po: Updated Traditional Chinese translation.

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/zh_TW.po  | 391 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 400 insertions(+), 1 deletion(-)

commit fc0336a99f0b25b4e2569d97d7570769983eb2c3
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   2005-05-20 11:51:02 +0000

    Updated German translation.
    
    2005-05-20  Frank Arnold  <farnold@cvs.gnome.org>
    
    	* de.po: Updated German translation.

 po/ChangeLog |  4 ++++
 po/de.po     | 67 ++++++++++++++++++++++++++++++------------------------------
 2 files changed, 38 insertions(+), 33 deletions(-)

commit 5446542a6b2dc01bc087738cc5879abc9964fc73
Author: Adam Weinberger <adamw@gnome.org>
Date:   2005-05-19 17:48:17 +0000

    Updated Canadian English translation.
    
    2005-05-19  Adam Weinberger  <adamw@gnome.org>
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 197 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 100 insertions(+), 101 deletions(-)

commit de5d0732176356bcea051f098b5db7543ef91872
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-15 11:54:18 +0000

    Added - Fixes #302579 an #170644 - Patch from Heath Harrelson to escape
    
    2005-05-15  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs:
    	* src/FeedUpdater.cs:
    	* src/ItemView.cs:
    	* src/Makefile.am:
    	* src/HtmlUtils.cs: Added
    	- Fixes #302579 an #170644
    	- Patch from Heath Harrelson to escape and strip titles from HTML.

 ChangeLog          | 10 ++++++++
 src/Channel.cs     | 12 ++++-----
 src/FeedUpdater.cs |  4 +--
 src/HtmlUtils.cs   | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/ItemView.cs    |  5 ++--
 src/Makefile.am    |  1 +
 6 files changed, 94 insertions(+), 10 deletions(-)

commit 4266311ca7941a7a0936be696e677b75909aa9b0
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2005-05-14 21:23:56 +0000

    Hungarian translation updated.
    
    2005-05-14  Gabor Kelemen  <kelemeng@gnome.hu>
    
    	* hu.po: Hungarian translation updated.

 po/ChangeLog |  4 ++++
 po/hu.po     | 63 +++++++++++++++++++++++++++++-------------------------------
 2 files changed, 34 insertions(+), 33 deletions(-)

commit 38b88cf91641859bcb5d7bc368f397db151a4bd6
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2005-05-13 19:04:39 +0000

    Translation updated by Taco Witte.
    
    2005-05-13  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Taco Witte.

 po/ChangeLog |   4 ++
 po/nl.po     | 208 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 109 insertions(+), 103 deletions(-)

commit 0efd40b5217fe3d9f1faf2050196cfb622c3626c
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2005-05-12 22:30:06 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 211 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 115 insertions(+), 100 deletions(-)

commit 2ac4209c73229778cc58c165d9208b7d5639d70a
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2005-05-12 09:45:47 +0000

    Updated Czech translation.
    
    2005-05-12  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 200 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 103 insertions(+), 101 deletions(-)

commit e1f066033ad3ba2c15ab83630235ee8cd59b8fff
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-08 23:09:50 +0000

    Release 1.8.0
    
    
    2005-05-09  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.8.0
    
    	* NEWS: Updated for 1.8.0

 ChangeLog |  8 +++++++-
 NEWS      | 15 +++++++++++++++
 2 files changed, 22 insertions(+), 1 deletion(-)

commit 89c8cc7bed168be232c1310a335924177419b508
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-08 23:00:17 +0000

    Bumped to 1.8 Listen to button pressed on the event box.
    
    2005-05-09  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in: Bumped to 1.8
    	* src/TrayIcon.cs: Listen to button pressed on the event box.

 ChangeLog       | 5 +++++
 configure.in    | 2 +-
 src/TrayIcon.cs | 2 ++
 3 files changed, 8 insertions(+), 1 deletion(-)

commit f496dbfd3b8c06224d7bf376002b7d6269f56dd7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-08 22:53:56 +0000

    - Fix bug #302982.
    
    
    2005-05-09  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.desktop.in.in:
    	- Fix bug #302982.

 ChangeLog          |   5 ++
 blam.desktop.in.in |   4 +-
 po/ChangeLog       |   4 ++
 po/sv.po           | 201 +++++++++++++++++++++++++++--------------------------
 4 files changed, 112 insertions(+), 102 deletions(-)

commit 9521a557a3274139bf04cf8eb7c8203d04ef0fec
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-08 22:49:22 +0000

    - Keep a reference on the Bacon message handler so that it doesn't get
    
    
    2005-05-09  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	- Keep a reference on the Bacon message handler so that it doesn't
    	  get garbage collected.
    	- Fixes bug #302142.

 ChangeLog          | 7 +++++++
 src/Application.cs | 5 ++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 9d10502f03a694bfb81de07df07ffcfa212695fa
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-06 08:10:27 +0000

    - Fixed leak in mozilla wrapping code.
    
    2005-05-06  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-gecko-utils.cpp:
    	- Fixed leak in mozilla wrapping code.

 ChangeLog                    |  5 +++++
 libblam/blam-gecko-utils.cpp | 15 ++++-----------
 2 files changed, 9 insertions(+), 11 deletions(-)

commit 02a55f8e65ac009d60318be1eacc32735b91578d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-05-06 07:56:10 +0000

    Use IfModifiedSince property insted of manually setting the property on
    
    2005-05-06  Mikael Hallendal  <micke@imendio.com>
    
    	* src/FeedUpdater.cs: Use IfModifiedSince property insted of manually
    	  setting the property on the request.
    	- Fixes problem on Mono 1.1.7, bug #303194
    	- Patch from Peter Johanson.

 ChangeLog           | 7 +++++++
 src/.cvsignore      | 1 +
 src/FeedUpdater.cs  | 6 +++---
 src/atom/.cvsignore | 1 +
 src/rss/.cvsignore  | 1 +
 5 files changed, 13 insertions(+), 3 deletions(-)

commit 1e60f75d8d12401e5b60e44282c3d5af25f67f5d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-04-24 13:12:57 +0000

    Added contributors file.
    
    
    2005-04-24  Mikael Hallendal  <micke@imendio.com>
    
    	* CONTRIBUTORS: Added contributors file.

 CONTRIBUTORS | 9 +++++++++
 ChangeLog    | 5 +++++
 2 files changed, 14 insertions(+)

commit 84c5609ff05800699492c162f1d3a66b69a57383
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-04-24 13:05:04 +0000

    - Bumped mono requirement to 1.1.4 Added Support for Atom feeds. Added
    
    
    2005-04-24  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in:
    	- Bumped mono requirement to 1.1.4
    	* src/*: Added Support for Atom feeds.
    	* src/atom/*: Added Atom.NET
    	* src/egg-sharp.cs: Fixed a bunch of warnings about unused variables

 ChangeLog                                          |    8 +
 configure.in                                       |    7 +-
 src/Channel.cs                                     |   94 ++
 src/ChannelDialog.cs                               |    5 +
 src/Dialogs.cs                                     |    2 -
 src/FeedUpdater.cs                                 |  328 ++++--
 src/ItemList.cs                                    |    2 -
 src/Makefile.am                                    |    7 +-
 src/Opml.cs                                        |    3 -
 src/atom/.cvsignore                                |    3 +
 .../DublinCore/DcElement.cs                        |  145 +++
 src/atom/Atom.AdditionalElements/ScopedElement.cs  |  117 ++
 .../ScopedElementCollection.cs                     |  122 ++
 .../Atom.Core.Collections/AtomContentCollection.cs |  145 +++
 .../Atom.Core.Collections/AtomEntryCollection.cs   |  120 ++
 .../Atom.Core.Collections/AtomLinkCollection.cs    |  145 +++
 .../AtomPersonConstructCollection.cs               |  122 ++
 src/atom/Atom.Core/AtomContent.cs                  |  226 ++++
 src/atom/Atom.Core/AtomContentConstruct.cs         |  306 +++++
 src/atom/Atom.Core/AtomDateConstruct.cs            |  332 ++++++
 src/atom/Atom.Core/AtomElement.cs                  |  345 ++++++
 src/atom/Atom.Core/AtomEntry.cs                    |  656 +++++++++++
 src/atom/Atom.Core/AtomFeed.cs                     |  660 +++++++++++
 src/atom/Atom.Core/AtomGenerator.cs                |   89 ++
 src/atom/Atom.Core/AtomLink.cs                     |  251 +++++
 src/atom/Atom.Core/AtomPersonConstruct.cs          |  230 ++++
 src/atom/Atom.Core/Enums.cs                        | 1185 ++++++++++++++++++++
 src/atom/Atom.Core/Exceptions.cs                   |  224 ++++
 src/atom/Atom.Utils/DefaultValues.cs               |  162 +++
 src/atom/Atom.Utils/Utils.cs                       |  428 +++++++
 src/atom/AtomReader.cs                             |  103 ++
 src/atom/AtomWriter.cs                             |  148 +++
 src/atom/Makefile.am                               |   47 +
 src/atom/README.txt                                |    2 +
 src/atom/mediatypes.txt                            |  550 +++++++++
 src/atom/mvpxml/XPathNavigatorReader.cs            |  764 +++++++++++++
 src/atom/mvpxml/XmlNamespaces.cs                   |   88 ++
 src/egg-sharp.cs                                   |    6 +-
 38 files changed, 8066 insertions(+), 111 deletions(-)

commit edc12791676eb42bf2d9a8a706c97550be602599
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:   2005-04-20 22:36:08 +0000

    Hungarian translation updated.
    
    2005-04-21  Gabor Kelemen  <kelemeng@gnome.hu>
    
    	* hu.po: Hungarian translation updated.

 po/ChangeLog |   4 ++
 po/hu.po     | 199 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 109 insertions(+), 94 deletions(-)

commit fef31ed6f2ffc098c5d0dd66a63fdc71fa8d3eb2
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-04-20 22:34:34 +0000

    Use automake 1.9
    
    
    2005-04-20  Mikael Hallendal  <micke@imendio.com>
    
    	* autogen.sh: Use automake 1.9

 ChangeLog  | 4 ++++
 autogen.sh | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 9cb47c0af7eec0f440658223461d6cab7e74d794
Author: Heath Harrelson <heath@pointedstick.net>
Date:   2005-04-07 07:53:37 +0000

    - Made setting If-Modified-Since and If-None-Match headers conditional
    
    
    2005-04-07  Heath Harrelson <heath@pointedstick.net>
    	* src/FeedUpdater.cs:
    	- Made setting If-Modified-Since and If-None-Match headers conditional
    	  upon channel.LastModified and channel.ETag not being blank.
    	- Fixes bug 166833.

 ChangeLog          |  6 ++++++
 src/FeedUpdater.cs | 10 ++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit ca8a5758fce67a8c64175e7ebe6438a240927272
Author: Markus Jonsson <marjo691@student.liu.se>
Date:   2005-04-05 18:45:19 +0000

    - Removed eggtrayicon.[ch], use C# implementation instead.
    
    
    2005-04-05  Markus Jonsson  <marjo691@student.liu.se>
    
    	* libblam/Makefile.am:
    	* libblam/eggtrayicon.c:
    	* libblam/eggtrayicon.h:
    	- Removed eggtrayicon.[ch], use C# implementation instead.
    	* src/Makefile.am:
    	* src/TrayIcon.cs:
    	* src/egg-sharp.cs:
    	- Added egg-sharp with a C# implementation of the eggtray icon.

 ChangeLog             |  11 ++
 libblam/Makefile.am   |   4 +-
 libblam/eggtrayicon.c | 469 --------------------------------------------------
 libblam/eggtrayicon.h |  77 ---------
 src/Makefile.am       |   5 +-
 src/TrayIcon.cs       |  31 ++--
 src/egg-sharp.cs      | 239 +++++++++++++++++++++++++
 7 files changed, 266 insertions(+), 570 deletions(-)

commit 11732304095fc81d47e6efb87cb34962e1597762
Author: Steven Michael Murphy <smurphy@src.gnome.org>
Date:   2005-04-01 15:35:22 +0000

    Added new Language, Kinyarwanda (rw), to this package

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/rw.po     | 490 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 499 insertions(+), 1 deletion(-)

commit c1acd306296634ed238db5ae10fbfefbda03dbe9
Author: Josep Puigdemont i Casamajó <joseppc@src.gnome.org>
Date:   2005-03-26 15:28:06 +0000

    Updated Catalan translation.

 po/ChangeLog |   4 ++
 po/ca.po     | 215 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 125 insertions(+), 94 deletions(-)

commit 770fd3032ecc40d6b623a1e39f57257ea1b8cf08
Author: Christian Rose <menthos@menthos.com>
Date:   2005-03-26 12:17:19 +0000

    Updated Swedish translation.
    
    2005-03-26  Christian Rose  <menthos@menthos.com>
    
    	* sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 51 +++++++++++++++++++++++++++++++--------------------
 2 files changed, 35 insertions(+), 20 deletions(-)

commit 97b83234b925ac1d19adfb6f2d4d5f6eab5f4625
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2005-03-16 09:20:43 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog | 4 ++++
 po/en_CA.po  | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 0789f47baa0eea0675ddc82fdfb471e90fd480b6
Author: Guilherme de S. Pastore <gpastore@src.gnome.org>
Date:   2005-03-15 23:10:03 +0000

    Updated Brazilian Portuguese (pt_BR) translation.

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 150 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 83 insertions(+), 71 deletions(-)

commit ff9d0f717e570ee0924fb7d00a3553b640ab800b
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2005-03-07 20:13:47 +0000

    Translation updated by Taco Witte.
    
    2005-03-07  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Taco Witte.

 po/ChangeLog |   4 ++
 po/nl.po     | 153 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 85 insertions(+), 72 deletions(-)

commit 4c9b1e868478d3c3bc862431adfe4aa0ef0ba603
Author: Alessio Frusciante <algol@src.gnome.org>
Date:   2005-02-27 18:19:59 +0000

    Added Italian translation.

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   5 +
 po/it.po     | 398 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 408 insertions(+), 1 deletion(-)

commit 24b2e262b53c23f773f749cfe28903bb2a809a55
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   2005-02-22 10:36:19 +0000

    Updated Albanian translation.
    
    2005-02-22  Laurent Dhima  <laurenti@alblinux.net>
    
    	* sq.po: Updated Albanian translation.

 po/ChangeLog |   4 ++
 po/sq.po     | 201 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 145 insertions(+), 60 deletions(-)

commit 7bd5c00bf78998f78a810ee0fdef9e6b566481e7
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2005-02-19 04:59:46 +0000

    Updated Finnish translation

 po/ChangeLog |   4 ++
 po/fi.po     | 207 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 120 insertions(+), 91 deletions(-)

commit ba01babdfa3cbfb3270aece9150c7ca92a012987
Author: David Lodge <dave@cirt.net>
Date:   2005-02-15 22:39:24 +0000

    Update English (British) translation.
    
    2005-02-15  David Lodge  <dave@cirt.net>
    
    	* en_GB.po: Update English (British) translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 196 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 104 insertions(+), 96 deletions(-)

commit 31e0efda40e0bfbfeaa5ba9e107090dab57d6951
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2005-02-06 22:43:13 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 47 +++++++++++++++++++++++++++--------------------
 2 files changed, 31 insertions(+), 20 deletions(-)

commit 729e50237ba893311a190b6a02d8f1a1504dd715
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2005-02-06 16:28:44 +0000

    Updated Czech translation.
    
    2005-02-06  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 153 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 83 insertions(+), 74 deletions(-)

commit 683bbf80cb30c8793e565c589022555ba409b643
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   2005-02-05 13:32:11 +0000

    Updated German translation.
    
    2005-02-05  Frank Arnold  <farnold@cvs.gnome.org>
    
    	* de.po: Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 194 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 106 insertions(+), 92 deletions(-)

commit 0bbac7f85cee5b49f79d53a1008b0b07e095e6cd
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-02-04 22:57:57 +0000

    Added main_window_state key
    
    
    2005-02-04  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.schemas.in: Added main_window_state key
    	* src/Application.cs:
    	- Patch from Peter Rother that doesn't save window size and position if
    	  maximized.
    	- I changed it so that it restores the values even if maximized.
    	- Fixes bug #165917

 ChangeLog          |  9 +++++++++
 blam.schemas.in    | 14 ++++++++++++++
 src/Application.cs | 46 +++++++++++++++++++++++++++++-----------------
 3 files changed, 52 insertions(+), 17 deletions(-)

commit 0a396c41bc8330cfec9c5b1e8ad01b69dd9fbe56
Author: Alexander Winston <alexander.winston@comcast.net>
Date:   2005-01-13 21:48:54 +0000

    Updated Canadian English translation.
    
    2005-01-13  Alexander Winston  <alexander.winston@comcast.net>
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 127 +++++++++++++++++++++++++++++------------------------------
 2 files changed, 66 insertions(+), 65 deletions(-)

commit c30b83b83467c9da068ddf02d73d9664aefdf0e7
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2005-01-11 00:04:59 +0000

    Update Update
    
    2005-01-11  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Update
    	* no.po: Update

 po/ChangeLog |   5 ++
 po/nb.po     | 160 ++++++++++++++++++++++++++++++++---------------------------
 po/no.po     | 160 ++++++++++++++++++++++++++++++++---------------------------
 3 files changed, 181 insertions(+), 144 deletions(-)

commit ac5e658f09ceb0e4471d37b2e7e9d4d016088e26
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-01-09 22:38:36 +0000

    Don't refresh when run again.
    
    
    2005-01-09  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs: Don't refresh when run again.

 ChangeLog          | 4 ++++
 src/Application.cs | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit b230c907d20218e06551745a92dde64fbee34de9
Author: Frank Arnold <farnold@cvs.gnome.org>
Date:   2005-01-09 07:48:33 +0000

    Updated German translation.
    
    2005-01-09  Frank Arnold  <farnold@cvs.gnome.org>
    
    	* de.po: Updated German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 200 ++++++++++++++++++++++++++++-------------------------------
 2 files changed, 99 insertions(+), 105 deletions(-)

commit fac58bfc301ba6f0806ed045416a07857f57d2bf
Author: Christian Rose <menthos@menthos.com>
Date:   2005-01-08 13:07:43 +0000

    Fixed some typos and made some other minor fixes in the Swedish
    
    2005-01-08  Christian Rose  <menthos@menthos.com>
    
    	* sv.po: Fixed some typos and made some other minor fixes
    	in the Swedish translation.

 po/ChangeLog |  5 +++++
 po/sv.po     | 24 ++++++++++++------------
 2 files changed, 17 insertions(+), 12 deletions(-)

commit 1abfa7925d0d624cf8f35b8f10dafb65a42abfa0
Author: Mikael Hallendal <micke@imendio.com>
Date:   2005-01-08 01:58:13 +0000

    Release 1.6.1
    
    2005-01-08  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.6.1
    
    	* NEWS:
    	* configure.in:
    	- Updated for 1.6.1

 ChangeLog    | 8 ++++++++
 NEWS         | 8 ++++++++
 configure.in | 2 +-
 3 files changed, 17 insertions(+), 1 deletion(-)

commit 6a00c5b8ee6c0180f21486d60c970f659650f6f5
Author: Žygimantas Beručka <uid0@akl.lt>
Date:   2004-12-21 20:03:15 +0000

    Added "lt" to ALL_LINGUAS. Added Lithuanian translation by Marius
    
    2004-12-21  Žygimantas Beručka  <uid0@akl.lt>
    
    	* configure.in: Added "lt" to ALL_LINGUAS.
    	* po/lt.po: Added Lithuanian translation by Marius Karnauskas.

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |  12 +-
 po/lt.po     | 386 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 399 insertions(+), 5 deletions(-)

commit 7b64838886280bab300fd202a1483aac62704ea1
Author: I�aki Larra�aga <dooteo@euskalgnu.org>
Date:   2004-12-13 21:11:37 +0000

    Updated Basque translation.
    
    2004-12-13  I�aki Larra�aga  <dooteo@euskalgnu.org>
    
            * eu.po: Updated Basque translation.

 po/ChangeLog |   4 +
 po/eu.po     | 264 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 155 insertions(+), 113 deletions(-)

commit c7f2c3e2751795e8269fe0c4c60f23cf8e58b1e7
Author: Christoffer Olsen <colsen@src.gnome.org>
Date:   2004-11-24 23:07:27 +0000

    Added X-GNOME-Bugzilla-Version header, Bug Buddy love

 ChangeLog          | 10 ++++++++++
 blam.desktop.in    | 14 --------------
 blam.desktop.in.in | 15 +++++++++++++++
 configure.in       |  1 +
 po/POTFILES.in     |  2 +-
 5 files changed, 27 insertions(+), 15 deletions(-)

commit d9571e7a9d8a2186173e87f56bcdb7bca93fc251
Author: Laszlo Dvornik <dvornik@gnome.hu>
Date:   2004-11-03 12:04:03 +0000

    Added hu to ALL_LINGUAS.
    
    2004-11-03  Laszlo Dvornik  <dvornik@gnome.hu>
    
    	* configure.in: Added hu to ALL_LINGUAS.

 configure.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 437740da7c9a21026a3c8848b6bde69d019c6a68
Author: Laszlo Dvornik <dvornik@gnome.hu>
Date:   2004-11-03 12:03:58 +0000

    Hungarian translation added.
    
    2004-11-03  Laszlo Dvornik  <dvornik@gnome.hu>
    
    	* hu.po: Hungarian translation added.

 po/ChangeLog |   4 +
 po/hu.po     | 384 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 388 insertions(+)

commit 6c4bb95feeec68f28cb05c0a9693cdb802f7ed17
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-11-03 09:15:43 +0000

    Added Polish translation from Dominik Zablotny

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/pl.po     | 389 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 398 insertions(+), 1 deletion(-)

commit 764e8257045579996f51d5ec2d46f774b3c5b746
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-10-31 13:48:05 +0000

    Translation updated by Taco Witte.
    
    2004-10-31  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Taco Witte.

 po/ChangeLog |  4 ++++
 po/nl.po     | 39 ++++++++++++++++++++++++++++-----------
 2 files changed, 32 insertions(+), 11 deletions(-)

commit 88f9eb67179eaa75a36e8d809f1abd60d44a01f3
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-10-28 04:05:33 +0000

    ...

 src/Application.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3f01f6b4ec7847990f4c7640a5347dcab18ce2ca
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-28 04:04:52 +0000

    - Hide main window on Esc.
    
    
    2004-10-28  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
            - Hide main window on Esc.

 ChangeLog          | 5 +++++
 src/Application.cs | 3 +++
 2 files changed, 8 insertions(+)

commit 25707cd66fa9b83348b80b1bab9ae318e5409e9c
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-10-27 14:25:41 +0000

    da.po: quick fix

 po/da.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 9da3ffcf87edb0fd991c79af485784cfa0764c96
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-10-26 21:31:59 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 202 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 146 insertions(+), 60 deletions(-)

commit 7dfa380f4aae71f171ecaa844478824d1523658d
Author: Iain McCoy <iain@mccoy.id.au>
Date:   2004-10-26 12:56:03 +0000

    - changed OpmlReader to use the title attribute of an outline when the
    
    
    2004-10-26  Iain McCoy <iain@mccoy.id.au>
    
           * src/Opml.cs:
           - changed OpmlReader to use the title attribute of an outline when the
             text attribute is not found. This makes bloglines' opml files work.
           - Fixed bug #155665

 ChangeLog   | 7 +++++++
 src/Opml.cs | 7 ++++++-
 2 files changed, 13 insertions(+), 1 deletion(-)

commit 2a4da7cce81867acc9797ca8b3de763b5f1c0267
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-10-24 16:22:13 +0000

    Update.

 po/ChangeLog |   4 ++
 po/sv.po     | 137 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 80 insertions(+), 61 deletions(-)

commit 64c5f9b3d21efa3cd386c1f914c4ad176fced3e7
Author: Satoru SATOH <ss@gnome.gr.jp>
Date:   2004-10-24 12:16:53 +0000

    Updated Japanese translation.
    
    2004-10-24  Satoru SATOH  <ss@gnome.gr.jp>
    
            * ja.po: Updated Japanese translation.

 po/ja.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ab5ba2446a5f1c244cb58c96f78db81fddd2546f
Author: Satoru Satoh <ssato@src.gnome.org>
Date:   2004-10-24 05:37:05 +0000

    Added Japanese translation (ja.po).

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/ja.po     | 384 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 393 insertions(+), 1 deletion(-)

commit 2a576a22aa6dd78a2eb28803f1df80ec5801982c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-23 16:55:41 +0000

    Use exec when running mono
    
    
    2004-10-23  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.in: Use exec when running mono

 ChangeLog | 4 ++++
 blam.in   | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 3f75c9f8b9f24855d1d4b7818b3dfa132b6f1cbf
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-23 14:52:13 +0000

    - removed some unused h-files.
    
    
    2004-10-23  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-gecko-utils.cpp:
    	- removed some unused h-files.

 ChangeLog                    | 5 +++++
 libblam/blam-gecko-utils.cpp | 7 -------
 2 files changed, 5 insertions(+), 7 deletions(-)

commit 8fd48ba3cc0e164f30211dba3ffe56db6b8888d7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-23 14:14:36 +0000

    Release 1.6.0
    
    
    2004-10-23  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.6.0

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 5a839d93025152f031c318ee118d2560c08bd84b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-23 14:13:55 +0000

    - Added proxy settings to the gecko widget so that images can be fetched.
    
    
    2004-10-23  Mikael Hallendal  <micke@imendio.com>
    
    	* icons/Makefile.am:
    	* libblam/blam-gecko-utils.cpp:
    	* libblam/blam-gecko-utils.h:
    	* src/ItemView.cs:
    	* src/Proxy.cs:
    	* src/Utils.cs:
            - Added proxy settings to the gecko widget so that images can
              be fetched.

 ChangeLog                    | 11 +++++++++++
 icons/Makefile.am            |  2 +-
 libblam/blam-gecko-utils.cpp | 14 ++++++++++++++
 libblam/blam-gecko-utils.h   |  3 +++
 libblam/eggtrayicon.c        |  2 ++
 src/Application.cs           |  2 +-
 src/Delegates.cs             |  1 +
 src/ItemView.cs              | 10 +++++++++-
 src/Proxy.cs                 | 34 +++++++++++++++++++++++++++++++---
 src/Utils.cs                 |  8 ++++++++
 10 files changed, 81 insertions(+), 6 deletions(-)

commit 3667c826f224b0d50837492b68c935094ecb0e23
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-23 13:16:00 +0000

    Updated Updated for 1.6.0 Bumped version to 1.6.0
    
    
    2004-10-23  Mikael Hallendal  <micke@imendio.com>
    
    	* INSTALL: Updated
    	* NEWS: Updated for 1.6.0
    	* configure.in: Bumped version to 1.6.0

 ChangeLog    |  6 ++++++
 INSTALL      | 13 ++++++++-----
 NEWS         | 13 +++++++++++++
 configure.in |  2 +-
 4 files changed, 28 insertions(+), 6 deletions(-)

commit c69d354cc8155a60f5b0de6e163f529e56289350
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-23 13:00:02 +0000

    - Remove spinner and printing
    
    
    2004-10-23  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
            - Remove spinner and printing
    	* src/Opml.cs:
            - Fix reading of liferia feeds (and possible bloglines)
            - Fixes bug #155665
    	* src/blam.glade:
            - Removed printing menu item

 ChangeLog          | 10 ++++++++++
 src/Application.cs | 20 ++++++++++----------
 src/Opml.cs        | 49 +++++++++++--------------------------------------
 src/blam.glade     | 30 ++++++++----------------------
 4 files changed, 39 insertions(+), 70 deletions(-)

commit 7ef0c9cec584b1a787a91846e72f1dc40e0ec81a
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-22 20:08:46 +0000

    - Don't crash if collection.xml is empty - Fixes bug #155663
    
    
    2004-10-22  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelCollection.cs:
            - Don't crash if collection.xml is empty
            - Fixes bug #155663

 ChangeLog                |  6 ++++++
 src/ChannelCollection.cs | 10 ++++++++--
 2 files changed, 14 insertions(+), 2 deletions(-)

commit 339a85de0882be06af77e38a6622f6ec915912e1
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-21 23:01:13 +0000

    - Require Gecko# 0.6
    
    2004-10-22  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in:
    	* src/ItemView.cs:
    	* README:
    	- Require Gecko# 0.6

 ChangeLog       | 7 +++++++
 README          | 2 +-
 configure.in    | 2 +-
 src/ItemView.cs | 2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)

commit 2129c4635738e11c8f1e4f78c19bf77aa5222c59
Author: Iñaki Larrañaga <dooteo@euskalgnu.org>
Date:   2004-10-21 21:59:20 +0000

    Updated Basque translation.
    
    2004-10-21  Iñaki Larrañaga  <dooteo@euskalgnu.org>
    
            * eu.po: Updated Basque translation.

 po/ChangeLog |   4 ++
 po/eu.po     | 186 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 128 insertions(+), 62 deletions(-)

commit 5a1ebb83049fbd24eac292fae3977a8bf9b7e201
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-10-21 17:17:57 +0000

    cleanup

 libblam/blam-gecko-utils.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c5470a7cf66e947dd7f187fdf17dd01ccb045991
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-21 17:16:28 +0000

    - Copy/pasting gecko init stuff also cleaned the init code up some. - Now
    
    
    2004-10-21  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in:
    	* libblam/Makefile.am:
    	* libblam/blam-gecko-utils.cpp:
    	* src/Application.cs:
    	* src/ItemView.cs:
    	* src/Utils.cs:
            - Copy/pasting gecko init stuff also cleaned the init code up
              some.
            - Now the scrollbars are rendered correctly.

 .cvsignore                   |   1 +
 ChangeLog                    |  12 ++++
 configure.in                 | 127 +++++++++++++++++++++++++++++++++++++++++--
 icons/.cvsignore             |   1 +
 libblam/.cvsignore           |   1 +
 libblam/Makefile.am          |  16 +++---
 libblam/blam-gecko-utils.cpp | 112 ++++++++++++++++++++++++++++++++++----
 src/Application.cs           |   2 +
 src/ItemView.cs              |   7 ++-
 src/Utils.cs                 |   4 +-
 10 files changed, 254 insertions(+), 29 deletions(-)

commit 6645340cc02d47bf9cb232f170661d8e6a65ecaa
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-10-21 00:21:46 +0000

    removed debug outputs

 src/FeedUpdater.cs | 2 +-
 src/ItemView.cs    | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

commit c84985742eae6502d59fffbc08622933fd4ce403
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-10-21 00:13:39 +0000

    fixed project name

 autogen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3742bb2f87ff544158514aa33b7fab95bb61e901
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-10-21 00:11:16 +0000

    Added information about gecko-sharp

 README | 1 +
 1 file changed, 1 insertion(+)

commit c40739e0e4bf7a3027f26299c09a94d72c6fe28b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-21 00:08:46 +0000

    - Set mozilla home and stuff
    
    
    2004-10-21  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am:
    	* blam.in:
            - Set mozilla home and stuff
    	* configure.in:
            - Depend on gecko-sharp, not gtkhtml#
            * icons/Makefile.am:
            - Install the rounded corners
    	* libblam/Makefile.am:
    	* libblam/blam-gecko-utils.cpp:
    	* libblam/blam-gecko-utils.h:
            - Added, set fonts for gecko widget
    	* src/Application.cs:
            - Don't listen for Gtkhtml signals
    	* src/Delegates.cs:
            - Added delegate for OnUrl
    	* src/FeedUpdater.cs:
            - Fix bug that caused a crash
    	* src/ItemView.cs:
            - Use Gecko instead of Gtkhtml.
            - Solves a bunch of issues
    	* src/Makefile.am:
            - Don't embed the rounded courners in the assemly.
    	* src/PreferencesDialog.cs:
            - Added font paths
    	* src/Utils.cs:
            - Added Gecko utils wrappers
            * src/Cache.cs:
            - Removed, Gecko handles it's own cache

 ChangeLog                    |  31 ++++
 Makefile.am                  |   2 +-
 blam.in                      |   8 +-
 configure.in                 |  44 +++++-
 icons/Makefile.am            |  13 +-
 libblam/Makefile.am          |  13 +-
 libblam/blam-gecko-utils.cpp | 128 +++++++++++++++
 libblam/blam-gecko-utils.h   |  41 +++++
 src/Application.cs           |  84 +++++-----
 src/Cache.cs                 |  79 ----------
 src/Channel.cs               |   6 +-
 src/ChannelCollection.cs     |   2 +
 src/Delegates.cs             |   1 +
 src/FeedUpdater.cs           |  17 +-
 src/ItemList.cs              |   2 +-
 src/ItemView.cs              | 360 ++++++++++++++-----------------------------
 src/MainloopEmitter.cs       |   2 +-
 src/Makefile.am              |   6 -
 src/PreferencesDialog.cs     |   3 +
 src/Printing.cs              |   7 +-
 src/Utils.cs                 |  14 ++
 src/blam.glade               |  21 +--
 22 files changed, 470 insertions(+), 414 deletions(-)

commit e7ce9cca16431fda4c13c69f27f6574d40a43844
Author: Todd Berman <tberman@off.net>
Date:   2004-10-19 22:52:15 +0000

    - Keep a reference to the delegate, so mono doesn't gc it.
    
    2004-10-19  Todd Berman  <tberman@off.net>
    
            * src/ChannelList.cs:
            - Keep a reference to the delegate, so mono doesn't gc it.

 ChangeLog          | 5 +++++
 src/ChannelList.cs | 5 ++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

commit 58bb92988548adb81a947a70262f50b1c5fa38ce
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   2004-10-17 13:59:07 +0000

    Updated pt_BR translation

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 30 +++++++++++++++++++++++-------
 2 files changed, 27 insertions(+), 7 deletions(-)

commit 2c256fc170b1fba79bf4a2220a71669c718818af
Author: David Lodge <dave@cirt.net>
Date:   2004-10-17 13:01:17 +0000

    Updated British English translation.
    
    2004-10-17  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 30 +++++++++++++++++++++++-------
 2 files changed, 27 insertions(+), 7 deletions(-)

commit 5edc5d57f404c79b2c6bc9fb05c1a523a797de91
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-10-15 23:12:46 +0000

    Updated Czech translation.
    
    2004-10-16  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 30 +++++++++++++++++++++++-------
 2 files changed, 27 insertions(+), 7 deletions(-)

commit 7747e357230756ff8b1937f62977334412e96dc9
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-10-14 20:05:00 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 30 +++++++++++++++++++++++-------
 2 files changed, 27 insertions(+), 7 deletions(-)

commit 20f2ed39f06dee1084de269404ef6463351e7bd7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-14 13:15:04 +0000

    - Scroll to first unread, if no unread, scroll to top or bottom depending
    
    
    2004-10-14  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemList.cs:
    	- Scroll to first unread, if no unread, scroll to top or bottom
    	  depending on sort order.
    	- Fixes bug #151164

 ChangeLog       |  7 +++++++
 src/ItemList.cs | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

commit f2877549eb11d3bf5e17c5b840164104ed6a6f47
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-14 09:44:27 +0000

    - Added main_window_position_{x,y}
    
    
    2004-10-14  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.schemas.in:
    	- Added main_window_position_{x,y}
    	* src/Application.cs:
    	- Store and restore main window position.
    	- Patch from Johan Hammar.

 ChangeLog          |  8 ++++++++
 blam.schemas.in    | 28 ++++++++++++++++++++++++++++
 src/Application.cs | 14 ++++++++++++++
 3 files changed, 50 insertions(+)

commit 871ebfd3bd7b51a8cdadc440e04fdb53d4199290
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-10-14 09:39:53 +0000

    - Update number of unread items when channel is removed - Patch from Johan
    
    
    2004-10-14  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	- Update number of unread items when channel is removed
    	- Patch from Johan Hammar.

 ChangeLog          | 6 ++++++
 src/Application.cs | 1 +
 2 files changed, 7 insertions(+)

commit 52af7dda18d57ea0a7a9b3ffa90d0fc4667ec884
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   2004-10-10 02:17:36 +0000

    Updating pt_BR translation

 po/ChangeLog |  4 ++++
 po/pt_BR.po  | 31 +++++++++++++++++--------------
 2 files changed, 21 insertions(+), 14 deletions(-)

commit b365197ce107205b409fa1a7524a28a35fd4aeb7
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-10-08 23:22:23 +0000

    Translation updated by Taco Witte.
    
    2004-10-09  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Taco Witte.

 po/ChangeLog |  4 ++++
 po/nl.po     | 49 ++++++++++++++++++++++++++++---------------------
 2 files changed, 32 insertions(+), 21 deletions(-)

commit d0c90123ce008324cb0d4b43c531be173cb910d0
Author: David Lodge <dave@cirt.net>
Date:   2004-10-05 21:43:07 +0000

    Updated British English translation.
    
    2004-10-05  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 142 +++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 84 insertions(+), 62 deletions(-)

commit 24eedc9d8c6ce877d6aefde3f0450ebe9fe8c856
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2004-09-29 21:14:08 +0000

    Add «nb» to ALL_LINGUAS.
    
    2004-09-29  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* configure.in: Add «nb» to ALL_LINGUAS.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 271cb1dde808773df32007bb9485cacbb406eed9
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2004-09-29 21:13:09 +0000

    Update Update
    
    2004-09-29  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* nb.po: Update
    	* no.po: Update

 po/ChangeLog |   5 +
 po/nb.po     | 372 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/no.po     | 288 ++++++++++++++++++++++++++++++++++++---------
 3 files changed, 609 insertions(+), 56 deletions(-)

commit f7ad575516c5c7b4109d6b40962ed1d0e724b122
Author: Alexander Shopov <ash@contact.bg>
Date:   2004-09-28 17:48:25 +0000

    Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2004-09-28  Alexander Shopov  <ash@contact.bg>
    
    	* bg.po: Updated Bulgarian translation by
    	Vladimir Petkov <vpetkov@i-space.org>

 po/ChangeLog |  5 +++++
 po/bg.po     | 45 +++++++++++++++++++++++++--------------------
 2 files changed, 30 insertions(+), 20 deletions(-)

commit 4cd300e64a56a1f96830309db2871b3e71425054
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   2004-09-25 11:38:42 +0000

    Updated Catalan translation by Aleix Badia i Bosch.

 po/ChangeLog |   5 +
 po/ca.po     | 372 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 324 insertions(+), 53 deletions(-)

commit 412153ffd0886d5b10efa7eba9824df8d45274ef
Author: Peter Johanson <latexer@gentoo.org>
Date:   2004-09-23 21:04:11 +0000

    Cast items to Gtk.Container in order to see the Container.Child get
    
    
    2004-09-23  Peter Johanson  <latexer@gentoo.org>
    
    	* src/Application.cs: Cast items to Gtk.Container in order
    	  to see the Container.Child get accessor.
    	* src/ChannelList.cs:
    	* src/ItemList.cs:
    	- Keep class local references to delegates to prevent them from
        	  being GCed. Needed for Mono 1.1

 ChangeLog          | 9 +++++++++
 src/Application.cs | 6 +++---
 src/ChannelList.cs | 4 +++-
 src/ItemList.cs    | 4 +++-
 4 files changed, 18 insertions(+), 5 deletions(-)

commit 93da0af361499d0de2690d6ef1b25c213d928daf
Author: Ilkka Tuohela <ituohela@src.gnome.org>
Date:   2004-09-23 19:25:32 +0000

    Added Finnish translation

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   4 +
 po/fi.po     | 375 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 384 insertions(+), 1 deletion(-)

commit 4743c73683a8eb86f204741450756aa875b8f4d4
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-23 18:32:26 +0000

    Updated German translation from Thorsten Ball.
    
    
    2004-09-23  Mikael Hallendal  <micke@imendio.com>
    
    	* de.po: Updated German translation from Thorsten Ball.

 po/ChangeLog |  4 ++++
 po/de.po     | 74 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 43 insertions(+), 35 deletions(-)

commit 94b945afac3953852bf8c15e1413763f89ed7ef3
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-09-23 12:46:27 +0000

    flipp

 autogen.sh   | 2 +-
 configure.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit a2d143b465e4c8e6b997322e3b01aa92960a1749
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-22 10:44:16 +0000

    Updated German translation from Thorsten Ball.
    
    
    2004-09-22  Mikael Hallendal  <micke@imendio.com>
    
    	* de.po: Updated German translation from Thorsten Ball.

 po/ChangeLog |  11 +-
 po/de.po     | 776 ++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 399 insertions(+), 388 deletions(-)

commit 644ab8970ba5ea689ca94a5f6f109bcecf925663
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-21 14:25:22 +0000

    Updated to actually contain information.
    
    2004-09-21  Mikael Hallendal  <micke@imendio.com>
    
    	* INSTALL: Updated to actually contain information.

 ChangeLog |  4 ++++
 INSTALL   | 20 +++++++++++++++++++-
 README    |  6 +++---
 3 files changed, 26 insertions(+), 4 deletions(-)

commit b3ca2c56cdba9f61f4380c21072c3be5c79c39f2
Author: German Poo-Caaman~o <gpoo@ubiobio.cl>
Date:   2004-09-21 02:11:46 +0000

    Updated Spanish translation.
    
    2004-09-20  German Poo-Caaman~o  <gpoo@ubiobio.cl>
    
    	* es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 146 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 88 insertions(+), 62 deletions(-)

commit 2cf73c686aef1004a8ce691fa3cf4507d2c65b52
Author: Alexander Shopov <ash@contact.bg>
Date:   2004-09-19 14:02:16 +0000

    Added Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
    
    2004-09-19  Alexander Shopov  <ash@contact.bg>
    
    	* bg.po: Added Bulgarian translation by
    	Vladimir Petkov <vpetkov@i-space.org>

 ChangeLog    |   4 +
 configure.in |   2 +-
 po/ChangeLog |   5 +
 po/bg.po     | 372 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 382 insertions(+), 1 deletion(-)

commit e5d3a857ef0721af45e74a296e4ef45e300e07ac
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-18 22:21:10 +0000

    - Don't set BLAM! as title when selecting an item. - Reported by Johan
    
    
    2004-09-19  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	- Don't set BLAM! as title when selecting an item.
    	- Reported by Johan Svedberg

 ChangeLog          | 6 ++++++
 src/Application.cs | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

commit b62451bf06c6f2faa840dce5160f3abfad94175d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-18 16:42:27 +0000

    Release 1.4.1
    
    
    2004-09-17  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.4.1

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 310266b35cb6b7317b53022b7981491489c24266
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-18 14:31:41 +0000

    Updated for 1.4.1 Version bumped to 1.4.1
    
    2004-09-18  Mikael Hallendal  <micke@imendio.com>
    
    	* NEWS: Updated for 1.4.1
    	* configure.in: Version bumped to 1.4.1
    
    2004-09-18  Mikael Hallendal  <micke@imendio.com>
    
    	* sv.po: Updated Swedish translation.

 ChangeLog    |  5 +++++
 NEWS         |  8 ++++++++
 configure.in |  2 +-
 po/ChangeLog | 11 +++++++++++
 po/sv.po     | 34 +++++++++++++++++-----------------
 5 files changed, 42 insertions(+), 18 deletions(-)

commit 60bcdd61260af6f92213ae356b4b0c4484ea463f
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-09-16 15:21:40 +0000

    Updated Czech translation.
    
    2004-09-16  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 33 +++++++++++++++++----------------
 2 files changed, 21 insertions(+), 16 deletions(-)

commit 756ff7b0a956ad0f8faf196994ce369d67d960a2
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-09-16 15:12:46 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit 7cb4a81475e135fba09b2189cf579bf75eb72dd7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-15 14:50:08 +0000

    Updated name Changed window title.
    
    2004-09-15  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.desktop.in: Updated name
    	* src/blam.glade: Changed window title.

 ChangeLog       | 5 +++++
 blam.desktop.in | 2 +-
 src/blam.glade  | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

commit bd0938bda8d5090b75e48012a4b304e7c67325d1
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-09-14 14:03:04 +0000

    Translation updated by Elros Cyriatan.
    
    2004-09-14  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |  4 ++++
 po/nl.po     | 42 +++++++++++++++++++++---------------------
 2 files changed, 25 insertions(+), 21 deletions(-)

commit aa86ae58e09aec5d97ffe29e50e2e5b241d18a9f
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   2004-09-12 13:25:13 +0000

    Updating pt_BR translation

 po/ChangeLog |   4 ++
 po/pt_BR.po  | 118 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 69 insertions(+), 53 deletions(-)

commit e9da8048610b78995adbc54ce6b92e54e7ab48c1
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-09-12 13:07:17 +0000

    Updated Czech translation.
    
    2004-09-12  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 10 ++++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit d7b68f2e189959a9affac841af53c0c8cbdb267d
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-09-11 16:44:04 +0000

    Translation updated by Elros Cyriatan.
    
    2004-09-11  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |   4 ++
 po/nl.po     | 125 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 83 insertions(+), 46 deletions(-)

commit cae68a674ee64ed29ed28663c606d8e66c72848f
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-09-10 21:49:09 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 42 +++++++++++++++++++++---------------------
 2 files changed, 25 insertions(+), 21 deletions(-)

commit 9350c7cb46768180800ac9086a22d5c420bc0289
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-09-10 14:07:28 +0000

    Updated Czech translation.
    
    2004-09-10  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 139 +++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 91 insertions(+), 52 deletions(-)

commit 2e4db3b646b8bc5aba10811ad7ff36bab8c11f6b
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-09-09 19:40:01 +0000

    This too.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 201e9e47e9f4fd027c80d2984a35e9987b2b732f
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-09-09 19:39:01 +0000

    Update Swedish translation.

 po/sv.po | 130 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 73 insertions(+), 57 deletions(-)

commit 64e53e8afe42380f1175776e2301c97985b5e42d
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-09-09 19:00:48 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 +++
 po/en_CA.po  | 108 ++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 66 insertions(+), 46 deletions(-)

commit 4c8a424fef2a39c4ed6774205aed5f20b368f7f2
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-09 17:15:26 +0000

    Some string changes suggested by Richard Set correct menu items sensitive
    
    
    2004-09-09  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.schemas.in: Some string changes suggested by Richard
    	* src/Application.cs: Set correct menu items sensitive based on
    	  selections in the lists.
    	* src/ChannelList.cs: Renamed GetSelectedChannel to GetSelected.
    	* src/blam.glade:
    	- Named a few widgets and changed the Channels menu to be singular.

 ChangeLog          |  9 +++++++++
 blam.schemas.in    |  8 ++++----
 src/Application.cs | 44 ++++++++++++++++++++++++++++++--------------
 src/ChannelList.cs | 10 +++++-----
 src/blam.glade     | 21 +++++++++++----------
 5 files changed, 59 insertions(+), 33 deletions(-)

commit 625354aa58af79c19730ad99851f80faf3d0aa1c
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   2004-09-09 15:58:29 +0000

    Updating pt_BR translation

 po/ChangeLog |  4 +++
 po/pt_BR.po  | 82 +++++++++++++++++++++++++++++++++++++++---------------------
 2 files changed, 57 insertions(+), 29 deletions(-)

commit af7a50f381b94c42f412ce1844dcb7eb4bbefe46
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-09 15:52:56 +0000

    Added Mark Entry as Read/Unread Added GetSelected
    
    
    2004-09-09  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs: Added Mark Entry as Read/Unread
    	* src/ItemList.cs: Added GetSelected
    	* src/blam.glade:
    	- Renamed the view menu to "Entry" and added Mark as unread/read.

 ChangeLog          |  7 ++++++
 src/Application.cs | 38 ++++++++++++++++++++++++++---
 src/ItemList.cs    | 12 ++++++++++
 src/blam.glade     | 70 ++++++++++++++++++++++++++++++++++--------------------
 4 files changed, 98 insertions(+), 29 deletions(-)

commit a6e53c6288f95592159f73980831e60777b43480
Author: German Poo-Caaman~o <gpoo@ubiobio.cl>
Date:   2004-09-09 15:31:48 +0000

    Updated Spanish translation.
    
    2004-09-09  German Poo-Caaman~o  <gpoo@ubiobio.cl>
    
    	* es.po: Updated Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 187 ++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 105 insertions(+), 86 deletions(-)

commit 6f9b6082767f9f46b308cdd4c0b869bcf6858ad0
Author: Michael Zehrer <zehrer@zepan.org>
Date:   2004-09-09 12:24:04 +0000

    Updated German translation.
    
    2004-09-09  Michael Zehrer  <zehrer@zepan.org>
    
    	* de.po: Updated German translation.

 po/ChangeLog |   4 +
 po/de.po     | 719 +++++++++++++++++++++++++++++++----------------------------
 2 files changed, 385 insertions(+), 338 deletions(-)

commit b56085ef36c21504b9a8c015e4208e5b3b9b976e
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   2004-09-09 12:01:31 +0000

    ankit@redhat.com 09/09/2004 * gu.po:Added Gujarati Translation

 po/ChangeLog |   4 +-
 po/gu.po     | 362 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 364 insertions(+), 2 deletions(-)

commit 97842748c566cc90c28f442bf6a9f1d0810f65ac
Author: Ankitkumar Rameshchandra Patel <ankitp@src.gnome.org>
Date:   2004-09-09 11:58:33 +0000

    ankit@redhat.com 09/09/2004 * configure.in: Added 'gu' (Gujarati) to ALL_LINGUAS

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5001b1a60c7c45f41737ff21650cd55046ea910c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-09 08:04:15 +0000

    Fixed some strings, patch from Johan Svedberg.
    
    
    2004-09-09  Mikael Hallendal  <micke@imendio.com>
    
    	* src/blam.glade: Fixed some strings, patch from Johan Svedberg.

 ChangeLog      |  4 ++++
 src/blam.glade | 15 ++++++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)

commit 7cc1c438f391d9501adf590ee0c7ee587bc51f97
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-09-08 20:08:27 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/en_CA.po | 54 +++++++++++++++++++++++++++++++++++++-----------------
 1 file changed, 37 insertions(+), 17 deletions(-)

commit aaf13e1fbb88b78e6766c112fc52d74e6273da80
Author: David Lodge <dave@cirt.net>
Date:   2004-09-08 19:20:02 +0000

    Updated British translation.
    
    2004-09-08  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 57 ++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 42 insertions(+), 19 deletions(-)

commit de98d2fb59db163c28675df5b709ef3aceeb79ee
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-09-08 11:32:44 +0000

    Updated Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 117 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 85 insertions(+), 36 deletions(-)

commit f93d5747bcfbf9f685b29fcb5a82eb254630951c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-08 11:28:17 +0000

    Updated for 1.4.0 Bumped version to 1.4.0
    
    2004-09-08  Mikael Hallendal  <micke@imendio.com>
    
    	* NEWS: Updated for 1.4.0
    	* configure.in: Bumped version to 1.4.0
    	* src/Application.cs:
    	- Use GetPluralString for notification tooltip.
    	  Thanks richard for reporting.

 ChangeLog          |  8 ++++++++
 NEWS               | 12 ++++++++++++
 configure.in       |  2 +-
 src/Application.cs |  2 +-
 4 files changed, 22 insertions(+), 2 deletions(-)

commit f74c86c702d9fdfc5f22eb888a4b381de0ca4fd1
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-08 10:52:46 +0000

    Added
    
    
    2004-09-08  Mikael Hallendal  <micke@imendio.com>
    
    	* POTFILES.skip: Added

 po/ChangeLog     | 4 ++++
 po/POTFILES.skip | 1 +
 2 files changed, 5 insertions(+)

commit d8c06155971e72b81a360912c2193e7f500f9a92
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-08 10:51:19 +0000

    Added eggtrayicon.[ch] Added Mark as read Added Added from libegg. Added
    
    
    2004-09-08  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/Makefile.am: Added eggtrayicon.[ch]
    	* libblam/blam-channel-menu.c: Added Mark as read
    	* libblam/blam-utils.[ch]:
    	(blam_tree_model_set_sort_func): Added
    	* libblam/eggtrayicon.[ch]: Added from libegg.
    	* icons/blam-tray-icon.png: Added
    	* icons/Makefile.am: Dist the tray icon
    	* src/Application.cs:
    	* src/Channel.cs:
    	* src/ChannelCollection.cs:
    	* src/ChannelList.cs:
    	* src/FeedUpdater.cs:
    	* src/ItemList.cs:
    	- Added support for Mark channel as read
    	- Added tray icon that shows when there are unread items.
    	- Fixed sorting problems in ChannelList and ItemList
    	* src/TrayIcon.cs: Wrapper for eggtrayicon.
    	* src/Makefile.am: Added TrayIcon.cs
    	* src/Utils.cs: Added SetSortFunc
    	* src/blam.glade: Added UI for the above
    	- Fixes #149033, #149646, #151208, #150599

 ChangeLog                   |  24 +++
 icons/Makefile.am           |   3 +-
 icons/blam-tray-icon.png    | Bin 0 -> 836 bytes
 libblam/Makefile.am         |   4 +-
 libblam/blam-channel-menu.c |   9 +
 libblam/blam-utils.c        |  10 +
 libblam/blam-utils.h        |   4 +-
 libblam/eggtrayicon.c       | 467 ++++++++++++++++++++++++++++++++++++++++++++
 libblam/eggtrayicon.h       |  77 ++++++++
 src/Application.cs          |  75 +++++--
 src/Channel.cs              |  24 ++-
 src/ChannelCollection.cs    |  30 +--
 src/ChannelList.cs          |  96 +++++----
 src/FeedUpdater.cs          |   1 +
 src/ItemList.cs             |  83 ++++++--
 src/Makefile.am             |   4 +-
 src/TrayIcon.cs             |  77 ++++++++
 src/Utils.cs                |   9 +
 src/blam.glade              |  19 +-
 19 files changed, 908 insertions(+), 108 deletions(-)

commit 0ae602e166fb46cdada68ee7a8d17bd57e1df5db
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-09-08 06:48:06 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 +++
 po/en_CA.po  | 84 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 86 insertions(+), 2 deletions(-)

commit 21cd4f84114e94d2b2fde83ffa1c4ad8dd8820f9
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-09-07 21:36:00 +0000

    Translation updated by Elros Cyriatan.
    
    2004-09-07  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |  4 +++
 po/nl.po     | 84 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 58 insertions(+), 30 deletions(-)

commit 9587c92c8784cd3cbafbda06ef76ad069317b1ef
Author: David Lodge <dave@cirt.net>
Date:   2004-09-07 20:03:38 +0000

    Updated British English translation.
    
    2004-09-07  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 185 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 131 insertions(+), 58 deletions(-)

commit 07a464aabe99a3eb7df5153527e86aabf52a2c12
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-09-07 12:54:40 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 160 +++++++++++++++++++----------------------------------------
 2 files changed, 56 insertions(+), 108 deletions(-)

commit 8fc52e29f5c2bb29176fc81b0ac333e84d37a831
Author: Raphael Higino <raphaelh@src.gnome.org>
Date:   2004-09-07 12:05:00 +0000

    Updating pt_BR translation

 po/ChangeLog |  4 +++
 po/pt_BR.po  | 84 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 58 insertions(+), 30 deletions(-)

commit eff93840b6f9d6711d6051858d3dfcf8795f3ec2
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-09-07 11:35:01 +0000

    Updated Czech translation.
    
    2004-09-07  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 +++
 po/cs.po     | 84 ++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 58 insertions(+), 30 deletions(-)

commit 952ab0aa69680712c829388750e469900d18d088
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-09-07 00:17:16 +0000

    Fixed the schema install rules Added keys GConf fix
    
    
    2004-09-07  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am: Fixed the schema install rules
    	* blam.schemas.in: Added keys
    	* configure.in: GConf fix
    	* src/Conf.cs:
    	* src/Database.cs:
    	* src/PreferencesDialog.cs:
    	* src/blam.glade:
    	* src/Application.cs:
    	- Added 'n' as short cut for Next Unread
    	- Added support for auto refreshing the entries. Still need to add a
    	  notication area icon when something has updated.
    	- Removed the Add Channel button from the window (still available from
    	  the menu though).
    	* src/Proxy.cs:
    	- Made sure that we don't call GConf from other threads.

 ChangeLog                |  18 ++
 Makefile.am              |  19 +-
 blam.schemas.in          |  30 ++-
 configure.in             |   5 +-
 src/Application.cs       |  55 ++++-
 src/Conf.cs              |  24 +-
 src/Database.cs          | 615 -----------------------------------------------
 src/PreferencesDialog.cs |  39 ++-
 src/Proxy.cs             |  50 +++-
 src/blam.glade           | 235 ++++++++++++------
 10 files changed, 360 insertions(+), 730 deletions(-)

commit 5464e3bf24956b98132e7381688e25e191ee4805
Author: Iñaki Larrañaga <dooteo@euskalgnu.org>
Date:   2004-08-24 19:27:38 +0000

    Added Basque translation.
    
    2004-08-24  Iñaki Larrañaga  <dooteo@euskalgnu.org>
    
            * eu.po:  Added Basque translation.

 po/ChangeLog |   4 +
 po/eu.po     | 292 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 296 insertions(+)

commit 6e674c407c95dcf61e57eef4ec919661db5e2dae
Author: Iñaki Larrañaga <dooteo@euskalgnu.org>
Date:   2004-08-24 19:26:29 +0000

    Added "eu" (Basque) to ALL_LINGUAS.
    
    2004-08-24  Iñaki Larrañaga  <dooteo@euskalgnu.org>
    
            * configure.in: Added "eu" (Basque) to ALL_LINGUAS.

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 88d93897063a15539152b512e5bb9a7dcc04a9f8
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-24 14:44:36 +0000

    - Updated german translation from MrNugget <mrnugget@damnsite.net>
    
    
    2004-08-24  Mikael Hallendal  <micke@imendio.com>
    
    	* de.po:
    	- Updated german translation from MrNugget <mrnugget@damnsite.net>

 po/ChangeLog |   5 +
 po/de.po     | 327 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 275 insertions(+), 57 deletions(-)

commit 513e9d5a7d5f9c640d3a7189c123338240dae73f
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   2004-08-21 15:41:44 +0000

    Updated Spanish translation.
    
    2004-08-21  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
    	* es.po: Updated Spanish translation.

 po/ChangeLog |   4 +
 po/es.po     | 312 +++++++++++++++++++++++++++++++++++++++++++++++++----------
 2 files changed, 267 insertions(+), 49 deletions(-)

commit 116361fce6fdc3380346611680e8977df91d1657
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   2004-08-20 16:38:02 +0000

    Updated Albanian translation.
    
    2004-08-20  Laurent Dhima  <laurenti@alblinux.net>
    
    	* sq.po: Updated Albanian translation.

 po/ChangeLog |  4 ++++
 po/sq.po     | 26 +++++++++-----------------
 2 files changed, 13 insertions(+), 17 deletions(-)

commit 1d3fbdd641c68e831f9220dfb7fbec22da4090b0
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-19 22:12:40 +0000

    Release 1.2.4
    
    2004-08-20  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.2.4
    
    	* NEWS: Updated for 1.2.4
    	* configure.in: Bumped version to 1.2.4

 ChangeLog    |  7 +++++++
 NEWS         | 10 ++++++++++
 configure.in |  2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

commit 6017373127269bcbdfbb1c5e7029b7a2d855b721
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   2004-08-18 12:52:28 +0000

    Updated Albanian translation.
    
    2004-08-18  Laurent Dhima  <laurenti@alblinux.net>
    
    	* sq.po: Updated Albanian translation.

 po/ChangeLog |   4 +
 po/sq.po     | 299 +++++++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 246 insertions(+), 57 deletions(-)

commit c71fc8eb2b6e0222777fe3a7e40138d78526d315
Author: Christian Rose <menthos@menthos.com>
Date:   2004-08-16 22:53:08 +0000

    Added "bs" to ALL_LINGUAS. Added Bosnian translation by Kemal Sanjta
    
    2004-08-16  Christian Rose  <menthos@menthos.com>
    
    	* configure.in: Added "bs" to ALL_LINGUAS.
    	* bs.po: Added Bosnian translation by
    	Kemal Sanjta <gomez@lugzdk.ba>.

 ChangeLog    |   4 ++
 configure.in |   2 +-
 po/ChangeLog |   5 +++
 po/bs.po     | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 138 insertions(+), 1 deletion(-)

commit c02228a348875450484382f5657fda1965693954
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-08-13 19:22:20 +0000

    da.po: Updated Danish translation

 po/ChangeLog |  4 ++++
 po/da.po     | 71 +++++++++++++++++++++++++++++++-----------------------------
 2 files changed, 41 insertions(+), 34 deletions(-)

commit c395de17a748c131fe5ff7e0bf600289ca3472c5
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   2004-08-13 16:35:54 +0000

    Updated Portuguese translation.
    
    2004-08-13  Duarte Loreto <happyguy_pt@hotmail.com>
    
    	* pt.po: Updated Portuguese translation.

 po/ChangeLog |   4 +
 po/pt.po     | 315 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 264 insertions(+), 55 deletions(-)

commit 8ab81dbc31f8080247e32af0ffdc33f88ea5a877
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-08-13 12:48:24 +0000

    Translation updated by Elros Cyriatan.
    
    2004-08-13  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |   4 ++
 po/nl.po     | 183 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 144 insertions(+), 43 deletions(-)

commit ff55227f1294a85b470a6dece0e84d893ec1c45c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-12 20:35:30 +0000

    - Ok, never commit while in a hury. This should fix the GConf keys :)
    
    
    2004-08-12  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Conf.cs:
    	* src/ItemList.cs:
    	* src/PreferencesDialog.cs:
    	- Ok, never commit while in a hury. This should fix the GConf keys :)

 ChangeLog                |  7 +++++++
 src/Conf.cs              | 20 ++++++++------------
 src/ItemList.cs          |  4 ++--
 src/PreferencesDialog.cs |  2 +-
 4 files changed, 18 insertions(+), 15 deletions(-)

commit 98dc4a093b5363e1aeba254d6e033814110aa561
Author: Gustavo Maciel Dias Vieira <gustavo@sagui.org>
Date:   2004-08-12 20:30:30 +0000

    Updated Brazilian Portuguese translation done by Raphael Higino
    
    2004-08-12  Gustavo Maciel Dias Vieira  <gustavo@sagui.org>
    
            * pt_BR.po: Updated Brazilian Portuguese translation done by
            Raphael Higino <raphaelh@uai.com.br>.

 po/ChangeLog |  5 ++++
 po/pt_BR.po  | 75 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 45 insertions(+), 35 deletions(-)

commit 5e3d886b38a59d0039ba26f06bb8ef41499d810e
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-12 12:29:04 +0000

    - Use /bin/sh instead of /bin/bash since FreeBSD doesn't have Bash as
    
    2004-08-12  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.in:
    	- Use /bin/sh instead of /bin/bash since FreeBSD doesn't have
    	  Bash as default shell.
    	- Reported by Christopher Nehren <apeiron@comcast.net>

 ChangeLog | 7 +++++++
 blam.in   | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit befa08c3b9beb674eff98b6ee80cc13d10209a1f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-12 08:08:12 +0000

    Fix the conf keys
    
    
    2004-08-12  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs: Fix the conf keys

 ChangeLog          |  4 ++++
 src/Application.cs | 16 ++++++++--------
 2 files changed, 12 insertions(+), 8 deletions(-)

commit 72b410cd10a9ad61b693e16eea7371086ffc6ccd
Author: Alexander Winston <alexander.winston@comcast.net>
Date:   2004-08-11 17:47:57 +0000

    Updated Canadian English translation.
    
    2004-08-11  Alexander Winston  <alexander.winston@comcast.net>
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 +++
 po/en_CA.po  | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++----
 2 files changed, 92 insertions(+), 6 deletions(-)

commit 7303d86c799a9915a61bf2d5a3feb9bdb874b70d
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-08-11 16:12:59 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 134 ++++++++++++-----------------------------------------------
 2 files changed, 31 insertions(+), 107 deletions(-)

commit a610f29daa929e7b8c21e47001cd701559454558
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-11 14:53:52 +0000

    splitted out conf stuffelistuff

 src/Application.cs       | 38 ++++++++------------
 src/Conf.cs              | 92 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/ItemList.cs          |  6 ++--
 src/Makefile.am          |  1 +
 src/PreferencesDialog.cs | 12 +++----
 src/Proxy.cs             | 11 +++---
 6 files changed, 119 insertions(+), 41 deletions(-)

commit 7e95ba8ede8540fb1a61fe0a3e91ecd9b86a9d26
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-08-11 07:20:03 +0000

    Updated Czech translation.
    
    2004-08-11  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 56 ++++++++++++++++++++++++++++----------------------------
 2 files changed, 32 insertions(+), 28 deletions(-)

commit 02dbff6260444e6c3c5eb57008f1e741bf0631ef
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-11 07:15:24 +0000

    Don't mark updated entries as unread.
    
    2004-08-11  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs: Don't mark updated entries as unread.

 ChangeLog      | 4 ++++
 src/Channel.cs | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 864c728fac0fe3df06f13878640aff3b9dfc6a9d
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-10 22:47:40 +0000

    use translator-credits

 src/Dialogs.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a3b2464c55e1d32db0eaadb7997de33c82e43bde
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-10 22:42:47 +0000

    moved to translator-credits

 po/sv.po       | 8 +++++---
 src/blam.glade | 2 +-
 2 files changed, 6 insertions(+), 4 deletions(-)

commit b30b60956c067b46116eb5ba3db9b05323fd5289
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-10 20:45:50 +0000

    Fixed translator credits string
    
    
    2004-08-10  Mikael Hallendal  <micke@imendio.com>
    
    	* src/blam.glade: Fixed translator credits string

 ChangeLog      |  6 +++++-
 po/ChangeLog   |  4 ++++
 po/sv.po       | 61 ++++++++++++++++++++++++++++++----------------------------
 src/blam.glade |  2 +-
 4 files changed, 42 insertions(+), 31 deletions(-)

commit d7d6257c307097ef844b3fcf452e2dc80a79259a
Author: Gustavo Maciel Dias Vieira <gustavo@sagui.org>
Date:   2004-08-10 20:05:45 +0000

    Updated Brazilian Portuguese translation done by Raphael Higino
    
    2004-08-10  Gustavo Maciel Dias Vieira  <gustavo@sagui.org>
    
            * pt_BR.po: Updated Brazilian Portuguese translation done by
            Raphael Higino <raphaelh@uai.com.br>.

 po/ChangeLog |   5 +
 po/pt_BR.po  | 328 ++++++++++++++++++++++++++++++++++++++++++++++++-----------
 2 files changed, 273 insertions(+), 60 deletions(-)

commit 7d9957ed874deb725fad3aa2c6fa995ee84340ce
Author: David Lodge <dave@cirt.net>
Date:   2004-08-09 19:25:21 +0000

    Updated British English translation.
    
    2004-08-09  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British English translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 124 +++++++++++++++++++++++++++++++++++++++--------------------
 2 files changed, 87 insertions(+), 41 deletions(-)

commit e1e4fe7d06745be2841137cf8fe0862d3b8c5d62
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-08-09 14:41:59 +0000

    Translation updated by Elros Cyriatan.
    
    2004-08-09  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |   4 ++
 po/nl.po     | 177 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 133 insertions(+), 48 deletions(-)

commit fefb4b1f3ca0ab2fa5175cb7573780fb87c30e00
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-08-09 13:46:50 +0000

    da.po: quick fixes

 po/da.po | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 2277874fed9471480e2a8b4d1370e9ebe8402457
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-08-09 10:00:48 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog |   4 ++
 po/da.po     | 184 +++++++++++++++++++++++++++++++++++++++++++++--------------
 2 files changed, 145 insertions(+), 43 deletions(-)

commit 81210126a25db546bdcb744092c24c544532794b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-09 08:05:02 +0000

    Trim description, hopefully leads to more accurate checking if an item is
    
    2004-08-09  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs: Trim description, hopefully leads to more accurate
    	  checking if an item is updated.
    	* src/blam.glade: Set automatic on horizontal scrollbars.

 ChangeLog      | 6 ++++++
 src/Channel.cs | 6 +++---
 src/blam.glade | 4 ++--
 3 files changed, 11 insertions(+), 5 deletions(-)

commit e336e000bab734a8d1ca0d10a7920e1d9015081e
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-08-08 21:53:23 +0000

    Updated Czech translation.
    
    2004-08-08  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 +++
 po/cs.po     | 111 ++++++++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 98 insertions(+), 17 deletions(-)

commit f8806b677e7f5383b44974a85a99eda53ca5a21f
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-08-08 19:08:48 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 11 ++++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

commit 370fda0ddecc349bd002fd1813f5a83bd4f239b1
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-08 10:29:56 +0000

    - Only show author if author is set - Make the author string translatable
    
    2004-08-08  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemView.cs:
    	- Only show author if author is set
    	- Make the author string translatable

 ChangeLog       |  6 ++++++
 po/ChangeLog    |  4 ++++
 po/sv.po        | 15 +++++++++++----
 src/ItemView.cs | 10 +++++++---
 4 files changed, 28 insertions(+), 7 deletions(-)

commit d170dccb27bf604797690f6e5f31c94b046926e6
Author: Gary Ekker <gekker@novell.com>
Date:   2004-08-08 08:32:08 +0000

    Display author property in ItemView HtmlFooter Added Item.Author
    
    
    2004-08-07  Gary Ekker  <gekker@novell.com>
    
    	* src/ItemView.cs: Display author property in ItemView HtmlFooter
    	* src/Channel.cs: Added Item.Author

 ChangeLog       | 5 +++++
 src/Channel.cs  | 2 ++
 src/ItemView.cs | 7 ++++++-
 3 files changed, 13 insertions(+), 1 deletion(-)

commit cc5070b37d2f1cc1d6de5291136587e88e0dc178
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-08-07 22:43:11 +0000

    Updated Danish translation.
    
            * da.po: Updated Danish translation.

 po/ChangeLog | 4 ++++
 po/da.po     | 6 +++---
 2 files changed, 7 insertions(+), 3 deletions(-)

commit 6cccdebd33b6e8473469d68bb2b33cbb77c906c4
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-08-07 21:03:57 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 168 ++++++++++++++++++++++++++++++++++++++++++++---------------
 2 files changed, 130 insertions(+), 42 deletions(-)

commit 921aa010c5c1dd59ded1f721a88727d20a4b843b
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-08-07 15:36:29 +0000

    Updated Czech translation.
    
    2004-08-07  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 +++
 po/cs.po     | 112 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 73 insertions(+), 43 deletions(-)

commit f149d8e9ec21c2a96ef49f776b31a421b6387758
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 14:54:10 +0000

    Release 1.2.3
    
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.2.3
    
    	* NEWS: Updated for 1.2.3
    	* configure.in: Bumped version to 1.2.3

 ChangeLog    |  7 +++++++
 NEWS         | 11 +++++++++++
 configure.in |  2 +-
 3 files changed, 19 insertions(+), 1 deletion(-)

commit 79f7c55e9b8712bf2a2792eec8bbea45ee411f62
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-07 14:39:15 +0000

    Update.

 po/sv.po | 37 +++++++++++++++++++++----------------
 1 file changed, 21 insertions(+), 16 deletions(-)

commit 2a518811c04896c605a84ece39ab2b5ea749aed5
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 14:36:38 +0000

    Added from Gossip Use new ConfirmationDialog for overwrite dialog. Added
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-utils.[ch]:
    	(blam_hig_dialog_new): Added from Gossip
    	* src/Application.cs: Use new ConfirmationDialog for overwrite dialog.
    	* src/Makefile.am: Added HigUtils.cs
    	* src/HigUtils.cs:
    	- Added wrapper around blam_hig_dialog_new and ConfirmationDialog.
    	* src/Opml.cs: Use HigDialog for error dialog
    	* src/blam.glade: Hig work

 ChangeLog            |  11 ++++
 libblam/blam-utils.c | 179 +++++++++++++++++++++++++++++++++++++++++++++++++++
 libblam/blam-utils.h |  17 +++--
 src/Application.cs   |  13 ++--
 src/HigUtils.cs      |  60 +++++++++++++++++
 src/Makefile.am      |   1 +
 src/Opml.cs          |  26 +++++---
 src/blam.glade       | 162 ++++++++++++++++++++++++++++++++++++++++++++--
 8 files changed, 444 insertions(+), 25 deletions(-)

commit 9101e729c5ff0326847cb7b3f9fb990b4229b932
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-07 13:17:00 +0000

    All work and no play.

 po/sv.po | 49 ++++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 48 insertions(+), 1 deletion(-)

commit 78741f08b608e1ccd885657260cd313661abcf3b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 13:00:25 +0000

    Added error checking when doing async importing.
    
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Opml.cs: Added error checking when doing async importing.

 ChangeLog      |   4 +++
 po/ChangeLog   |   4 +++
 po/POTFILES.in |   1 +
 src/Opml.cs    | 105 +++++++++++++++++++++++++++++++++++++++++++++++----------
 4 files changed, 96 insertions(+), 18 deletions(-)

commit 5a0262419a863222d1f51fe12da23d8ed982e70a
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 12:30:51 +0000

    Added error checking when trying to import a file.
    
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Opml.cs: Added error checking when trying to import a file.

 ChangeLog   |  4 +++
 src/Opml.cs | 97 +++++++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 66 insertions(+), 35 deletions(-)

commit a7c6d6df60ba88bd3178759d629e66f00174ca4f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 11:19:53 +0000

    - Only make import button sensitive when we have some text in the URL
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Opml.cs:
    	* src/blam.glade:
    	- Only make import button sensitive when we have some text in the URL
    	  entry.

 ChangeLog      |  7 +++++++
 src/Opml.cs    | 12 +++++++++++-
 src/blam.glade |  6 ++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

commit 35ed6271a6bef5de84022f8a5b7055d8c509aeef
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-07 11:14:28 +0000

    Again.

 po/sv.po | 41 +++++++++++++++++++++++++++--------------
 1 file changed, 27 insertions(+), 14 deletions(-)

commit da2d328bb12b7fb2402d9f8549cd1a3c602066f8
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 11:10:50 +0000

    Added check to see if file exists and query user whether to overwrite or
    
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs: Added check to see if file exists and query user
    	  whether to overwrite or not.
    	* src/blam.glade: HIGified import dialog some.

 ChangeLog          |  6 ++++++
 src/Application.cs | 56 +++++++++++++++++++++++++++++++++++++++++++++++-------
 src/blam.glade     | 11 ++++++-----
 3 files changed, 61 insertions(+), 12 deletions(-)

commit 03d79b9009ac29fdad5459581abc705b69cc6d9c
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-07 11:01:36 +0000

    Update.

 po/sv.po | 30 +++++++++++++++++++-----------
 1 file changed, 19 insertions(+), 11 deletions(-)

commit f544b3b1fed1d9ef02e8dc20f1a974198b724728
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 09:39:21 +0000

    Updated
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* collection.xml: Updated
    	* src/Application.cs:
    	* src/Opml.cs:
    	* src/blam.glade:
    	- Added support for exporting OPML. Need to make sure we don't
    	  overwrite files.

 ChangeLog          |  9 +++++++++
 collection.xml     | 17 +++++++++--------
 src/Application.cs | 23 +++++++++++++++++++++++
 src/Opml.cs        | 44 ++++++++++++++++++++++++++++++++++++++++++++
 src/blam.glade     | 17 +++++++++++++----
 5 files changed, 98 insertions(+), 12 deletions(-)

commit 03b2c85a8475aaaf4849083709dce3e8a25c32db
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-07 01:04:33 +0000

    Update.

 po/ChangeLog |   4 +++
 po/sv.po     | 107 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 69 insertions(+), 42 deletions(-)

commit d66e994d993c1504bb3337216f7cb532a05d8ffc
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-07 00:42:17 +0000

    - Updated the Opml import feature a bit with somewhat clearer progress
    
    2004-08-07  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	* src/Opml.cs:
    	* src/blam.glade:
    	- Updated the Opml import feature a bit with somewhat clearer
    	  progress dialog.

 ChangeLog          |  8 ++++++
 src/Application.cs |  2 --
 src/Opml.cs        | 83 ++++++++++++++++++++++++++++++++++++++++--------------
 src/blam.glade     | 17 ++++-------
 4 files changed, 75 insertions(+), 35 deletions(-)

commit bd6392437b080c703e7a67a53ea5025afb7d9119
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-06 21:28:34 +0000

    - Added Opml support - Extracted the mainloop emitter to be more generic -
    
    2004-08-06  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	* src/Channel.cs:
    	* src/ChannelCollection.cs:
    	* src/ChannelDialog.cs:
    	* src/Delegates.cs:
    	* src/ItemView.cs:
    	- Added Opml support
    	- Extracted the mainloop emitter to be more generic
    	- Removed Image attribute from Channel
    	* src/MainloopEmitter.cs: Added
    	* src/Makefile.am: Added Opml.cs and MainloopEmitter.cs
    	* src/Opml.cs: Added
    	* src/blam.glade: Added Opml dialogs

 ChangeLog                |  16 ++
 po/ChangeLog             |   4 +
 po/sv.po                 |   2 +-
 src/Application.cs       |  20 +++
 src/Channel.cs           |   8 +-
 src/ChannelCollection.cs |  25 ++-
 src/ChannelDialog.cs     |  62 -------
 src/Delegates.cs         |   3 +-
 src/ItemView.cs          |   7 +-
 src/MainloopEmitter.cs   |  45 +++++
 src/Makefile.am          |   2 +
 src/Opml.cs              | 259 ++++++++++++++++++++++++++++
 src/blam.glade           | 429 +++++++++++++++++++++++++++++++++++------------
 13 files changed, 693 insertions(+), 189 deletions(-)

commit 686764286eef53f14075bdc1ead8e23fb503b5bd
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-08-06 19:06:38 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |  4 ++++
 po/en_CA.po  | 60 ++++++++++++++++++++++++++++++++++--------------------------
 2 files changed, 38 insertions(+), 26 deletions(-)

commit b9b5498d18a4a4fe682f7f861c391de24b557fd7
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-08-06 13:40:03 +0000

    Updated Danish translation
    
            * da.po: Updated Danish translation

 po/ChangeLog |  4 ++++
 po/da.po     | 60 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 39 insertions(+), 25 deletions(-)

commit 7436507da5526f49080effd493801872faa39684
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-06 11:51:13 +0000

    - Make sure the blam script is regenerated when changing configuration.
    
    2004-08-06  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am:
    	- Make sure the blam script is regenerated when changing configuration.
    	* src/Makefile.am:
    	- Make sure Defines.cs is regenerated when changing configuration.
    
    2004-08-06  Martin Willemoes Hansen  <mwh@sysrq.dk>
    
    	* configure.in: Added Danish translation.
    	* autogen.sh: Use automake instead of automake-1.7
    	  and aclocal instead of aclocal-1.7
    	* src/blam.glade: Added translator credit label

 ChangeLog       | 10 +++++++
 Makefile.am     |  2 +-
 autogen.sh      |  4 +--
 po/ChangeLog    |  4 +++
 po/sv.po        | 64 +++++++++++++++++++++++------------------
 src/Dialogs.cs  | 10 +++++++
 src/Makefile.am |  2 +-
 src/blam.glade  | 88 +++++++++++++++++++++++++++++++++++++++++++++++++++++----
 8 files changed, 147 insertions(+), 37 deletions(-)

commit 5cdb777cd17f0275c30f978b354c42e1f52fc723
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-06 10:28:55 +0000

    removed TODO, track this in bugzilla

 TODO | 12 ------------
 1 file changed, 12 deletions(-)

commit ccc57710e6c5be83773443d24e4ac32c4aafc7f5
Author: Martin Willemoes Hansen <mwh@src.gnome.org>
Date:   2004-08-06 09:58:08 +0000

    Added Danish translation. Added Danish translation
    
            * configure.in: Added Danish translation.
            * po/da.po: Added Danish translation

 ChangeLog    |   4 ++
 configure.in |   2 +-
 po/ChangeLog |   4 ++
 po/da.po     | 215 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 224 insertions(+), 1 deletion(-)

commit d40b375f247538a9115383610eb702dab5508f48
Author: Richard Hult <richard@imendio.com>
Date:   2004-08-05 19:11:50 +0000

    Align the title and date to the top and make the title column wider.
    
    2004-08-05  Richard Hult  <richard@imendio.com>
    
    	* src/ItemView.cs: Align the title and date to the top and make
    	the title column wider.

 ChangeLog       | 5 +++++
 src/ItemView.cs | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 91a3bff577fe37aed86900a0acd4591ec400d9b3
Author: Richard Hult <richard@imendio.com>
Date:   2004-08-05 18:34:27 +0000

    Apply patch from Emmanuel Pacaud to fix html rendering issue, bug #149259.
    
    2004-08-05  Richard Hult  <richard@imendio.com>
    
    	* icons/Makefile.am:
    	* src/ItemView.cs:
    	* src/Makefile.am: Apply patch from Emmanuel Pacaud to fix html
    	rendering issue, bug #149259.

 ChangeLog              |   7 +++++++
 icons/Makefile.am      |   3 ++-
 icons/blam-box-pad.png | Bin 0 -> 156 bytes
 src/ItemView.cs        |  11 ++++++-----
 src/Makefile.am        |   3 ++-
 5 files changed, 17 insertions(+), 7 deletions(-)

commit f8cdb12ee5b1c5f4b31f8d604482f10fb0df21d0
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-05 10:21:54 +0000

    - Fixed install problem reported by Johan Svedberg, bug #149284
    
    
    2004-08-05  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am:
    	- Fixed install problem reported by Johan Svedberg, bug #149284
    	* src/ItemList.cs:
    	- Fixed problem where it didn't sort correctly on startup, bug #149261

 ChangeLog       | 7 +++++++
 Makefile.am     | 5 +----
 src/ItemList.cs | 2 --
 3 files changed, 8 insertions(+), 6 deletions(-)

commit e2accf9d3659f9d256de33e366e4cb97bf1f3bbd
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-04 23:22:38 +0000

    - Added Ctrl+] for next unread. This works together with '.'
    
    
    2004-08-05  Mikael Hallendal  <micke@imendio.com>
    
    	* src/blam.glade:
    	- Added Ctrl+] for next unread. This works together with '.'

 ChangeLog      | 5 +++++
 src/blam.glade | 9 +++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

commit 5fc3f3f364b13e39dd1575d1db42cef94da1e867
Author: David Lodge <dave@cirt.net>
Date:   2004-08-04 19:03:56 +0000

    Updated British translation.
    
    2004-08-04  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 +++
 po/en_GB.po  | 116 ++++++++++++++++++++++++++++++++++++++++-------------------
 2 files changed, 83 insertions(+), 37 deletions(-)

commit bdccff84c214baef91d74b0a3e72013ef10d75a7
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-08-04 15:41:57 +0000

    Updated Czech translation.
    
    2004-08-04  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 +++
 po/cs.po     | 83 ++++++++++++++++++++++++++++++++++++------------------------
 2 files changed, 54 insertions(+), 33 deletions(-)

commit 9ffc1b96bf9b96e761fb1f5d36efb339b770a4a7
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-04 08:36:56 +0000

    Fixed a broken HTML tag.

 ChangeLog       | 1 +
 src/ItemView.cs | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

commit b145644b7798cba307e0f4f0351df3d064ad7216
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-04 08:18:47 +0000

    Release 1.2.1
    
    2004-08-04  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.2.1
    
    	* NEWS: Updated for 1.2.1
    	* configure.in: Bumped to 1.2.1
    	* src/Proxy.cs: Style fixes

 ChangeLog    | 14 +++++++-------
 NEWS         |  5 +++++
 configure.in |  2 +-
 src/Proxy.cs | 12 +++++-------
 4 files changed, 18 insertions(+), 15 deletions(-)

commit 800b8b3dabb6bb54140eaaa94a8c15def604715c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-04 01:24:37 +0000

    try-catch around gconf get try-catch around gconf get
    
    2004-08-04  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemList.cs: try-catch around gconf get
    	* src/PreferencesDialog.cs: try-catch around gconf get

 ChangeLog                | 13 +++++++++++++
 src/ItemList.cs          |  7 ++++++-
 src/PreferencesDialog.cs |  6 +++++-
 3 files changed, 24 insertions(+), 2 deletions(-)

commit b46c60eb5941d6024b50e357dfe398dc2344bb8a
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-08-04 01:14:38 +0000

    Updated Canadian English translation.
    
    
    	* en_CA.po: Updated Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 183 ++++++++++++++++++++++++++++++++++++++++++-----------------
 2 files changed, 135 insertions(+), 52 deletions(-)

commit bef51b375caeee99d71a3558df3f85a488f36fc0
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-04 01:10:19 +0000

    slibbedibopp

 src/Channel.cs           | 17 ++++++++---------
 src/ChannelCollection.cs | 10 ++++++++++
 2 files changed, 18 insertions(+), 9 deletions(-)

commit cb83ce2666003ecd679598c8aa15426fd6d0647f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-04 00:12:29 +0000

    Release 1.2.0
    
    2004-08-04  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.2.0
    
    	* NEWS: Updated for 1.2.0
    	* configure.in: Bumped version to 1.2.0

 ChangeLog    |  7 +++++++
 NEWS         | 10 ++++++++++
 configure.in |  2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

commit 6d5ed8631f50a20f206265d57471c2f86fc3e570
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-03 23:58:02 +0000

    Bork the Swedish bork.

 po/ChangeLog |  4 +++
 po/sv.po     | 86 +++++++++++++++++++++++++++++++++++-------------------------
 2 files changed, 54 insertions(+), 36 deletions(-)

commit e73d1502bcca04d49edd215ef56609b1ddbc4e64
Author: Richard Hult <richard@imendio.com>
Date:   2004-08-03 23:46:11 +0000

    Add some padding around the body.
    
    2004-08-04  Richard Hult  <richard@imendio.com>
    
    	* src/ItemView.cs: Add some padding around the body.

 ChangeLog       | 4 ++++
 src/ItemView.cs | 2 ++
 2 files changed, 6 insertions(+)

commit f8f91f00f883e9cda74c85c855dbecb046b3963d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-03 23:40:36 +0000

    Fixed the crashing Remove Dialog.
    
    
    2004-08-04  Mikael Hallendal  <micke@imendio.com>
    
    	* src/blam.glade: Fixed the crashing Remove Dialog.

 ChangeLog      | 4 ++++
 src/blam.glade | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

commit 1cd31e7513c2c3281bd7fe6bdf72513ac6eaa2cd
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-03 23:29:37 +0000

    Use GetEntryAssembly instead of GetCallingAssembly.
    
    2004-08-04  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemView.cs: Use GetEntryAssembly instead of GetCallingAssembly.

 ChangeLog       |  4 ++++
 src/ItemView.cs | 30 +++++++++++++++---------------
 2 files changed, 19 insertions(+), 15 deletions(-)

commit b661c901184c7d8606f6cfc9aa8872017dce9d98
Author: Richard Hult <richard@imendio.com>
Date:   2004-08-03 22:37:06 +0000

    Add box images.
    
    2004-08-04  Richard Hult  <richard@imendio.com>
    
    	* icons/Makefile.am:
    	* icons/blam-box*.png: Add box images.
    
    	* src/ItemView.cs:
    	- Special case the box images and fetch them from the assembly.
    	- Close the html stream after writing.
    	- Change the html output to use rounded boxes.
    	- Set the charset to utf-8 in the html view.
    
    	* src/Makefile.am: Add box images to the resource list.

 ChangeLog                       |  13 ++++
 icons/Makefile.am               |  14 +++--
 icons/blam-box-bottom-left.png  | Bin 0 -> 140 bytes
 icons/blam-box-bottom-right.png | Bin 0 -> 125 bytes
 icons/blam-box-top-left.png     | Bin 0 -> 129 bytes
 icons/blam-box-top-right.png    | Bin 0 -> 143 bytes
 src/ItemView.cs                 | 127 ++++++++++++++++++++++++++++------------
 src/Makefile.am                 |   9 ++-
 8 files changed, 119 insertions(+), 44 deletions(-)

commit fb0fbeafc31a092e8519a1570d4234f0250ce9b7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-03 20:40:42 +0000

    - Write out the collections.xml file when it hasn't been updated the last
    
    
    2004-08-03  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	* src/Channel.cs:
    	* src/ChannelCollection.cs:
    	* src/FeedUpdater.cs:
    	- Write out the collections.xml file when it hasn't been updated the
    	  last five minutes.
    	- Fixes bug #149071

 ChangeLog                | 10 +++++++
 src/Application.cs       |  6 ++--
 src/Channel.cs           | 35 +++++++++++++++--------
 src/ChannelCollection.cs | 72 +++++++++++++++++++++++++++++++++++++-----------
 src/FeedUpdater.cs       | 20 ++++++--------
 5 files changed, 100 insertions(+), 43 deletions(-)

commit b224cdfff62f6277cd1a3489060dece3eb163d02
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-03 18:15:38 +0000

    Added bacon-message-connection.[ch] Added
    
    
    2004-08-03  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/Makefile.am: Added bacon-message-connection.[ch]
    	* libblam/bacon-message-connection.[ch]: Added
    	* src/Application.cs:
    	- Make BLAM! single app.
    	- When started again, only open the window and do a refresh all.
    	* src/Makefile.am: Added MessageConnection.cs
    	* src/MessageConnection.cs: Shamelessly stolen from Muine.
    	- Fixes bug #149152

 ChangeLog                          |  14 ++-
 libblam/Makefile.am                |   4 +-
 libblam/bacon-message-connection.c | 246 +++++++++++++++++++++++++++++++++++++
 libblam/bacon-message-connection.h |  36 ++++++
 src/Application.cs                 |  22 ++++
 src/Makefile.am                    |   1 +
 src/MessageConnection.cs           |  74 +++++++++++
 7 files changed, 394 insertions(+), 3 deletions(-)

commit e6fa905e9384c7cce4a165a0d50eb2afd5dca2dd
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-03 17:46:28 +0000

    - Added key reverse_entries
    
    
    2004-08-03  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.schemas.in:
    	- Added key reverse_entries
    	* src/Application.cs:
    	- Added support for preference dialog
    	* src/ItemList.cs:
    	- Read the key reverse entries to sort correctly
    	* src/Makefile.am:
    	- Added PreferenceDialog.cs
    	* src/blam.glade:
    	- Added preference dialog
    	* src/PreferenceDialaog.cs: Added

 ChangeLog                |  14 ++++
 blam.schemas.in          |  14 ++++
 src/Application.cs       |  12 ++-
 src/ItemList.cs          |  30 +++++++-
 src/Makefile.am          |   1 +
 src/PreferencesDialog.cs |  63 ++++++++++++++++
 src/blam.glade           | 185 +++++++++++++++++++++++++++++++++++++++++++++--
 7 files changed, 306 insertions(+), 13 deletions(-)

commit a7d95dc702608c54139df4598659770317805a8e
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-08-02 17:01:37 +0000

    Updated Czech translation.
    
    2004-08-02  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |   4 ++
 po/cs.po     | 166 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 119 insertions(+), 51 deletions(-)

commit 1b48eab8fda6feb36d2367e5ccd4c64ac384b3c1
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 23:57:20 +0000

    Release 1.0.54
    
    2004-08-02  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.0.54
    
    	* configure.in: Bumped version to 1.0.54
    	* src/Makefile.am:
    	- Don't dist src/Defines.cs

 ChangeLog       |  8 ++++++++
 configure.in    |  2 +-
 src/Makefile.am | 10 +++++++---
 3 files changed, 16 insertions(+), 4 deletions(-)

commit d338ce9c4be2d9fa115870e7f913df3e2b1d58d5
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2004-08-01 22:28:43 +0000

    Updated Norwegian translation.
    
    2004-08-02  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* no.po: Updated Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 147 +++++++++++++++++++++++++++++++++++++++++++----------------
 2 files changed, 112 insertions(+), 39 deletions(-)

commit da9239bbb003a97478f1eb3c974485a966b65f53
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 22:06:10 +0000

    Release 1.0.53 - October BLAM!
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 1.0.53 - October BLAM!
    
    	* NEWS: Updated for 1.0.53
    	* configure.in: Changed the version to 1.0.53

 ChangeLog    | 9 ++++++++-
 NEWS         | 5 +++--
 configure.in | 2 +-
 3 files changed, 12 insertions(+), 4 deletions(-)

commit 1100954b57bf0bdff885af889b0475bd6bc55bdf
Author: Richard Hult <rhult@src.gnome.org>
Date:   2004-08-01 21:49:53 +0000

    Update Swedish translation.

 po/ChangeLog |   4 ++
 po/sv.po     | 231 ++++++++++++++++++++++++++++++++++++-----------------------
 2 files changed, 146 insertions(+), 89 deletions(-)

commit cef3aaeb714a06e2d3a361f5e521c779f6e99daf
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-01 21:47:48 +0000

    fixed the strings in right-click menu

 libblam/blam-channel-menu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 2b40c6d92ef7a35df1a2849337b35d6a825dd9c6
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-08-01 21:45:32 +0000

    removed string that shouldn't be translated

 src/blam.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e4e6eb105a17bf3cf1774c847715986729129b9d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 21:40:15 +0000

    - Update -> Refresh
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-channel-menu.c:
    	- Update -> Refresh
    	* src/Dialogs.cs:
    	- Make sure that the remove dialog is translatable.
    	* src/blam.glade:
    	- Gladified the remove dialog.

 ChangeLog                   | 14 ++++++++++++++
 libblam/blam-channel-menu.c |  4 ++--
 po/POTFILES.in              |  1 +
 src/Dialogs.cs              | 10 +++++-----
 src/blam.glade              | 38 +++++++++++++++++++-------------------
 5 files changed, 41 insertions(+), 26 deletions(-)

commit 474c2cf98104ed7e62fd8d93e71178979f4673c5
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 21:10:01 +0000

    - Make the right-click menu translatable
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-channel-menu.c:
    	(channel_menu_translate_func),
    	(blam_channel_menu_new):
    	- Make the right-click menu translatable
    	* src/ItemView.cs:
    	- Make "Show in browser" link translatable

 ChangeLog                   |  9 +++++++++
 NEWS                        | 10 ++++++++++
 libblam/blam-channel-menu.c | 17 ++++++++++++++---
 po/ChangeLog                |  4 ++++
 po/POTFILES.in              |  3 +++
 src/ItemView.cs             |  3 ++-
 6 files changed, 42 insertions(+), 4 deletions(-)

commit ec7be0441b035718a22be1859c2d09dc7d3ccbfd
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 20:14:28 +0000

    Bumped version to 1.4 Don't set the icon as of now
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in: Bumped version to 1.4
    	* src/FeedUpdater.cs: Don't set the icon as of now

 ChangeLog          | 5 +++++
 NEWS               | 3 +++
 configure.in       | 2 +-
 src/FeedUpdater.cs | 4 ++--
 4 files changed, 11 insertions(+), 3 deletions(-)

commit b757f01a946dbe2d6a125b06d48efd9bda0eae53
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 19:58:48 +0000

    - Send the response stream directly to the RssReader. - Fixes bug #149005
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/FeedUpdater.cs:
    	- Send the response stream directly to the RssReader.
    	- Fixes bug #149005

 ChangeLog            |  6 ++++++
 src/FeedUpdater.cs   | 14 ++------------
 src/rss/RssReader.cs |  2 +-
 3 files changed, 9 insertions(+), 13 deletions(-)

commit 564555476c2259ed6126b55eb3a8e73e3c55ed22
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 17:36:10 +0000

    - Fixed the ellipsizing a bit, going to rock when we can start using GTK+
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemList.cs:
    	- Fixed the ellipsizing a bit, going to rock when we can start using
    	  GTK+ HEAD.

 ChangeLog       | 6 ++++++
 src/ItemList.cs | 6 +++---
 2 files changed, 9 insertions(+), 3 deletions(-)

commit b5af41ca1172eb55f24cf47c7dda0bc717084138
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 17:32:03 +0000

    - Move selection on right-click - Don't show right-click menu when not
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs:
    	- Move selection on right-click
    	- Don't show right-click menu when not clicking over a channel.

 ChangeLog          |  6 ++++++
 src/ChannelList.cs | 15 ++++++++-------
 2 files changed, 14 insertions(+), 7 deletions(-)

commit 22876e8ca70be00b04a07f7033efd1832becd7b7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 15:50:51 +0000

    Removed unused Id-attribute Fixed that status messages Removed the
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* collection.xml: Removed unused Id-attribute
    	* src/Application.cs: Fixed that status messages
    	* src/ChannelCollection.cs: Removed the AbortRefreshing call
    	* src/FeedUpdater.cs:
    	- Set the ETag and Last-Modified values after updating the entries.

 ChangeLog                |  8 ++++++++
 collection.xml           | 14 +++++++-------
 src/Application.cs       | 12 +++++-------
 src/ChannelCollection.cs |  8 --------
 src/ChannelList.cs       | 19 ++++++++++++-------
 src/FeedUpdater.cs       | 21 ++++++++++++++-------
 6 files changed, 46 insertions(+), 36 deletions(-)

commit 7712c2cca3ec8215f883fbcde01b71abb08935bc
Author: David Lodge <dave@cirt.net>
Date:   2004-08-01 14:28:56 +0000

    Updated British translation.
    
    2004-08-01  David Lodge <dave@cirt.net>
    
            * en_GB.po: Updated British translation.

 po/ChangeLog |   4 ++
 po/en_GB.po  | 133 +++++++++++++++++++++++++++++++++++++++++------------------
 2 files changed, 97 insertions(+), 40 deletions(-)

commit 42592db2581c1d7f6b71a846644b8248fa236d2f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 13:28:34 +0000

    Cleaned up code a bit Removed a bunch of annoying print outs.
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelCollection.cs: Cleaned up code a bit
    	* src/FeedUpdater.cs: Removed a bunch of annoying print outs.

 ChangeLog                |  5 +++++
 src/ChannelCollection.cs | 46 +++++++++++++++++-----------------------------
 src/FeedUpdater.cs       | 16 ++++++++--------
 3 files changed, 30 insertions(+), 37 deletions(-)

commit e4b1083a2eafe681202f892dbb0ba4efd6c1fd56
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 13:20:46 +0000

    - Added information about bugzilla - Updated the required versions of Gtk#
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* README:
    	- Added information about bugzilla
    	- Updated the required versions of Gtk# and Mono.
    	* blam.desktop.in: Added bugzilla information
    	* configure.in: Bumped version and required Gtk# and Mono.
    	* src/Dialogs.cs: Include version number in about dialog.
    	* src/blam.glade: Added version number label to about dialog.

 ChangeLog          | 10 ++++++++++
 README             | 12 ++++++++----
 TODO               |  4 +---
 blam.desktop.in    |  3 +++
 configure.in       |  8 ++++----
 src/ChannelList.cs | 10 +++++-----
 src/Dialogs.cs     |  2 ++
 src/blam.glade     | 42 ++++++++++++++++++++++++++++++++----------
 8 files changed, 65 insertions(+), 26 deletions(-)

commit 870c254d779865ed4b21e2d8a20e10eb7166063c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 13:00:20 +0000

    Added Planet Jabber Use the new add channel dialog Use this only for
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* collection.xml: Added Planet Jabber
    	* src/Application.cs: Use the new add channel dialog
    	* src/ChannelDialog.cs: Use this only for editting channel
    	* src/Dialogs.cs: Added AddChannelDialog
    	* src/FeedUpdater.cs: Set name and image of a channel from the feed
    	* src/blam.glade: Added AddChannelDialog

 ChangeLog            |   9 +++
 collection.xml       |   2 +
 src/Application.cs   |  10 +--
 src/ChannelDialog.cs |  75 +++++----------------
 src/Dialogs.cs       |  70 +++++++++++++++++++
 src/FeedUpdater.cs   |  11 +++
 src/blam.glade       | 186 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 7 files changed, 298 insertions(+), 65 deletions(-)

commit a129031b77310c4ad27ed1f19a6c595e384fa88e
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 11:17:54 +0000

    - Signal that we want to mark an item as unread in all feeds if the entry
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs:
    	- Signal that we want to mark an item as unread in all feeds
    	  if the entry is part of several planets.
    	* src/ChannelCollection.cs:
    	- Added functionality to make sure an entry is marked as read in
    	  all feeds where it exists.

 ChangeLog                |  9 +++++++++
 src/Channel.cs           | 15 +++++++++++++++
 src/ChannelCollection.cs |  9 +++++++++
 3 files changed, 33 insertions(+)

commit 8d44d4b65fc960708fcb68ca860130bd26db0241
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 11:05:52 +0000

    - Don't bork on empty links.
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Channel.cs:
    	- Don't bork on empty links.
    	* src/ItemView.cs:
    	- Don't show the "Show in browser" link if the link attribute is
    	  not set.
    	* src/rss/RssReader.cs:
    	- Don't throw exceptions on empty link nodes.

 ChangeLog            | 10 ++++++++++
 src/Channel.cs       |  7 ++++++-
 src/ItemView.cs      |  2 +-
 src/rss/RssReader.cs |  7 ++++++-
 4 files changed, 23 insertions(+), 3 deletions(-)

commit 12bae05243010fdfeef8dae7ed67ea871a959f6b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 10:22:27 +0000

    - Install collection.xml in datadir/blam.
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am:
    	- Install collection.xml in datadir/blam.
    	* src/Application.cs:
    	- Update the channels label when a channel has been refreshed
    	* src/ChannelCollection.cs:
    	- Read the default collection.xml from datadir/blam instead of the
    	  assembly.
    	* src/Defines.cs.in:
    	- Added APP_DATADIR.
    	* src/Makefile.am:
    	- Don't bundle collection.xml in the assembly..

 ChangeLog                | 14 ++++++++++++++
 Makefile.am              |  5 ++++-
 src/Application.cs       |  7 ++-----
 src/ChannelCollection.cs |  9 +++------
 src/Defines.cs.in        |  1 +
 src/Makefile.am          |  3 +--
 6 files changed, 25 insertions(+), 14 deletions(-)

commit cd5356e5abb8ec6e707332cff6a887445957167f
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-08-01 10:09:31 +0000

    - Added a static TheApp variable. - Use version set by configure
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	- Added a static TheApp variable.
    	- Use version set by configure
    	* src/Channel.cs:
    	- Signal when unread is changed on an item.
    	* src/Defines.cs.in:
    	- Added VERSION and DATADIR.
    	* src/ItemList.cs:
    	- Use SetUnread instead of attribute Unread on Item
    	* src/Makefile.am:
    	- Set the VERSION variale in Defines.cs

 ChangeLog          | 14 ++++++++++++++
 src/Application.cs |  8 ++++++--
 src/Channel.cs     | 31 ++++++++++++++++++-------------
 src/Defines.cs.in  |  4 +++-
 src/ItemList.cs    |  2 +-
 src/Makefile.am    |  4 +++-
 6 files changed, 45 insertions(+), 18 deletions(-)

commit 5dcdc2d116c3f899a4b18853c39ccdc3db912b70
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-07-31 22:58:01 +0000

    Don't sort on date, sort on order in feed. Make the image fetching work
    
    2004-08-01  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemList.cs: Don't sort on date, sort on order in feed.
    	* src/ItemView.cs: Make the image fetching work again.

 ChangeLog       |  5 +++++
 src/Channel.cs  | 14 ++++++++++++--
 src/ItemList.cs |  6 +++---
 src/ItemView.cs | 12 +++++++++---
 4 files changed, 29 insertions(+), 8 deletions(-)

commit b443e67cafb1617eeb5dbfb58dcb13b85b6aacad
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-07-31 20:08:43 +0000

    Initialize gettext Added Generate Defines.cs Updated
    
    2004-07-31  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs: Initialize gettext
    	* src/Defines.cs.in: Added
    	* src/Makefile.am: Generate Defines.cs
    	* src/blam.glade: Updated

 .cvsignore         |  4 ++++
 ChangeLog          |  7 +++++++
 po/.cvsignore      |  1 +
 src/.cvsignore     |  2 ++
 src/Application.cs |  3 +++
 src/Defines.cs.in  | 14 ++++++++++++++
 src/Makefile.am    | 12 ++++++++++--
 src/blam.glade     | 21 ---------------------
 8 files changed, 41 insertions(+), 23 deletions(-)

commit 2ff9895936e6cbc7b15c9888f3b8c0a92a6b0fd2
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-07-31 19:18:33 +0000

    Intltool funky stuff Intltool and gettext support Removed Added Removed
    
    2004-07-31  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am: Intltool funky stuff
    	* autogen.sh: Intltool and gettext support
    	* blam.desktop: Removed
    	* blam.desktop.in: Added
    	* blam.schemas: Removed
    	* blam.schemas.in: Added
    	* configure.in: Added support for gettext and intltool
    	- Start of work to get translations working.

 ChangeLog       |  11 ++++
 Makefile.am     |  50 ++++++++++++++----
 autogen.sh      | 157 +++++++++++++++++++++++++++++++++++++++++++-------------
 blam.desktop    |  21 --------
 blam.desktop.in |  11 ++++
 blam.schemas    |  63 -----------------------
 blam.schemas.in |  63 +++++++++++++++++++++++
 configure.in    |  15 +++++-
 po/ChangeLog    |   4 ++
 po/POTFILES.in  |   2 +
 src/ItemView.cs |   8 +--
 11 files changed, 269 insertions(+), 136 deletions(-)

commit 2b7656c44d95506f111f42066199fe063f1d605a
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-07-31 18:27:26 +0000

    Merged no-db branch.

 ChangeLog                |  63 ++++++++
 Makefile.am              |   1 +
 TODO                     |   5 +-
 collection.xml           |  14 ++
 src/Application.cs       | 376 ++++++++++++-----------------------------------
 src/BlogItem.cs          |  56 -------
 src/Cache.cs             |   2 +-
 src/Channel.cs           | 199 ++++++++++++-------------
 src/ChannelCollection.cs | 242 ++++++++++++++++++++++++++++++
 src/ChannelDialog.cs     | 109 +++++++-------
 src/ChannelList.cs       |  19 ++-
 src/Delegates.cs         |  10 ++
 src/Dialogs.cs           | 100 +++++++++++++
 src/FeedUpdater.cs       |  48 +++---
 src/ItemList.cs          |  38 ++---
 src/ItemView.cs          |  36 ++---
 src/Makefile.am          |  13 +-
 src/Printing.cs          |   2 +-
 src/Proxy.cs             |   2 +-
 src/RssUpdater.cs        |  87 -----------
 src/Spinner.cs           |   2 +-
 src/Utils.cs             |   2 +-
 src/blam.glade           |   1 -
 src/rss/RssReader.cs     |  49 ++----
 24 files changed, 758 insertions(+), 718 deletions(-)

commit 5a4379ac26a15a7d422d0f1d27066d3676bb88e8
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   2004-07-28 16:52:48 +0000

    Updated Albanian translation.
    
    2004-07-28  Laurent Dhima  <laurenti@alblinux.net>
    
    	* sq.po: Updated Albanian translation.

 po/ChangeLog |  4 ++++
 po/sq.po     | 56 +++++++++++++++++++++++++++-----------------------------
 2 files changed, 31 insertions(+), 29 deletions(-)

commit 53be190358dbd145764c61f7691bbcd85bd1bee7
Author: Gil Osher <dolfin@src.gnome.org>
Date:   2004-07-23 13:55:05 +0000

    Added Hebrew translation.
    
    
    * he.po: Added Hebrew translation.

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit 7d6aac33abe6698fb6133896c1c38a6720527dc1
Author: Gil Osher <dolfin@src.gnome.org>
Date:   2004-07-23 13:54:42 +0000

    Added Hebrew translation.

 po/he.po | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 129 insertions(+)

commit 57b34919cbec689d7396808f4c36abc0e0799a55
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-07-16 09:42:46 +0000

    Removed the unfinished Opml-dialog to spare the translators from
    
    
    2004-07-16  Mikael Hallendal  <micke@imendio.com>
    
    	* src/blam.glade: Removed the unfinished Opml-dialog to spare the
    	  translators from translating my typos :) Thanks Christian for
    	  pointing this out.

 ChangeLog      |   6 ++
 src/blam.glade | 216 ---------------------------------------------------------
 2 files changed, 6 insertions(+), 216 deletions(-)

commit 3cadc36ba0267925014f22810d5df3c0086cc102
Author: Christian Rose <menthos@menthos.com>
Date:   2004-07-09 20:47:38 +0000

    Updated Swedish translation.
    
    2004-07-09  Christian Rose  <menthos@menthos.com>
    
    	* sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 54 +++++++++++++++++++++++++++++++++---------------------
 2 files changed, 37 insertions(+), 21 deletions(-)

commit c6efa3e70cea56f0349a9fc3f28c44dffaf3d88d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-07-07 16:15:46 +0000

    Check if Proxy exists before trying to set it.
    
    2004-07-07  Mikael Hallendal  <micke@imendio.com>
    
    	* src/FeedUpdater.cs: Check if Proxy exists before trying to set it.

 ChangeLog          | 4 ++++
 src/FeedUpdater.cs | 7 +++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

commit 240436cf8d81334e7f0199d9e8b5e89f3eab9201
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   2004-07-01 17:40:57 +0000

    Translation updated.
    
    2004-07-01  Laurent Dhima  <laurenti@alblinux.net>
    
    	* sq.po: Translation updated.

 po/ChangeLog |  4 ++++
 po/sq.po     | 11 ++++-------
 2 files changed, 8 insertions(+), 7 deletions(-)

commit 6644913c9af145494b0446483597f3c6e1e88955
Author: Laurent Dhima <laurenti@alblinux.net>
Date:   2004-06-28 15:02:10 +0000

    Translation updated.
    
    2004-06-28  Laurent Dhima  <laurenti@alblinux.net>
    
    	* sq.po: Translation updated.

 po/ChangeLog |  4 ++++
 po/sq.po     | 56 ++++++++++++++++++++++++++++++++++----------------------
 2 files changed, 38 insertions(+), 22 deletions(-)

commit f7a76f878ea40684260b1cc65b98e2b725a8e533
Author: Mario Alberto Chavez C <chavezm@panasonic.com>
Date:   2004-06-15 10:15:47 +0000

    - Added proxy support
    
    2004-06-15  Mario Alberto Chavez C. <chavezm@panasonic.com>
    
    	* src/FeedUpdater.cs:
    	* src/ItemView.cs:
    	* src/Makefile.am:
    	* src/Proxy.cs:
    	- Added proxy support

 ChangeLog          |  8 ++++++++
 src/FeedUpdater.cs |  5 ++++-
 src/ItemView.cs    | 10 ++++++++--
 src/Makefile.am    |  3 ++-
 src/Proxy.cs       | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 79 insertions(+), 4 deletions(-)

commit 2eb3a4132533af5392b218a3e458ffaea6734847
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-06-02 12:43:19 +0000

    The patch was from Peter Johanson, thanks a lot!

 ChangeLog | 1 +
 1 file changed, 1 insertion(+)

commit 618ffcfe91588f3ef66dac4bd760e5bb9ad71972
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-06-02 12:42:44 +0000

    Copy the string and manipulate the copy rather than the in argument. Don't
    
    2004-06-02  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-utils.[ch]:
    	(blam_ellipsize_and_delimit_string): Copy the string and manipulate
    	  the copy rather than the in argument.
    	* src/ChannelList.cs: Don't have to do the gtype stuff any more
    	* src/ItemList.cs: Same
    	* src/Utils.cs:
    	- Free the returned string due to the change in blam-utils.c

 ChangeLog            | 10 ++++++++++
 libblam/blam-utils.c | 20 ++++++++++++--------
 libblam/blam-utils.h |  4 ++--
 src/ChannelList.cs   | 11 +----------
 src/ItemList.cs      | 12 +-----------
 src/Utils.cs         |  8 ++++++--
 6 files changed, 32 insertions(+), 33 deletions(-)

commit 5ba0eb0eb3e56c37f6c2c7fff603efffbebada13
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-06-02 10:19:00 +0000

    Updated requirements to Beta 2 Fixed a few API changes Dito Fixed includes
    
    2004-06-02  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in: Updated requirements to Beta 2
    	* src/ChannelList.cs: Fixed a few API changes
    	* src/ItemList.cs: Dito
    	* src/Makefile.am: Fixed includes now with gac.
    	- For some reason it crashes when you select a channel. Haven't had
    	  time to investigate

 ChangeLog          |  9 +++++++++
 configure.in       | 14 +++++++++++---
 src/ChannelList.cs |  4 ++--
 src/ItemList.cs    |  4 ++--
 src/ItemView.cs    | 10 ----------
 src/Makefile.am    | 17 ++++-------------
 6 files changed, 28 insertions(+), 30 deletions(-)

commit cc918818aa14c7adbaea6d7475e1d977f809e4ad
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-05-30 21:17:35 +0000

    Fixed an issue with the ellipsing code. - Patch from Robert McMeekin
    
    2004-05-30  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemList.cs: Fixed an issue with the ellipsing code.
    	- Patch from Robert McMeekin

 ChangeLog       |  5 +++++
 src/ItemList.cs | 14 +++++++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)

commit af00f223a3438dcb6c67a3b3e562e1a9d9ec0a49
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-05-19 08:05:33 +0000

    More dates fixes...
    
    2004-05-19  Mikael Hallendal  <micke@imendio.com>
    
    	* src/rss/RssReader.cs: More dates fixes...

 ChangeLog            | 4 ++++
 src/rss/RssReader.cs | 1 +
 2 files changed, 5 insertions(+)

commit 60cf27292934b470a35db133c1d29dd04f368a66
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   2004-05-16 15:52:05 +0000

    Updated Portuguese translation.
    
    2004-05-16  Duarte Loreto <happyguy_pt@hotmail.com>
    
    	* pt.po: Updated Portuguese translation.

 po/ChangeLog |  4 ++++
 po/pt.po     | 54 +++++++++++++++++++++++++++++++-----------------------
 2 files changed, 35 insertions(+), 23 deletions(-)

commit 11407760bbbbb75ff4abeb8ea912017b64ef6197
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-05-13 08:41:21 +0000

    - More date fixes, why does there have to be 1000 "standards" for how to
    
    2004-05-13  Mikael Hallendal  <micke@imendio.com>
    
    	* src/rss/RssReader.cs:
    	- More date fixes, why does there have to be 1000 "standards" for
    	  how to write a date in RSS?

 ChangeLog            | 6 ++++++
 src/rss/RssReader.cs | 1 +
 2 files changed, 7 insertions(+)

commit 4517fa0d7706f501a6d447ca6096525b73848282
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-05-12 11:47:04 +0000

    - Fixed the date format for quite a few blogs...
    
    2004-05-12  Mikael Hallendal  <micke@imendio.com>
    
    	* src/rss/RssFeed.cs:
    	* src/rss/RssModuleItem.cs:
    	* src/rss/RssReader.cs:
    	- Fixed the date format for quite a few blogs...

 ChangeLog                |  7 +++++++
 src/rss/RssFeed.cs       |  2 +-
 src/rss/RssModuleItem.cs |  2 +-
 src/rss/RssReader.cs     | 17 +++++++++--------
 4 files changed, 18 insertions(+), 10 deletions(-)

commit 3fb149ac063233c1bf1f5238f77beb9cb9bccca2
Author: Gustavo Noronha Silva <gns@src.gnome.org>
Date:   2004-05-08 14:35:59 +0000

    translation update done by "Raphael Higino" <raphaelh@uai.com.br>
    
    	* pt_BR.po: translation update done by
    	  "Raphael Higino" <raphaelh@uai.com.br>

 po/ChangeLog |  5 +++++
 po/pt_BR.po  | 68 +++++++++++++++++++++++++++++++++---------------------------
 2 files changed, 43 insertions(+), 30 deletions(-)

commit b912077d69d26d803985827f1df805f2ead07e2c
Author: Adam Weinberger <adamw@src.gnome.org>
Date:   2004-04-30 22:30:30 +0000

    Added Canadian English translation.
    
    
    	* en_CA.po: Added Canadian English translation.

 po/ChangeLog |   4 ++
 po/en_CA.po  | 137 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 141 insertions(+)

commit 17f0d440db279f3737c1294d12f7748eb7232375
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-04-30 20:55:02 +0000

    Translation updated by Elros Cyriatan.
    
    2004-04-30  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |  4 ++++
 po/nl.po     | 50 +++++++++++++++++++++++++++++---------------------
 2 files changed, 33 insertions(+), 21 deletions(-)

commit 34291ac1fcd56d20533a89a9158375083bb6bc26
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-04-29 20:18:56 +0000

    Updated to new API in gtk#
    
    2004-04-29  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs: Updated to new API in gtk#

 ChangeLog          | 4 ++++
 src/ChannelList.cs | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 57788123cff48c3d2e5e73cfa4871e3f4eda2a63
Author: Gareth Owen <gowen@src.gnome.org>
Date:   2004-04-27 22:18:24 +0000

    Updated British English translation

 po/ChangeLog |  4 ++++
 po/en_GB.po  | 50 +++++++++++++++++++++++++++++---------------------
 2 files changed, 33 insertions(+), 21 deletions(-)

commit c6eeef573ba1f112a8b9c58e26db6cde30984b6a
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-04-27 16:09:20 +0000

    Parse dd MMM yyyy HH':'mm':'ss date strings.
    
    2004-04-27  Mikael Hallendal  <micke@imendio.com>
    
    	* src/rss/RssReader.cs: Parse dd MMM yyyy HH':'mm':'ss date strings.

 ChangeLog            | 4 ++++
 src/rss/RssReader.cs | 8 ++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

commit ce898a42362263c3a13c0f974c9f68b52f4c1bb1
Author: Miloslav Trmac <mitr@volny.cz>
Date:   2004-04-26 13:15:37 +0000

    Updated Czech translation.
    
    2004-04-26  Miloslav Trmac  <mitr@volny.cz>
    
    	* cs.po: Updated Czech translation.

 po/ChangeLog |  4 ++++
 po/cs.po     | 50 +++++++++++++++++++++++++++++---------------------
 2 files changed, 33 insertions(+), 21 deletions(-)

commit 3e1dd923a5d84c52d76066a518e6a6773e874547
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-04-25 15:32:51 +0000

    *** NOTICE, You will need to remove ~/.gnome2/blam/blam.db ***
    
    2004-04-25  Mikael Hallendal  <micke@imendio.com>
    
            *** NOTICE, You will need to remove ~/.gnome2/blam/blam.db ***
    
    	* blam.in: Don't LD_ASSUME_KERNEL
    
    	* src/*:
    	- Restructured the database some to make the application start
    	  faster. This means the people already using blam will have to start
    	  a new database file (see notice above).
    	- Since blam is mainly an application for myself that I've made
    	  available for any others wanting it I didn't want to put down all
    	  the time into automatically updating database files. In the future
    	  I might change to an XML file instead which makes changes easier
    	  (since Sqlite doesn't support ALTER TABLE).

 ChangeLog            |  16 +++
 blam.in              |   2 +-
 src/Application.cs   |   7 +-
 src/Channel.cs       |  68 ++++-----
 src/ChannelDialog.cs |   6 +-
 src/ChannelList.cs   |  29 ++--
 src/Database.cs      | 380 +++++++++++++++++----------------------------------
 src/FeedUpdater.cs   |  20 +--
 src/ItemView.cs      |  10 +-
 src/RssUpdater.cs    |   6 +-
 src/blam.glade       | 224 +++++++++++++++++++++++++++++-
 11 files changed, 441 insertions(+), 327 deletions(-)

commit 3fe112d2ef98f9b3d6af2574266c5eebd00bccdc
Author: Todd Berman <tberman@sevenl.net>
Date:   2004-04-23 22:41:12 +0000

    Change to ctor to track gtk-sharp cvs.
    
    2004-04-23  Todd Berman  <tberman@sevenl.net>
    
            * src/Spinner.cs: Change to ctor to track gtk-sharp cvs.

 ChangeLog      | 4 ++++
 src/Spinner.cs | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit ed4fa0743436b21d0dcc5227ff0bea9568210f45
Author: Gareth Owen <gowen@src.gnome.org>
Date:   2004-04-09 00:26:44 +0000

    Updated British English translation

 po/ChangeLog |   4 ++
 po/en_GB.po  | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 130 insertions(+)

commit 96366b6f67638cfe94a6de64a41c9540d643b8c6
Author: Yuri Syrota <rasta@src.gnome.org>
Date:   2004-04-06 07:37:52 +0000

    Added Ukrainian translation

 po/ChangeLog |   4 ++
 po/uk.po     | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 130 insertions(+)

commit 60ca477d717751f246166e569da0af9b83a025dd
Author: Baris Cicek <bcicek@src.gnome.org>
Date:   2004-03-29 23:37:05 +0000

    Updated Turkish Translation

 po/ChangeLog |  4 ++++
 po/tr.po     | 61 ++++++++++++++++++++++++++++++++----------------------------
 2 files changed, 37 insertions(+), 28 deletions(-)

commit 9f4becd812099d59f112f59082e32b6a33d2eb6b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-03-26 16:21:13 +0000

    - Get channels and items sorted from the database, speeds up putting them
    
    2004-03-26  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs:
    	* src/Database.cs:
    	* src/ItemList.cs:
    	- Get channels and items sorted from the database, speeds up putting
    	  them all in the tree.

 ChangeLog          | 8 ++++++++
 src/ChannelList.cs | 3 ++-
 src/Database.cs    | 5 +++--
 src/ItemList.cs    | 2 ++
 4 files changed, 15 insertions(+), 3 deletions(-)

commit fa086f30bf883d259666117c64ee2d04929f87b2
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   2004-03-20 14:04:42 +0000

    *** empty log message ***

 po/ChangeLog |  4 ++++
 po/hr.po     | 37 ++++++++++++++++++++-----------------
 2 files changed, 24 insertions(+), 17 deletions(-)

commit 3a6f10bf75d0dd20cca544816d020efffe489840
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-03-19 16:42:33 +0000

    Support lewing's blog ;)
    
    2004-03-19  Mikael Hallendal  <micke@imendio.com>
    
    	* src/rss/RssReader.cs: Support lewing's blog ;)

 ChangeLog            | 4 ++++
 src/rss/RssReader.cs | 8 +++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

commit 9039a20218e2883253befd3669b3ff6ea7832eaa
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-03-19 12:08:02 +0000

    - Removed old work-arounds that has since been fixed in Gtk#.
    
    2004-03-19  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-utils.c:
    	* libblam/blam-utils.h:
    	* src/Application.cs:
    	* src/ChannelDialog.cs:
    	* src/ChannelList.cs:
    	* src/ItemList.cs:
    	* src/ItemView.cs:
    	* src/Utils.cs:
    	- Removed old work-arounds that has since been fixed in Gtk#.

 ChangeLog            | 12 +++++++++++
 libblam/blam-utils.c | 61 ----------------------------------------------------
 libblam/blam-utils.h | 16 --------------
 src/Application.cs   | 19 ++++++++--------
 src/ChannelDialog.cs | 22 ++++++++++---------
 src/ChannelList.cs   | 28 +++++++++++++-----------
 src/ItemList.cs      | 26 ++++++++++++++--------
 src/ItemView.cs      | 12 ++++++++++-
 src/Utils.cs         | 25 ---------------------
 9 files changed, 78 insertions(+), 143 deletions(-)

commit 16d00c12d1f607b1dc23f6be2a193bb238103846
Author: Francisco Javier F. Serrador <serrador@cvs.gnome.org>
Date:   2004-03-18 20:27:51 +0000

    Added Spanish translation.
    
    2004-03-18  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
    
    	* es.po: Added Spanish translation.

 po/ChangeLog |   4 ++
 po/es.po     | 129 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 133 insertions(+)

commit 8582c508982f89850dbd6f77efb651697528af9a
Author: Christophe Merlet <redfox@src.gnome.org>
Date:   2004-03-14 11:51:31 +0000

    Added French translation.

 ChangeLog    |   4 ++
 blam.desktop |   2 +
 po/ChangeLog |   5 +++
 po/fr.po     | 130 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 141 insertions(+)

commit 3cba99a1035798982ab14a0ef2b0ef20c81e9bb8
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-03-13 03:15:15 +0000

    Updated
    
    2004-03-13  Mikael Hallendal  <micke@imendio.com>
    
    	* TODO: Updated

 ChangeLog | 4 ++++
 TODO      | 9 ++++-----
 2 files changed, 8 insertions(+), 5 deletions(-)

commit b5d357d90c31e4bc39de0075fd438151e3c939db
Author: Gustavo Maciel Dias Vieira <gdvieira@zaz.com.br>
Date:   2004-03-10 18:11:38 +0000

    Added Brazilian Portuguese translation done by Everson Santos Araujo
    
    2004-03-10  Gustavo Maciel Dias Vieira  <gdvieira@zaz.com.br>
    
            * pt_BR.po: Added Brazilian Portuguese translation done by Everson
            Santos Araujo <nobios@por.com.br>.

 po/ChangeLog |   5 +++
 po/pt_BR.po  | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 132 insertions(+)

commit a4b3b168bc90bbdfdb1dafc562ddd0434ff47017
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-03-05 13:43:25 +0000

    - Updated to work (compile) with latest Gtk-sharp. Seems something is a
    
    2004-03-05  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs:
    	* src/ItemList.cs:
    	- Updated to work (compile) with latest Gtk-sharp. Seems something is a
    	  bit flaky though.

 ChangeLog          |  7 +++++++
 src/ChannelList.cs | 12 ++++++------
 src/ItemList.cs    |  4 ++--
 3 files changed, 15 insertions(+), 8 deletions(-)

commit 70ed1d7a50cbedefe9231307bcc70324f3df510f
Author: Guntupalli Karunakar <karunakar@src.gnome.org>
Date:   2004-03-03 15:31:22 +0000

    Added Punjabi translation

 po/ChangeLog |   5 +++
 po/pa.po     | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 131 insertions(+)

commit c08093832dd447777234ec603b93c76565feb2dd
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   2004-02-25 12:10:38 +0000

    Added Catalan translation.

 ChangeLog    | 4 ++++
 blam.desktop | 2 ++
 2 files changed, 6 insertions(+)

commit 6f087040375e1b4f5e170f4b514f5a902bad49e5
Author: Jordi Mallach <jordim@src.gnome.org>
Date:   2004-02-25 12:07:36 +0000

    Added Catalan translation by Aleix Badia i Bosch <abadia@ica.es>.

 po/ChangeLog |   5 +++
 po/ca.po     | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 131 insertions(+)

commit 57852c64dea23fd9a8dca03b49d291d90ced32e5
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   2004-02-21 01:15:54 +0000

    Added Portuguese translation.
    
    2004-02-21  Duarte Loreto <happyguy_pt@hotmail.com>
    
    	* blam.desktop: Added Portuguese translation.

 ChangeLog    | 4 ++++
 blam.desktop | 2 ++
 2 files changed, 6 insertions(+)

commit aca3140d4201c486d829bd2b83ec523df7e270b8
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:   2004-02-21 01:13:17 +0000

    Added Portuguese translation.
    
    2004-02-21  Duarte Loreto <happyguy_pt@hotmail.com>
    
    	* pt.po: Added Portuguese translation.

 po/ChangeLog |   4 ++
 po/pt.po     | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 130 insertions(+)

commit 4134228c7bb0ffc15fe46ce984f1967e92fe9add
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   2004-02-16 17:07:03 +0000

    Added Albanian translation
    
    * sq.po: Added Albanian translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit c4343d8e3aca3fb52b13a66d9cd6784db2fa8717
Author: Laurent Dhima <laurenti@src.gnome.org>
Date:   2004-02-16 17:05:16 +0000

    Added Albanian file

 po/sq.po | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 127 insertions(+)

commit 98d3b53ff584bc346c1cf50a66d372f359b1ff3d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-02-14 01:13:39 +0000

    - Add Channels in an idle.
    
    2004-02-14  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs:
    	- Add Channels in an idle.
    
    	* src/RssUpdater.cs: Don't always keep a thread running in the
    	  background, start when needed.

 ChangeLog          |  8 +++++++
 src/Application.cs |  4 +---
 src/ChannelList.cs | 28 ++++++++++++++++++-----
 src/RssUpdater.cs  | 67 ++++++++++++++++++++----------------------------------
 4 files changed, 56 insertions(+), 51 deletions(-)

commit cac50c33a924e5aeac607e1949714e755fc1be28
Author: Funda Wang <fwang@src.gnome.org>
Date:   2004-02-11 08:30:25 +0000

    Added Simplified Chinese translation

 po/ChangeLog |   4 ++
 po/zh_CN.po  | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 130 insertions(+)

commit daef4d1918635204eb2448f6c5cf45bc88e2cd61
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-02-06 14:40:13 +0000

    Run with LD_ASSUME_KERNEL=2.2.5
    
    2004-02-06  Mikael Hallendal  <micke@imendio.com>
    
    	* blam.in: Run with LD_ASSUME_KERNEL=2.2.5
    
    	* src/FeedUpdater.cs:
    	- Removed some debug output
    	- Use 3 seconds for timeout for now, seems to be pretty random anyway.

 ChangeLog          | 8 ++++++++
 blam.in            | 2 +-
 src/FeedUpdater.cs | 7 ++-----
 3 files changed, 11 insertions(+), 6 deletions(-)

commit 6350f1e177fd21ec82b1f55a03a2083830337eaf
Author: Kostas Papadimas <pkst@src.gnome.org>
Date:   2004-02-05 19:57:57 +0000

    Added the Greek translation

 po/ChangeLog |   4 ++
 po/el.po     | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 132 insertions(+)

commit 5f80fd3dbc79d81ca59e12725c053ef23cbe0f79
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-02-05 16:17:28 +0000

    Added a timeout when trying to read feeds. Now Advogato no longer blocks
    
    2004-02-05  Mikael Hallendal  <micke@imendio.com>
    
    	* src/FeedUpdater.cs: Added a timeout when trying to read feeds. Now
    	  Advogato no longer blocks the entire list :)

 ChangeLog          |  5 +++++
 src/FeedUpdater.cs | 28 ++++++++++++++++++++++------
 2 files changed, 27 insertions(+), 6 deletions(-)

commit 088688a95b4727c57c7d9f90ef8ebc063df55236
Author: Christian Neumair <cneumair@src.gnome.org>
Date:   2004-02-04 20:43:37 +0000

    Added German translation.

 po/ChangeLog |   4 ++
 po/de.po     | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 129 insertions(+)

commit b7464f346a15a1d6a085d87ab419474c34b52ee0
Author: Alastair McKinstry <alastairmck@src.gnome.org>
Date:   2004-02-04 19:14:19 +0000

    Add Irish translation

 po/ChangeLog |   4 ++
 po/ga.po     | 123 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 127 insertions(+)

commit a85032303e5035b8c429f91a048e4ed0611775ae
Author: Denis Lackovic <delacko@src.gnome.org>
Date:   2004-02-01 19:00:09 +0000

    *** empty log message ***

 po/ChangeLog |   4 ++
 po/hr.po     | 122 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 126 insertions(+)

commit 2ac3571893b219e90a4b04ac0994bfe3e461ab97
Author: Görkem Çetin <gorkem@src.gnome.org>
Date:   2004-01-31 07:46:49 +0000

    CVS_SILENT

 po/tr.po | 121 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 121 insertions(+)

commit 6598ad27e500fcd1915608d5114a819e886f8362
Author: Richard Hult <richard@imendio.com>
Date:   2004-01-30 12:24:05 +0000

    Adhere to the life style! (And fix a typo.)
    
    2004-01-30  Richard Hult  <richard@imendio.com>
    
    	* configure.in: Adhere to the life style! (And fix a typo.)

 ChangeLog    | 4 ++++
 configure.in | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 184502d5af00dd9771fce6699b23c552f042b10b
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   2004-01-29 08:03:36 +0000

    Added Norwegian translation.
    
    2004-01-29  Kjartan Maraas  <kmaraas@gnome.org>
    
    	* no.po: Added Norwegian translation.

 po/ChangeLog |   4 ++
 po/no.po     | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 131 insertions(+)

commit 20dcf8e58066e4b26af2c09523a812b760bebdbe
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   2004-01-28 10:29:54 +0000

    Fixed Czech translation

 po/ChangeLog | 4 ++++
 po/cs.po     | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 5f99f0446317263a6a8c542d4ee93c60dd05a4d7
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-27 12:07:43 +0000

    Don't change datetime format depending on locale.
    
    2004-01-27  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Database.cs: Don't change datetime format depending on locale.

 ChangeLog       |  4 ++++
 src/Database.cs | 13 ++++++++++---
 2 files changed, 14 insertions(+), 3 deletions(-)

commit 473f504db24563d23fd180c7d36229cc96cc8632
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-26 20:18:37 +0000

    - updated
    
    2004-01-26  Mikael Hallendal  <micke@imendio.com>
    
    	* TODO:
    	- updated
    	* blam.in:
    	- Don't always run in en_US
    	- Don't run with debug
    	* configure.in: bumped version.
    	* src/FeedUpdater.cs:
    	- Fixed HTTP header information reported by Andrew Sidwell

 ChangeLog          | 11 +++++++++++
 TODO               |  2 ++
 blam.in            |  2 +-
 configure.in       |  2 +-
 src/FeedUpdater.cs |  2 +-
 5 files changed, 16 insertions(+), 3 deletions(-)

commit 5f3e205e5c38e911aa68a3f7bb47d2f3ccf663d9
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-01-24 11:27:23 +0000

    Translation updated by Elros Cyriatan.
    
    2004-01-24  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation updated by Elros Cyriatan.

 po/ChangeLog |  4 ++++
 po/nl.po     | 18 +++++++++---------
 2 files changed, 13 insertions(+), 9 deletions(-)

commit 0106a832c30b3430210bd85c59dc14d127bb9e97
Author: Miloslav Trmac <mitr@src.gnome.org>
Date:   2004-01-23 16:55:23 +0000

    Add Czech translation

 po/ChangeLog |   4 ++
 po/cs.po     | 127 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 131 insertions(+)

commit 07855f4eec1a41c9e5bd62a150037b2f341fddbc
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-21 01:39:45 +0000

    Fixed gconf install rules reported by Eugenia Loli-Queru. Changed default
    
    2004-01-21  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am: Fixed gconf install rules reported by Eugenia Loli-Queru.
    	* blam.schemas: Changed default hight of item list to 100.

 ChangeLog       | 5 +++++
 Makefile.am     | 5 ++++-
 TODO            | 2 --
 blam.schemas    | 2 +-
 src/Cache.cs    | 1 -
 src/ItemView.cs | 1 -
 6 files changed, 10 insertions(+), 6 deletions(-)

commit 41a66dd3e0d7d3c8027992b501fbc65005ab6b94
Author: Vincent van Adrighem <adrighem@gnome.org>
Date:   2004-01-17 16:38:47 +0000

    Translation added by Elros Cyriatan.
    
    2004-01-17  Vincent van Adrighem  <adrighem@gnome.org>
    
    	* nl.po: Translation added by Elros Cyriatan.

 po/ChangeLog |   4 ++
 po/nl.po     | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 132 insertions(+)

commit dcb0d430ecc831e1a9a0386a59b9cacebe93816d
Author: Christian Rose <menthos@menthos.com>
Date:   2004-01-17 13:04:10 +0000

    Updated Swedish translation.
    
    2004-01-17  Christian Rose  <menthos@menthos.com>
    
    	* sv.po: Updated Swedish translation.

 po/ChangeLog |  4 ++++
 po/sv.po     | 54 +++++++++++++++++++++++++++++++++++++++++++++---------
 2 files changed, 49 insertions(+), 9 deletions(-)

commit 2c8b97bf3a72eef116bbb3c8ef8034b1b64fa93b
Author: Danilo Šegan <dsegan@gmx.net>
Date:   2004-01-17 01:59:43 +0000

    Added Serbian translation of Name and Comment.
    
    2004-01-17  Danilo Šegan  <dsegan@gmx.net>
    
    	* blam.desktop: Added Serbian translation of Name and Comment.
    
    	* po/sr.po, po/sr@Latn.po: Added Serbian translation.

 ChangeLog     |   4 ++
 blam.desktop  |   4 ++
 po/ChangeLog  |   4 ++
 po/sr.po      | 129 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sr@Latn.po | 129 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 270 insertions(+)

commit f8a0915a5b28f08f8f04261b7f53c17a92d45220
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-16 23:47:17 +0000

    - Added function from Gossip to ellipsize strings.
    
    2004-01-17  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-utils.c:
    	(ellipsize_string),
    	(blam_ellipsize_and_delimit_string):
    	* libblam/blam-utils.h:
    	- Added function from Gossip to ellipsize strings.
    	* src/ItemList.cs:
    	- Fixed wrapping?
    	- Ellipsizes long titles
    	* src/Utils.cs: Added ellipsizing function
    	* src/blam.glade:
    	- No horizontal scrollbars ever.

 ChangeLog            | 14 +++++++++++++
 TODO                 |  2 --
 libblam/blam-utils.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 libblam/blam-utils.h |  6 ++++++
 src/Application.cs   |  4 ++--
 src/ChannelList.cs   |  3 +--
 src/ItemList.cs      | 19 +++++++++++++-----
 src/Utils.cs         |  7 +++++++
 src/blam.glade       |  6 +++---
 9 files changed, 103 insertions(+), 14 deletions(-)

commit d847f0ca4046611ef9605608fb7e97530cd0d12a
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-16 22:24:52 +0000

    Should fix a weird drag'n'drop issue. Added to show how many unread
    
    2004-01-16  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-utils.c:
    	(drag_data_received_cb): Should fix a weird drag'n'drop issue.
    	* src/Application.cs: Added to show how many unread messages there is.
    	* src/Database.cs(GetNrOfUnreadItems): Gets total number of unread.
    	* src/FeedUpdater.cs: Don't print out exception if 304 (not updated).
    	* src/blam.glade: Changed the channels label text.

 ChangeLog            |  9 +++++++++
 libblam/blam-utils.c |  1 +
 src/Application.cs   | 31 +++++++++++++++++++++++++------
 src/Database.cs      | 21 +++++++++++++++++++++
 src/FeedUpdater.cs   | 14 ++++++++------
 src/blam.glade       |  2 +-
 6 files changed, 65 insertions(+), 13 deletions(-)

commit 672d275737a5c5e06761fbf9a13807738c9faf37
Author: Christian Rose <menthos@menthos.com>
Date:   2004-01-16 00:57:23 +0000

    Added Swedish translation.
    
    2004-01-16  Christian Rose  <menthos@menthos.com>
    
    	* sv.po: Added Swedish translation.

 po/ChangeLog |   4 +
 po/sv.po     | 329 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 333 insertions(+)

commit 17028fff6037ccd3759cc123d0773721e6ad1fa9
Author: Christian Rose <menthos@menthos.com>
Date:   2004-01-16 00:42:51 +0000

    Added this.
    
    2004-01-16  Christian Rose  <menthos@menthos.com>
    
    	* .cvsignore, POTFILES.in: Added this.

 po/.cvsignore  | 14 ++++++++++++++
 po/ChangeLog   |  4 ++++
 po/POTFILES.in |  3 +++
 3 files changed, 21 insertions(+)

commit d772acf8bac2a64d8b339c6011fc6887932b9f40
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-15 01:22:54 +0000

    Enable row hinting Remove http data when removing channels
    
    2004-01-15  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelList.cs: Enable row hinting
    	* src/Database.cs: Remove http data when removing channels

 ChangeLog          | 5 +++++
 TODO               | 1 +
 src/ChannelList.cs | 2 ++
 src/Database.cs    | 7 +++++++
 4 files changed, 15 insertions(+)

commit 972eb87e7caa741b45f492fd497146a5e48ee157
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-14 23:44:45 +0000

    Release 0.9999 (Yet another '9')
    
    2004-01-15  Mikael Hallendal  <micke@imendio.com>
    
    	* Release 0.9999 (Yet another '9')
    
    	* Makefile.am: include desktop file in tarball
    	* NEWS: updated for 0.9999
    	* configure.in: Buuuumped to 0.9999

 ChangeLog          |  8 ++++++++
 Makefile.am        |  1 +
 NEWS               | 20 ++++++++++++++++++++
 configure.in       |  2 +-
 src/FeedUpdater.cs |  2 --
 5 files changed, 30 insertions(+), 3 deletions(-)

commit 3ccd3c6709e7b605685de0e9f3f31a08b987d60b
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-14 23:26:54 +0000

    - Output feedback while updating feeds
    
    2004-01-15  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	- Output feedback while updating feeds
    	* src/Database.cs:
    	- Updated to version 3
    	- Added ChannelHttpData table to store Last-Modified and ETag.
    	* src/FeedUpdater.cs:
    	- Set last modified values so that we don't fetch a lot of data
    	  for now reason
    	- Fixelifixed some debug output on console.
    	* src/RssUpdater.cs:
    	- Emit update status events.

 ChangeLog          |  14 +++++++
 TODO               |  11 ++---
 src/Application.cs |  57 +++++++++++++++++++-------
 src/Channel.cs     |   4 +-
 src/Database.cs    | 116 ++++++++++++++++++++++++++++++++++++++++++++++++++---
 src/FeedUpdater.cs |  41 +++++++++++++++++--
 src/RssUpdater.cs  |  19 +++++++++
 7 files changed, 231 insertions(+), 31 deletions(-)

commit 80cabb181a5d7cd41ef2a56698b6c9cb1811db43
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-14 16:16:35 +0000

    Actually set the edit icon
    
    2004-01-14  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ChannelDialog.cs: Actually set the edit icon

 ChangeLog            | 4 ++++
 src/ChannelDialog.cs | 3 +++
 2 files changed, 7 insertions(+)

commit 9783a5276106ab60ba29cb79b82c6839dd838918
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-14 15:01:52 +0000

    - mono --profile is a nice help - cache some db values.
    
    2004-01-14  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	* src/Channel.cs:
    	* src/Database.cs:
    	- mono --profile is a nice help
    	- cache some db values.

 ChangeLog          |  8 ++++++++
 TODO               |  2 +-
 src/Application.cs | 17 ++++++++++++-----
 src/Channel.cs     | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
 src/Database.cs    |  6 +++---
 5 files changed, 76 insertions(+), 11 deletions(-)

commit 41228338082ce5d80bc430e477b399698da8329c
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-14 03:56:23 +0000

    - Added window icons to all windows and dialogs.
    
    2004-01-14  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Application.cs:
    	* src/ChannelDialog.cs:
    	* src/Makefile.am:
    	* src/Printing.cs:
    	- Added window icons to all windows and dialogs.

 ChangeLog            |  8 ++++++++
 src/Application.cs   |  5 ++++-
 src/ChannelDialog.cs |  2 +-
 src/Makefile.am      | 35 ++++++++++++++++++-----------------
 src/Printing.cs      |  2 ++
 5 files changed, 33 insertions(+), 19 deletions(-)

commit f76063dcff68acf5a0b5cff10603013ef0ad001a
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-14 03:48:04 +0000

    Install desktop file Added, not translated atm. Great new artwork from
    
    2004-01-14  Mikael Hallendal  <micke@imendio.com>
    
    	* Makefile.am: Install desktop file
    	* blam.desktop: Added, not translated atm.
    	* icons/*: Great new artwork from Daniel Taylor.
    	* libblam/blam-channel-menu.c: Added Update Channel
    	* src/Application.cs:
    	- Made the Remove button an Update All button in main window
    	* src/BlogItem.cs:
    	- Added a channel ref to not have to get it from the db each time.
    	* src/Channel.cs: Added Image attribute
    	* src/ChannelDialog.cs: Added image entry
    	* src/ChannelList.cs: Made double click bring up channel edit window
    	* src/Database.cs:
    	- Added image to Channel table
    	- Bumped the db version to 2
    	- Added DB-version update code
    	* src/FeedUpdater.cs: Readded debug outpus, pretty useful for now.
    	* src/ItemView.cs: Added support for images
    	* src/Makefile.am: Added two images to channel edit dialog
    	* src/RssUpdater.cs: Don't auto-update. Only user action now.
    	* src/blam.glade: Added support for the above.

 ChangeLog                   |  37 +++--
 Makefile.am                 |   2 +
 TODO                        |  17 ++-
 blam.desktop                |  11 ++
 icons/Makefile.am           |  11 +-
 icons/blam-about.png        | Bin 0 -> 36548 bytes
 icons/blam-about.svg        | 333 ++++++++++++++++++++++++++++++++++++++++++++
 icons/blam-add-news.png     | Bin 0 -> 3493 bytes
 icons/blam-edit-news.png    | Bin 0 -> 3593 bytes
 icons/blam.png              | Bin 44155 -> 4338 bytes
 icons/blam.svg              | 121 ++++++++++++++++
 libblam/blam-channel-menu.c |  13 +-
 src/Application.cs          |  64 +++++----
 src/BlogItem.cs             |  12 +-
 src/Channel.cs              |  16 ++-
 src/ChannelDialog.cs        | 122 +++++++++++++---
 src/ChannelList.cs          |  52 ++++---
 src/Database.cs             | 273 +++++++++++++++++++++++++-----------
 src/FeedUpdater.cs          |   4 +-
 src/ItemView.cs             |  43 +++---
 src/Makefile.am             |   6 +-
 src/RssUpdater.cs           |  17 ++-
 src/blam.glade              | 242 ++++++++++++++++++++++++++++----
 23 files changed, 1167 insertions(+), 229 deletions(-)

commit c24225cab07f899b4cca12c8cb755c39e40efa9d
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-12 21:29:11 +0000

    - Removed g_object_class-private stuff. Now it works on Gtk 2.2 - Thanks
    
    2004-01-12  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in:
    	* libblam/blam-spinner.c:
    	- Removed g_object_class-private stuff. Now it works on Gtk 2.2
    	- Thanks to people in #mono that helped me make sure it works on 2.2
    	* src/ChannelList.cs: removed old unused button handler
    	* src/FeedUpdater.cs: removed debug printouts.
    	* src/ItemView.cs: fixed output and removed debug printouts
    	* src/blam.glade: stupid glade, stored strings in swedish

 ChangeLog              | 11 +++++++++++
 TODO                   |  2 +-
 configure.in           |  2 +-
 libblam/blam-spinner.c |  6 +-----
 src/ChannelList.cs     | 26 --------------------------
 src/FeedUpdater.cs     |  4 ++--
 src/ItemView.cs        | 17 ++++++++---------
 src/blam.glade         | 12 ++++++------
 8 files changed, 30 insertions(+), 50 deletions(-)

commit 92cba33578133fc23ef794c75f199358a0899928
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-12 16:28:34 +0000

    Require libgnomeui 2.2 instead of Gtk 2.3
    
    2004-01-12  Mikael Hallendal  <micke@imendio.com>
    
    	* configure.in: Require libgnomeui 2.2 instead of Gtk 2.3
    
    	* libblam/blam-spinner.c:
    	- Backported to gnome-icon-theme instead of gtk-icon-theme. No longer
    	  needs gtk 2.3

 ChangeLog              |  8 ++++++++
 TODO                   |  2 ++
 configure.in           |  3 ++-
 libblam/blam-spinner.c | 49 ++++++++++++++++++++++++++++---------------------
 4 files changed, 40 insertions(+), 22 deletions(-)

commit 9b61a309d6b289e68fb6332c8ef74dc2c0ad04d9
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-12 11:48:31 +0000

    Fixed formatting
    
    2004-01-12  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemView.cs: Fixed formatting

 ChangeLog       |  4 ++++
 src/ItemView.cs | 26 +++++++++++++++++++-------
 2 files changed, 23 insertions(+), 7 deletions(-)

commit 2487520497dce42366d83b65ba071fc64e22c001
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-12 11:13:12 +0000

    Trim item and item.Link strings before adding to db.
    
    2004-01-12  Mikael Hallendal  <micke@imendio.com>
    
    	* src/Database.cs: Trim item and item.Link strings before adding to db.

 ChangeLog       | 4 ++--
 src/Database.cs | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

commit b1f3eae22ec3ed0124b8b3c4717a73a9a5671166
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-12 11:09:40 +0000

    - Don't proxy event if data == NULL.
    
    2004-01-12  Mikael Hallendal  <micke@imendio.com>
    
    	* libblam/blam-utils.c: (drag_data_received_cb):
    	- Don't proxy event if data == NULL.
    
    	* src/Application.cs: Removed debug printout
    
    	* src/Database.cs: Trim the title before adding to database

 ChangeLog            | 9 +++++++++
 libblam/blam-utils.c | 4 +++-
 src/Application.cs   | 3 ---
 src/Database.cs      | 2 +-
 4 files changed, 13 insertions(+), 5 deletions(-)

commit 8f1a28883da81a259c8742ac44d1fb9ed4193754
Author: Mikael Hallendal <micke@imendio.com>
Date:   2004-01-12 10:40:06 +0000

    Sort ascending
    
    2004-01-12  Mikael Hallendal  <micke@imendio.com>
    
    	* src/ItemList.cs: Sort ascending

 ChangeLog       | 4 ++++
 src/ItemList.cs | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 7282b7866a2a83bd3c3d02ca37e90d9b57ba8c0c
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-01-12 04:17:40 +0000

    Imported sources

commit 50291c37e275faf0b5d5ba5871670a65b1f24810
Author: Mikael Hallendal <hallski@src.gnome.org>
Date:   2004-01-12 04:17:40 +0000

    Initial revision

 .cvsignore                                         |  15 +
 AUTHORS                                            |   1 +
 COPYING                                            | 340 +++++++
 ChangeLog                                          | 290 ++++++
 INSTALL                                            |   1 +
 Makefile.am                                        |  22 +
 NEWS                                               |   4 +
 README                                             |  17 +
 TODO                                               |  13 +
 autogen.sh                                         |  82 ++
 blam.in                                            |   6 +
 blam.schemas                                       |  63 ++
 configure.in                                       |  67 ++
 icons/.cvsignore                                   |   2 +
 icons/Makefile.am                                  |   4 +
 icons/blam.png                                     | Bin 0 -> 44155 bytes
 libblam/.cvsignore                                 |   4 +
 libblam/Makefile.am                                |  18 +
 libblam/blam-channel-menu.c                        | 100 +++
 libblam/blam-channel-menu.h                        |  31 +
 libblam/blam-spinner.c                             | 576 ++++++++++++
 libblam/blam-spinner.h                             |  71 ++
 libblam/blam-utils.c                               |  98 ++
 libblam/blam-utils.h                               |  43 +
 src/.cvsignore                                     |   5 +
 src/Application.cs                                 | 541 +++++++++++
 src/BlogItem.cs                                    |  46 +
 src/Cache.cs                                       |  80 ++
 src/Channel.cs                                     |  78 ++
 src/ChannelDialog.cs                               | 125 +++
 src/ChannelList.cs                                 | 391 ++++++++
 src/Database.cs                                    | 488 ++++++++++
 src/FeedUpdater.cs                                 |  92 ++
 src/ItemList.cs                                    | 182 ++++
 src/ItemView.cs                                    | 324 +++++++
 src/Makefile.am                                    |  53 ++
 src/Printing.cs                                    |  96 ++
 src/RssUpdater.cs                                  |  78 ++
 src/Spinner.cs                                     |  45 +
 src/Utils.cs                                       |  56 ++
 src/blam.glade                                     | 999 +++++++++++++++++++++
 src/rss/.cvsignore                                 |   3 +
 src/rss/Collections/ExceptionCollection.cs         | 109 +++
 src/rss/Collections/RssCategoryCollection.cs       |  95 ++
 src/rss/Collections/RssChannelCollection.cs        |  94 ++
 src/rss/Collections/RssFeedCollection.cs           | 113 +++
 src/rss/Collections/RssItemCollection.cs           | 139 +++
 src/rss/Collections/RssModuleCollection.cs         |  99 ++
 src/rss/Collections/RssModuleItemCollection.cs     | 116 +++
 .../RssModuleItemCollectionCollection.cs           |  99 ++
 src/rss/Makefile.am                                |  45 +
 src/rss/README.txt                                 |   2 +
 src/rss/RssChannel/RssChannel.cs                   | 219 +++++
 src/rss/RssChannel/RssCloud.cs                     |  77 ++
 src/rss/RssChannel/RssImage.cs                     |  90 ++
 src/rss/RssChannel/RssTextInput.cs                 |  76 ++
 src/rss/RssFeed.cs                                 | 265 ++++++
 src/rss/RssItem/RssEnclosure.cs                    |  63 ++
 src/rss/RssItem/RssGuid.cs                         |  55 ++
 src/rss/RssItem/RssItem.cs                         | 126 +++
 src/rss/RssItem/RssSource.cs                       |  55 ++
 src/rss/RssModule.cs                               |  91 ++
 src/rss/RssModuleItem.cs                           | 147 +++
 src/rss/RssModules/RssBlogChannel.cs               |  61 ++
 src/rss/RssModules/RssCreativeCommon.cs            |  66 ++
 src/rss/RssModules/RssPhotoAlbum.cs                | 367 ++++++++
 src/rss/RssReader.cs                               | 711 +++++++++++++++
 src/rss/RssWriter.cs                               | 607 +++++++++++++
 src/rss/Shared/DBBool.cs                           | 172 ++++
 src/rss/Shared/RssCategory.cs                      |  58 ++
 src/rss/Shared/RssCompact.cs                       |  46 +
 src/rss/Shared/RssDefault.cs                       |  79 ++
 src/rss/Shared/RssElement.cs                       |  41 +
 src/rss/Shared/RssEnumerators.cs                   |  68 ++
 74 files changed, 10001 insertions(+)