mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Merge branch '0.16-maintenance'
This commit is contained in:
commit
648cd1ae98
4 changed files with 8 additions and 2 deletions
|
|
@ -15,14 +15,16 @@ Version 0.17.0
|
|||
- Fix bug where collection discovery under DAV-storages would produce invalid
|
||||
XML. See :gh:`688`.
|
||||
- ownCloud and Baikal are no longer tested.
|
||||
|
||||
Version 0.16.6
|
||||
==============
|
||||
|
||||
- **Packagers:** Documentation building no longer needs a working installation
|
||||
of vdirsyncer.
|
||||
|
||||
Version 0.16.5
|
||||
==============
|
||||
|
||||
*released on 13 June 2018*
|
||||
|
||||
- **Packagers:** click-log 0.3 is required.
|
||||
- All output will now happen on stderr (because of the upgrade of ``click-log``).
|
||||
|
||||
|
|
|
|||
|
|
@ -360,6 +360,7 @@ password. Neither are stored.
|
|||
Contacts for etesync.
|
||||
|
||||
::
|
||||
|
||||
[storage example_for_etesync_contacts]
|
||||
email = ...
|
||||
secrets_dir = ...
|
||||
|
|
@ -377,6 +378,7 @@ password. Neither are stored.
|
|||
Calendars for etesync.
|
||||
|
||||
::
|
||||
|
||||
[storage example_for_etesync_calendars]
|
||||
email = ...
|
||||
secrets_dir = ...
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@ from ..http import USERAGENT
|
|||
|
||||
|
||||
class HttpStorage(RustStorageMixin, Storage):
|
||||
|
||||
storage_name = 'http'
|
||||
read_only = True
|
||||
_repr_attributes = ('username', 'url')
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
|
||||
class SingleFileStorage(RustStorageMixin, Storage):
|
||||
|
||||
storage_name = 'singlefile'
|
||||
_repr_attributes = ('path',)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue