Skip to content

Commit

Permalink
release 1.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoruscitti committed Nov 23, 2017
1 parent 1503735 commit ca3484e
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.11
VERSION=1.4.12
VPS_HOST=162.243.50.192

all:
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.11',
fecha: '14 de Jun del 2017',
commit: '8c1bb38',
changelog: ['Merge branch "develop"', 'actualizando manual.', 'Implementando el método luego_de_actualizar en los actores.', 'actualizando manual.', 'Merge branch "develop" of github.com:hugoruscitti/pilas into develop', ]
version: '1.4.12',
fecha: '23 de Nov del 2017',
commit: '1503735d',
changelog: ['Merge branch "develop"', 'Agregando función para obtener todos los actores de la escena closes #303', 'Merge branch "master" into develop', 'Agregando instrucciones para instalar pyqt4.', 'Resolviendo conflicto de versiones.', ]
}
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.11').\
replace('VERSION_STR', '1.4.12').\
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.11.exe"
OutFile "pilas-engine_1.4.12.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.11"
VERSION = "1.4.12"


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.11",
version="1.4.12",
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.11",
version="1.4.12",
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 ca3484e

Please sign in to comment.