Release v 6.5.1
OfflineIMAP v6.5.1 (2012-01-07) - "Quest for stability" ======================================================= * Fixed Maildir regression "flagmatchre" not found. (regressed in 6.5.0) * Have console output go by default to STDOUT and not STDERR (regression in 6.5.0) * Fixed MachineUI to urlencode() output lines again, rather than outputting multi-line items. It's ugly as hell, but it had been that way for years. * Remove the old global locking system. We lock only the accounts that we currently sync, so you can invoke OfflineImap multiple times now as long as you sync different accounts. This system is compatible with all releases >= 6.4.0, so don't run older releases simultanous to this one.
This commit is contained in:
parent
0b85a34fc7
commit
45782ca3ac
@ -13,23 +13,9 @@ others.
|
||||
New Features
|
||||
------------
|
||||
|
||||
* Remove the old global locking system. We lock only the accounts that
|
||||
we currently sync, so you can invoke OfflineImap multiple times now as
|
||||
long as you sync different accounts. This system is compatible with
|
||||
all releases >= 6.4.0, so don't run older releases simultanous to this
|
||||
one.
|
||||
|
||||
Changes
|
||||
-------
|
||||
|
||||
* Have console output go by default to STDOUT and not STDERR (regression
|
||||
in 6.5.0)
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
* Fixed MachineUI to urlencode() output lines again, rather than
|
||||
outputting multi-line items. It's ugly as hell, but it had been that
|
||||
way for years.
|
||||
|
||||
* Fixed Maildir regression "flagmatchre" not found. (regressed in 6.5.0)
|
||||
|
@ -11,6 +11,25 @@ ChangeLog
|
||||
on releases. And because I'm lazy, it will also be used as a draft for the
|
||||
releases announces.
|
||||
|
||||
|
||||
OfflineIMAP v6.5.1 (2012-01-07) - "Quest for stability"
|
||||
=======================================================
|
||||
|
||||
* Fixed Maildir regression "flagmatchre" not found. (regressed in 6.5.0)
|
||||
|
||||
* Have console output go by default to STDOUT and not STDERR (regression
|
||||
in 6.5.0)
|
||||
|
||||
* Fixed MachineUI to urlencode() output lines again, rather than
|
||||
outputting multi-line items. It's ugly as hell, but it had been that
|
||||
way for years.
|
||||
|
||||
* Remove the old global locking system. We lock only the accounts that
|
||||
we currently sync, so you can invoke OfflineImap multiple times now as
|
||||
long as you sync different accounts. This system is compatible with
|
||||
all releases >= 6.4.0, so don't run older releases simultanous to this
|
||||
one.
|
||||
|
||||
OfflineIMAP v6.5.0 (2012-01-06)
|
||||
===============================
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
__all__ = ['OfflineImap']
|
||||
|
||||
__productname__ = 'OfflineIMAP'
|
||||
__version__ = "6.5.0"
|
||||
__version__ = "6.5.1"
|
||||
__copyright__ = "Copyright 2002-2012 John Goerzen & contributors"
|
||||
__author__ = "John Goerzen"
|
||||
__author_email__= "john@complete.org"
|
||||
@ -9,7 +9,7 @@ __description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Suppo
|
||||
__license__ = "Licensed under the GNU GPL v2+ (v2 or any later version)"
|
||||
__bigcopyright__ = """%(__productname__)s %(__version__)s
|
||||
%(__license__)s""" % locals()
|
||||
__homepage__ = "http://github.com/nicolas33/offlineimap"
|
||||
__homepage__ = "http://offlineimap.org"
|
||||
|
||||
banner = __bigcopyright__
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user