123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- Change log for Adventure versions
- #################################
- Version NEXT
- ============
- :Released: FUTURE
- :Maintainer: UNKNOWN
- * Update outdated link to repository in Distutils configuration.
- * Add top-level README for visitors to GitHub.
- Version 1.4
- ===========
- :Released: 2016-01-31
- :Maintainer: Brandon Craig Rhodes <brandon@rhodesmill.org>
- * Import readline to support command line editing.
- * Add Apache 2.0 license terms.
- * Bug fix: A motion-based death was going undetected.
- * Test fix: Run README.txt as doctest in a temp directory.
- Version 1.3
- ===========
- :Released: 2012-04-27
- :Maintainer: Brandon Craig Rhodes <brandon@rhodesmill.org>
- * Installs on Windows.
- Specify encoding when opening the README.
- * Fixed undefined commands.
- Make sure that no verbs are unimplemented and raise an exception.
- Version 1.2
- ===========
- :Released: 2012-04-05
- :Maintainer: Brandon Craig Rhodes <brandon@rhodesmill.org>
- * Restoring saves from command line.
- Give "python -m adventure" a real argparse command line, that can
- take a savefile filename to restore; previously there was no way for
- someone using plain console mode to restore a saved game.
- * 5-letter commands.
- Adjust game vocabulary to accept the old 5-letter command
- abbreviations.
- Version 1.1
- ===========
- :Released: 2011-03-12
- :Maintainer: Brandon Craig Rhodes <brandon@rhodesmill.org>
- * Traditional mode.
- Add an authentic traditional Adventure game prompt that runs at 1200
- baud.
- * More flexible Python syntax.
- Instead of play() installing symbols into the "builtins" module but
- having to skip one or two important functions, Adventure commands
- now get installed into the caller's global namespace, leaving
- "builtins" intact and unchanged with open() and exit() still
- available.
- Version 1.0
- ===========
- :Released: 2011-02-15
- :Maintainer: Brandon Craig Rhodes <brandon@rhodesmill.org>
- * 100% test coverage.
- * Feature-complete.
- Version 0.3
- ===========
- :Released: 2011-01-31
- :Maintainer: Brandon Craig Rhodes <brandon@rhodesmill.org>
- * First public release.
- ..
- Local variables:
- coding: utf-8
- mode: text
- mode: rst
- End:
- vim: fileencoding=utf-8 filetype=rst :
|