Skip to content
This repository has been archived by the owner on May 4, 2021. It is now read-only.

Commit

Permalink
Version 10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasmonk committed Sep 27, 2017
1 parent d0907dc commit f157015
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 120 deletions.
4 changes: 2 additions & 2 deletions Code/GestorRoutes.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,11 +660,11 @@ def siguienteJugada(self):
if self.estado == kFinJuego:
return

fenM2 = self.partida.ultPosicion.fenM2()
if not self.dicFen.get(fenM2, None):
if self.partida.numJugadas() == self.nDicMoves:
self.lineaTerminada()
return

fenM2 = self.partida.ultPosicion.fenM2()
self.estado = kJugando

self.siJuegaHumano = False
Expand Down
2 changes: 1 addition & 1 deletion Code/Init.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DEBUG = False
VERSION = "10.12a"
VERSION = "10.13"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion Code/Procesador.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def iniciaConUsuario(self, user):

self.user = user

self.web = "http://www-lucaschess.rhcloud.com"
self.web = "http://lucaschess.pythonanywhere.com"
self.blog = "http://lucaschess.blogspot.com"

self.liOpcionesInicio = [k_terminar, k_play,
Expand Down
2 changes: 1 addition & 1 deletion Code/QT/InfoBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def version(num, liBase, liResto):
return txt

# Version 10
liBase = ["Remes", "Max Aloyau", "Alfonso Solbes", "tico-tico", "Nils Andersson", "Bernhard"]
liBase = ["Remes", "Max Aloyau", "Alfonso Solbes", "tico-tico", "Nils Andersson", "Bernhard", "Ed Smith"]
liResto = ["Immortalchess forum", ]
txt += version(10, liBase, liResto)

Expand Down
2 changes: 1 addition & 1 deletion Code/QT/PantallaAlbumes.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __init__(self, wowner, procesador, album):
layout.controlc(pb, fila * 2, col)
layout.controlc(lb, fila * 2 + 1, col)

mensaje = _("Select an slot to play against and get its image if you win") if pte else ""
mensaje = _("Select a slot to play against and get its image if you win") if pte else ""
lb = Controles.LB(self, mensaje)

pbExit = Controles.PB(self, _("Close"), self.quit, plano=False).ponIcono(Iconos.MainMenu())
Expand Down
3 changes: 1 addition & 2 deletions Code/QT/PantallaGM.py
Original file line number Diff line number Diff line change
Expand Up @@ -602,8 +602,7 @@ def importarGM(ownerGM):
os.remove(ficht)
except:
pass
web = "http://www-lucaschess.rhcloud.com/static/GM"
# web = "http://lucaschess.pythonanywhere.com/static/gm"
web = "http://lucaschess.pythonanywhere.com/static/gm"
me = QTUtil2.mensEspera.inicio(ownerGM, _("Reading the list of grandmasters from the web"))
siError = False
try:
Expand Down
7 changes: 5 additions & 2 deletions Code/QT/Tablero.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,11 @@ def exec_kb_buffer(self, key, flags):
elif key == Qt.Key_N and siAlt:
self.pantalla.gestor.rightMouse(False, False, True)
# ALT-C -> show captures
elif key == Qt.Key_C and siAlt:
self.pantalla.gestor.rightMouse(False, True, False)
elif key == Qt.Key_C:
if siAlt:
self.pantalla.gestor.rightMouse(False, True, False)
else:
okseguir = True

else:
okseguir = True
Expand Down
2 changes: 1 addition & 1 deletion IntFiles/Routes/Transsiberian/level1/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
10=Q,1
11=R,1
12=PP,0
13=P_R,0
13=PR,0
14=P,0
15=P,1
16=M3,M
4 changes: 2 additions & 2 deletions Locale/ru/lang.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
NAME=Российский
NAME=Pусский
AUTHOR=Nils Andersson,Reinhard,Vladimir,Slavik Pavlov
%=99
%=100
2 changes: 1 addition & 1 deletion Lucas.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# ==============================================================================
# Author : Lucas Monge, [email protected]
# Web : http://www-lucaschess.rhcloud.com
# Web : http://lucaschess.pythonanywhere.com/
# Blog : http://lucaschess.blogspot.com/
# Licence : GPL
# ==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion bug.log
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version 10.12a
Version 10.13
105 changes: 0 additions & 105 deletions pyqt2pyside.py

This file was deleted.

0 comments on commit f157015

Please sign in to comment.