Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
konrad committed Apr 5, 2014
2 parents a681032 + f0efb4a commit da378c1
Show file tree
Hide file tree
Showing 7 changed files with 128 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
v0.2.2 (2014-04-01)
v0.2.4 (2014-04-05)
- Add logo
v0.2.3 (2014-04-01)
- Improve documentation
- Modify README
- Extend Makefile
Expand Down
2 changes: 1 addition & 1 deletion bin/reademption
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ __author__ = "Konrad Foerstner <[email protected]>"
__copyright__ = "2011-2014 by Konrad Foerstner <[email protected]>"
__license__ = "ISC license"
__email__ = "[email protected]"
__version__ = "0.2.3"
__version__ = "0.2.4"

def main():
parser = argparse.ArgumentParser()
Expand Down
Binary file added docs/logo/READemption_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
108 changes: 108 additions & 0 deletions docs/logo/READemption_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.2.3'
release = '0.2.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -110,7 +110,7 @@

# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
#html_logo = None
html_logo = "../logo/READemption_logo.png"

# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
Expand Down
13 changes: 13 additions & 0 deletions reademptionlib/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,23 @@ def __init__(self, args):

def create_project(self, version):
"""Create a new project."""
sys.stdout.write(
" ___ _______ ___ __ _\n"
" / _ \/ __/ _ | / _ \___ __ _ ___ / /_(_)__ ___\n"
" / , _/ _// __ |/ // / -_) ' \/ _ \/ __/ / _ \/ _ \\\n"
"/_/|_/___/_/ |_/____/\__/_/_/_/ .__/\__/_/\___/_//_/\n"
" / /\n"
"====================================================\n"
"========================================\n"
"=======================\n"
"==============\n\n"
"[http://pythonhosted.org/READemption/]\n\n")
project_creator = ProjectCreator()
project_creator.create_root_folder(self._args.project_path)
project_creator.create_subfolders(self._paths.required_folders())
project_creator.create_version_file(self._paths.version_path, version)
sys.stdout.write("Created folder \"%s\" and required subfolders.\n" % (
self._args.project_path))
sys.stdout.write("Created folder \"%s\" and required subfolders.\n" % (
self._args.project_path))
sys.stdout.write("Please copy read files into folder \"%s\" and "
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='READemption',
version='0.2.3',
version='0.2.4',
packages=['reademptionlib', 'tests'],
author='Konrad U. Förstner',
author_email='[email protected]',
Expand Down

0 comments on commit da378c1

Please sign in to comment.