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

Commit f157015

Browse files
committed
Version 10.13
1 parent d0907dc commit f157015

File tree

12 files changed

+17
-120
lines changed

12 files changed

+17
-120
lines changed

Code/GestorRoutes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -660,11 +660,11 @@ def siguienteJugada(self):
660660
if self.estado == kFinJuego:
661661
return
662662

663-
fenM2 = self.partida.ultPosicion.fenM2()
664-
if not self.dicFen.get(fenM2, None):
663+
if self.partida.numJugadas() == self.nDicMoves:
665664
self.lineaTerminada()
666665
return
667666

667+
fenM2 = self.partida.ultPosicion.fenM2()
668668
self.estado = kJugando
669669

670670
self.siJuegaHumano = False

Code/Init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
DEBUG = False
2-
VERSION = "10.12a"
2+
VERSION = "10.13"
33

44
import os
55
import sys

Code/Procesador.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def iniciaConUsuario(self, user):
7272

7373
self.user = user
7474

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

7878
self.liOpcionesInicio = [k_terminar, k_play,

Code/QT/InfoBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def version(num, liBase, liResto):
110110
return txt
111111

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

Code/QT/PantallaAlbumes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, wowner, procesador, album):
5252
layout.controlc(pb, fila * 2, col)
5353
layout.controlc(lb, fila * 2 + 1, col)
5454

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

5858
pbExit = Controles.PB(self, _("Close"), self.quit, plano=False).ponIcono(Iconos.MainMenu())

Code/QT/PantallaGM.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -602,8 +602,7 @@ def importarGM(ownerGM):
602602
os.remove(ficht)
603603
except:
604604
pass
605-
web = "http://www-lucaschess.rhcloud.com/static/GM"
606-
# web = "http://lucaschess.pythonanywhere.com/static/gm"
605+
web = "http://lucaschess.pythonanywhere.com/static/gm"
607606
me = QTUtil2.mensEspera.inicio(ownerGM, _("Reading the list of grandmasters from the web"))
608607
siError = False
609608
try:

Code/QT/Tablero.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,11 @@ def exec_kb_buffer(self, key, flags):
155155
elif key == Qt.Key_N and siAlt:
156156
self.pantalla.gestor.rightMouse(False, False, True)
157157
# ALT-C -> show captures
158-
elif key == Qt.Key_C and siAlt:
159-
self.pantalla.gestor.rightMouse(False, True, False)
158+
elif key == Qt.Key_C:
159+
if siAlt:
160+
self.pantalla.gestor.rightMouse(False, True, False)
161+
else:
162+
okseguir = True
160163

161164
else:
162165
okseguir = True

IntFiles/Routes/Transsiberian/level1/config.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
10=Q,1
3030
11=R,1
3131
12=PP,0
32-
13=P_R,0
32+
13=PR,0
3333
14=P,0
3434
15=P,1
3535
16=M3,M

Locale/ru/lang.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
NAME=Российский
1+
NAME=Pусский
22
AUTHOR=Nils Andersson,Reinhard,Vladimir,Slavik Pavlov
3-
%=99
3+
%=100

Lucas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# ==============================================================================
55
# Author : Lucas Monge, lukasmonk@gmail.com
6-
# Web : http://www-lucaschess.rhcloud.com
6+
# Web : http://lucaschess.pythonanywhere.com/
77
# Blog : http://lucaschess.blogspot.com/
88
# Licence : GPL
99
# ==============================================================================

0 commit comments

Comments
 (0)