Skip to content

Commit

Permalink
DOCS: bumped version number for release
Browse files Browse the repository at this point in the history
  • Loading branch information
peircej committed Apr 22, 2014
1 parent f1ef65b commit 03fe0f3
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion buildCompleteInstaller.nsi
Expand Up @@ -2,7 +2,7 @@

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "PsychoPy2"
!define PRODUCT_VERSION "1.80.02"
!define PRODUCT_VERSION "1.80.03"
!define PRODUCT_PUBLISHER "Jon Peirce"
!define PRODUCT_WEB_SITE "http://www.psychopy.org"
;!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\AppMainExe.exe"
Expand Down
8 changes: 8 additions & 0 deletions docs/source/changelog.rst
Expand Up @@ -20,6 +20,14 @@ Changelog
PsychoPy 1.80
------------------------------

PsychoPy 1.80.03
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Released April 2014

* FIXED: Shader code was ignoring opacity setting for ImageStim
* FIXED: Mouse clock was not the same as PsychoPy's general events clock (so out of sync) (Sol & Jeremy)

PsychoPy 1.80.02
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
8 changes: 8 additions & 0 deletions psychopy/CHANGELOG.txt
Expand Up @@ -10,6 +10,14 @@ Changelog
PsychoPy 1.80
------------------------------

PsychoPy 1.80.03
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Released April 2014

* FIXED: Shader code was ignoring opacity setting for ImageStim
* FIXED: Mouse clock was not the same as PsychoPy's general events clock (so out of sync) (Sol & Jeremy)

PsychoPy 1.80.02
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion psychopy/__init__.py
Expand Up @@ -7,7 +7,7 @@
#--------------------------------------------------------------------------

#version info for PsychoPy
__version__='1.80.02'
__version__='1.80.03'
__license__='GNU GPLv3 (or more recent equivalent)'
__author__='Jonathan Peirce'
__author_email__='jon@peirce.org.uk'
Expand Down
5 changes: 3 additions & 2 deletions setupApp.py
Expand Up @@ -24,15 +24,15 @@

import bdist_mpkg, py2app
resources = glob.glob('psychopy/app/Resources/*')
resources.append('/Library/Frameworks/Python.framework/Versions/2.6/include/python2.6/pyconfig.h')
resources.append('/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pyconfig.h')

setup(app=['psychopy/app/psychopyApp.py'],
options=dict(py2app=dict( includes=['Tkinter','FileDialog','tkFileDialog', 'imp', 'subprocess', 'shlex',
'shelve',#for scipy.io
'_elementtree', 'pyexpat',#these 2 are needed by xml, which is needed by openpyxl
'ioLabs','hid',#'pypsignifit', #psignifit is not available on py2.7
'pp','ppauto','ppcommon','pptransport','ppworker',#annoying non-standard structure of pp
'pyo','greenlet',
'pyo','greenlet','vlc',
'PyQt4','zmq','tornado',
],
excludes=[],#anything we need to forcibly exclude?
Expand All @@ -52,6 +52,7 @@
'pyolib',
'pandas','tables',#'cython',
'msgpack','yaml','gevent',#for ioHub
'cv2',
#these aren't needed, but liked
'psychopy_ext','pyfilesec','rusocsci',
],
Expand Down
2 changes: 1 addition & 1 deletion setupApp.sh
Expand Up @@ -14,7 +14,7 @@ rm psychopy/prefSite.cfg

rm -r dist/PsychoPy2.app
rm -r ../dist/PsychoPy2.app
python setupApp.py py2app #shouldn't need sudo for this
python setupApp.py py2app
chmod -R g+w dist/PsychoPy2.app
#strip all other architectures from binaries and move both to ../dist
ditto --rsrc --arch i386 dist/PsychoPy2.app ../dist/PsychoPy2.app
Expand Down
2 changes: 1 addition & 1 deletion version
@@ -1 +1 @@
1.80.02
1.80.03

0 comments on commit 03fe0f3

Please sign in to comment.