Skip to content

Commit

Permalink
Work out a 1.3.7 release for fix of Issue pythonarcade#275.
Browse files Browse the repository at this point in the history
  • Loading branch information
pvcraven committed Nov 2, 2018
1 parent cdc0b27 commit ee667dc
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -35,7 +35,7 @@ Documentation
Latest Release
--------------

Latest version is 1.3.6 released on 2018-10-10.
Latest version is 1.3.7 released on 2018-10-28.

Release notes: http://arcade.academy/release_notes.html

Expand Down
4 changes: 2 additions & 2 deletions arcade/draw_commands.py
Expand Up @@ -214,7 +214,7 @@ def load_textures(file_name: str,
gl.GL_REPEAT)

gl.glTexParameteri(gl.GL_TEXTURE_2D, gl.GL_TEXTURE_MAG_FILTER,
gl.GL_LINEAR)
gl.GL_NEAREST)
gl.glTexParameteri(gl.GL_TEXTURE_2D, gl.GL_TEXTURE_MIN_FILTER,
gl.GL_LINEAR_MIPMAP_LINEAR)
glu.gluBuild2DMipmaps(gl.GL_TEXTURE_2D, gl.GL_RGBA,
Expand Down Expand Up @@ -331,7 +331,7 @@ def load_texture(file_name: str, x: float=0, y: float=0,
gl.GL_REPEAT)

gl.glTexParameteri(gl.GL_TEXTURE_2D, gl.GL_TEXTURE_MAG_FILTER,
gl.GL_LINEAR)
gl.GL_NEAREST)
gl.glTexParameteri(gl.GL_TEXTURE_2D, gl.GL_TEXTURE_MIN_FILTER,
gl.GL_LINEAR_MIPMAP_LINEAR)
glu.gluBuild2DMipmaps(gl.GL_TEXTURE_2D, gl.GL_RGBA,
Expand Down
7 changes: 5 additions & 2 deletions arcade/sound.py
Expand Up @@ -30,6 +30,8 @@ def _load_sound_library():

import platform
system = platform.system()
path_user = None

if system == 'Windows':

import sys
Expand Down Expand Up @@ -72,8 +74,9 @@ def _load_sound_library():

pyglet.have_avbin = False
try:
pyglet.lib.load_library(path_user)
pyglet.have_avbin = True
if path_user is not None:
pyglet.lib.load_library(path_user)
pyglet.have_avbin = True
except ImportError:
pass

Expand Down
2 changes: 1 addition & 1 deletion arcade/version.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python

BUILD = 0
VERSION = "1.3.6"
VERSION = "1.3.7"
RELEASE = VERSION

2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -10,7 +10,7 @@
runpy.run_path('generate_example_thumbnails.py', run_name='__main__')

BUILD = 0
VERSION = "1.3.6"
VERSION = "1.3.7"
RELEASE = VERSION


Expand Down
8 changes: 8 additions & 0 deletions doc/release_notes.rst
Expand Up @@ -5,6 +5,14 @@
Release Notes
=============

Version 1.3.7
-------------

Released 2018-10-28

* Fix for `Issue 275 <https://github.com/pvcraven/arcade/issues/275>`_ where sprites can get blurry.


Version 1.3.6
-------------

Expand Down
14 changes: 14 additions & 0 deletions make.bat
Expand Up @@ -3,6 +3,7 @@
rem Build script for Windows

IF "%~1"=="" GOTO printdoc
IF "%~1"=="dist" GOTO makedist
IF "%~1"=="full" GOTO makefull
IF "%~1"=="fast" GOTO makefast
IF "%~1"=="doc" GOTO makedoc
Expand All @@ -11,6 +12,18 @@ IF "%~1"=="deploy_pypi" GOTO deploy_pypi
IF "%~1"=="deploy_docs" GOTO deploy_docs
GOTO printdoc

:makedist

rmdir /s /q "doc\build"
del /q dist\*.*
python setup.py clean

rem Build the python
python setup.py build
python setup.py bdist_wheel

GOTO end

:makefull
rem -- This builds the project, installs it, and runs unit tests

Expand Down Expand Up @@ -89,6 +102,7 @@ rem -- Print documentation

:printdoc

echo make dist - Builds the distributable file
echo make full - Builds the project, installs it, builds
echo documentation, runs unit tests.
echo make doc Builds the documentation. Documentation
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python

BUILD = 0
VERSION = "1.3.6"
VERSION = "1.3.7"
RELEASE = VERSION

from os import path
Expand Down

0 comments on commit ee667dc

Please sign in to comment.