mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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
|
- Fix bug where collection discovery under DAV-storages would produce invalid
|
||||||
XML. See :gh:`688`.
|
XML. See :gh:`688`.
|
||||||
- ownCloud and Baikal are no longer tested.
|
- ownCloud and Baikal are no longer tested.
|
||||||
|
|
||||||
|
Version 0.16.6
|
||||||
|
==============
|
||||||
|
|
||||||
- **Packagers:** Documentation building no longer needs a working installation
|
- **Packagers:** Documentation building no longer needs a working installation
|
||||||
of vdirsyncer.
|
of vdirsyncer.
|
||||||
|
|
||||||
Version 0.16.5
|
Version 0.16.5
|
||||||
==============
|
==============
|
||||||
|
|
||||||
*released on 13 June 2018*
|
|
||||||
|
|
||||||
- **Packagers:** click-log 0.3 is required.
|
- **Packagers:** click-log 0.3 is required.
|
||||||
- All output will now happen on stderr (because of the upgrade of ``click-log``).
|
- 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.
|
Contacts for etesync.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
[storage example_for_etesync_contacts]
|
[storage example_for_etesync_contacts]
|
||||||
email = ...
|
email = ...
|
||||||
secrets_dir = ...
|
secrets_dir = ...
|
||||||
|
|
@ -377,6 +378,7 @@ password. Neither are stored.
|
||||||
Calendars for etesync.
|
Calendars for etesync.
|
||||||
|
|
||||||
::
|
::
|
||||||
|
|
||||||
[storage example_for_etesync_calendars]
|
[storage example_for_etesync_calendars]
|
||||||
email = ...
|
email = ...
|
||||||
secrets_dir = ...
|
secrets_dir = ...
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ from ..http import USERAGENT
|
||||||
|
|
||||||
|
|
||||||
class HttpStorage(RustStorageMixin, Storage):
|
class HttpStorage(RustStorageMixin, Storage):
|
||||||
|
|
||||||
storage_name = 'http'
|
storage_name = 'http'
|
||||||
read_only = True
|
read_only = True
|
||||||
_repr_attributes = ('username', 'url')
|
_repr_attributes = ('username', 'url')
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class SingleFileStorage(RustStorageMixin, Storage):
|
class SingleFileStorage(RustStorageMixin, Storage):
|
||||||
|
|
||||||
storage_name = 'singlefile'
|
storage_name = 'singlefile'
|
||||||
_repr_attributes = ('path',)
|
_repr_attributes = ('path',)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue