Updated the documentation, and advanced to 0.10.

This commit is contained in:
依瑪貓 2017-05-15 14:58:13 +08:00
parent f64e7d3404
commit eee95edee7
3 changed files with 6 additions and 2 deletions

View File

@ -236,6 +236,10 @@ LIBRARY The name of the Basic library. Default to the same
uploads the source files onto the uploads the source files onto the
OpenOffice/LibreOffice Basic storage. 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 -p, --port N The TCP port to communicate with
OpenOffice/LibreOffice. The default is 2002. You can OpenOffice/LibreOffice. The default is 2002. You can
change it if port 2002 is already in use. change it if port 2002 is already in use.

View File

@ -230,7 +230,7 @@ def parse_args():
" an \"Untitied 1\" (in your language) if it is a new" " an \"Untitied 1\" (in your language) if it is a new"
" file.")) " file."))
parser.add_argument( 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() args = parser.parse_args()
# Obtain the absolute path # Obtain the absolute path

View File

@ -29,7 +29,7 @@ if os.path.basename(sys.executable) == "python.bin":
os.path.dirname(sys.executable), "python") os.path.dirname(sys.executable), "python")
setup(name="obasync", setup(name="obasync",
version="0.9", version="0.10",
description="Office Basic macro source synchronizer", description="Office Basic macro source synchronizer",
url="https://pypi.python.org/pypi/obasync", url="https://pypi.python.org/pypi/obasync",
author="imacat", author="imacat",