From b268b7e2db59a5c84560f19cf12ff9b6625edb2f Mon Sep 17 00:00:00 2001 From: colincoghill Date: Sun, 11 Feb 2018 17:26:47 +1300 Subject: [PATCH] Update README. Preparing for 3.9.6 release. --- README.md | 29 ++++++++++++++++------------- bin/oasisdb | 6 +++--- 2 files changed, 19 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index f300af4..45dd2bb 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,7 @@ oasisqe OASIS Question Engine -Current Status: fifth pre-release, 3.9.5. - -This has most of the functionality of the original OASIS system, but still needs -a lot more documentation and testing. - - -Priority for sixth release is documentation, stability, and question editing. - +Current Version: 3.9.6. Main web site: http://www.oasisqe.com/ @@ -21,6 +14,7 @@ There's a downloadable build at: http://www.oasisqe.com/downloads + Documentation ============= @@ -30,6 +24,7 @@ A copy of the (outdated) 2004 OASIS Manual is at: http://www.oasisqe.com/downloa It's better than nothing, and does describe question creation reasonably well. + What is this? ============= @@ -47,21 +42,29 @@ I have taken the OASIS v3.6 code base, developed mostly in 2001-2004 (by me), an components, refreshing the look and feel, and fixing security issues. This has been a major piece of work, requiring a rewrite of approximately 1/3 of the code. -The plan is to release this code as a series of OSS releases, as I get enough features of the original -system active to be useful to other people. - This code has been developed mostly under the auspices of The University of Auckland, and is used successfully by them. The University does not, however, otherwise endorse it or commit to any support of other users. Feel free to download the software, as it is, and try it out. If you find it useful, use it! Right now it's mostly complete, but needs more documentation and testing. -I'm working on that now, along with some sample content. -If you have any suggestions or improvements, please contact me. +Feel free to file a GitHub Issue, or email. Pull requests will be gladly accepted if I think they're helpful! But contact me before doing a huge amount of work :) + +Who am I? +========= + +I am the primary developer of the OASIS software, and wrote it mostly while I worked at the University of Auckland. + +I left the University in 2013, but continue to maintain and improve OASIS in my free time. I think it's a good +project and would love to see more people use it, or collaborate in some way. + +If you have any suggestions or improvements, please contact me. + + Colin Coghill ( colin@colincoghill.com ) diff --git a/bin/oasisdb b/bin/oasisdb index fafaf6e..ecd8441 100755 --- a/bin/oasisdb +++ b/bin/oasisdb @@ -85,7 +85,7 @@ def cmd_options(): descr = """OASIS Database Tool. Requires a configured OASIS setup, and can be used to initialize/upgrade the OASIS database.""" usage = "%prog [--help] [--version] [command ...]" - version = "%prog 3.9.5" + version = "%prog 3.9.6" oparser = OptionParser(usage=usage, version=version, description=descr) @@ -103,8 +103,8 @@ def cmd_options(): oparser.add_option("--oasis-ver", dest='oaver', metavar="X.Y.Z", - default='3.9.5', - help='work with a specific OASIS version. (default 3.9.5)') + default='3.9.6', + help='work with a specific OASIS version. (default 3.9.6)') oparser.add_option("-v", "--verbose", dest='verbose', default=False,