diff --git a/README.rst b/README.rst index 6e7041f..7727b5e 100644 --- a/README.rst +++ b/README.rst @@ -236,6 +236,10 @@ LIBRARY The name of the Basic library. Default to the same uploads the source files onto the OpenOffice/LibreOffice Basic storage. +--set-passwd Sets the password of the library after upload. Supply + nothing when prompting the new password to remove the + password protection. This does not work with --get. + -p, --port N The TCP port to communicate with OpenOffice/LibreOffice. The default is 2002. You can change it if port 2002 is already in use. diff --git a/bin/obasync b/bin/obasync index bffe704..3be9247 100755 --- a/bin/obasync +++ b/bin/obasync @@ -230,7 +230,7 @@ def parse_args(): " an \"Untitied 1\" (in your language) if it is a new" " file.")) parser.add_argument( - "-v", "--version", action="version", version="%(prog)s 0.9") + "-v", "--version", action="version", version="%(prog)s 0.10") args = parser.parse_args() # Obtain the absolute path diff --git a/setup.py b/setup.py index b396ae8..ae896d8 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ if os.path.basename(sys.executable) == "python.bin": os.path.dirname(sys.executable), "python") setup(name="obasync", - version="0.9", + version="0.10", description="Office Basic macro source synchronizer", url="https://pypi.python.org/pypi/obasync", author="imacat",