mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-05 10:45:51 +00:00
docs and changelog
This commit is contained in:
parent
fcf901e620
commit
67ff41e820
4 changed files with 3 additions and 4 deletions
|
|
@ -14,6 +14,9 @@ Version 0.4.1
|
|||
|
||||
*yet to be released*
|
||||
|
||||
- All ``create`` arguments from all storages are gone. Vdirsyncer now asks if
|
||||
it should try to create collections.
|
||||
|
||||
Version 0.4.0
|
||||
=============
|
||||
|
||||
|
|
|
|||
|
|
@ -39,8 +39,6 @@ collections = ["from b"]
|
|||
type = filesystem
|
||||
path = ~/.contacts/
|
||||
fileext = .vcf
|
||||
# Create the directory if it doesn't exist: `true` or `false`
|
||||
#create = true
|
||||
|
||||
[storage bob_contacts_remote]
|
||||
type = carddav
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ class FilesystemStorage(Storage):
|
|||
trigger a re-download of everything (but *should* not cause data-loss
|
||||
of any kind).
|
||||
:param encoding: File encoding for items.
|
||||
:param create: Create directories if they don't exist.
|
||||
'''
|
||||
|
||||
storage_name = 'filesystem'
|
||||
|
|
|
|||
|
|
@ -38,7 +38,6 @@ class SingleFileStorage(Storage):
|
|||
|
||||
:param path: The filepath to the file to be written to.
|
||||
:param encoding: Which encoding the file should use. Defaults to UTF-8.
|
||||
:param create: Create the file if it does not exist.
|
||||
|
||||
Example for syncing with :py:class:`vdirsyncer.storage.CaldavStorage`::
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue