summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Brox <tobixen@gmail.com>2013-10-05 20:11:54 +0200
committerTobias Brox <tobixen@gmail.com>2013-10-05 20:11:54 +0200
commit9845ad3d533fb2a04c06e1b7cceb2f2ba7d16ad0 (patch)
tree651a06359f679ada7b74080f61ff36951ed2df38
parent7316f12941762c401a9936140d2cfc0bfd582ddb (diff)
downloadcalendar-cli-9845ad3d533fb2a04c06e1b7cceb2f2ba7d16ad0.zip
Bumped version number, docfix
-rw-r--r--INSTALL.md11
-rw-r--r--README.md2
-rwxr-xr-xcalendar-cli.py2
3 files changed, 14 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
new file mode 100644
index 0000000..36c27f2
--- /dev/null
+++ b/INSTALL.md
@@ -0,0 +1,11 @@
+Installing the calendar-cli
+===========================
+
+No packaging available yet; it's just to copy the python executable into the path, i.e. /usr/local/bin
+
+There are two dependencies;
+
+* icalendar library - I've used https://pypi.python.org/pypi/icalendar
+* caldav library - I've used http://trac.calendarserver.org/wiki/CalDAVClientLibrary (perhaps https://pypi.python.org/pypi/caldav would be a better option?)
+
+Both of those are under development, and has to be installed manually.
diff --git a/README.md b/README.md
index fd60829..05d1127 100644
--- a/README.md
+++ b/README.md
@@ -115,3 +115,5 @@ Status
2013-09-15: Made a repository at github and wrote up this README.
2013-09-24: version 0.01 - supports creating an ical-file based on command line parameters
2013-09-28: version 0.02 - possible to add a calendar item to the caldav server
+2013-10-02: version 0.03 - support for configuration file
+2013-10-05: version 0.04 - no need to specify URL for the default calendar
diff --git a/calendar-cli.py b/calendar-cli.py
index 6b4ff4d..154b1e7 100755
--- a/calendar-cli.py
+++ b/calendar-cli.py
@@ -15,7 +15,7 @@ import json
import os
import logging
-__version__ = "0.03"
+__version__ = "0.04"
__author__ = "Tobias Brox"
__author_short__ = "tobixen"
__copyright__ = "Copyright 2013, Tobias Brox"