Skip to content

Commit

Permalink
release 1.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoruscitti committed Oct 18, 2016
1 parent 6c65b1f commit a1818e1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
N=
V=

VERSION=1.4.8
VERSION=1.4.9

all:
@echo ""
Expand Down
8 changes: 4 additions & 4 deletions data/asistente/js/version.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

window.DESCRIPCION_VERSION = {
version: '1.4.8',
fecha: '26 de Aug del 2016',
commit: '08af1a1',
changelog: ['Merge branch "develop"', 'Creando la función pilas.forzar_habilitacion_de_audio() closes #291', 'Merge branch "master" into develop', 'Arreglos menores en el ejemplo de músicas ref #290', 'Creando la función detener_gradualmente en los sonidos y músicas #290', ]
version: '1.4.9',
fecha: '18 de Oct del 2016',
commit: '6c65b1f',
changelog: ['Agregando opción para habilitar y deshabilitar atajos de teclado para modificar tamaño de fuentes.', 'Merge branch "develop"', 'Merge pull request #292 from DiegoAccorinti/develop', 'Corrección del mensaje de activación forzada del audio.', 'release 1.4.8', ]
}
2 changes: 1 addition & 1 deletion extras/actualizar_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
changelist = item

template = template.\
replace('VERSION_STR', '1.4.8').\
replace('VERSION_STR', '1.4.9').\
replace('FECHA', hoy.strftime('%d de %b del %Y')).\
replace('CHANGELOG_LIST', changelist).\
replace('COMMIT', str(commit))
Expand Down
2 changes: 1 addition & 1 deletion extras/instalador.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

;Name and file
Name "pilas-engine"
OutFile "pilas-engine_1.4.8.exe"
OutFile "pilas-engine_1.4.9.exe"

;Default installation folder
InstallDir "c:\pilas-engine"
Expand Down
2 changes: 1 addition & 1 deletion pilasengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

import widget

VERSION = "1.4.8"
VERSION = "1.4.9"


def handler(signum, frame):
Expand Down
2 changes: 1 addition & 1 deletion setup-mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='pilas-engine',
version="1.4.8",
version="1.4.9",
app=["bin/pilasengine"],
data_files = [
('bin/pilasengine', ['bin/pilasengine']),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setup(
name='pilas',
zip_safe=False,
version="1.4.8",
version="1.4.9",
description="""Pilas Engine - un motor para realizar videojuegos de manera rápida y sencilla.
Es una herramienta orientada a programadores casuales
Expand Down

0 comments on commit a1818e1

Please sign in to comment.