Skip to content

Commit ca19e06

Browse files
committed
Add Stockfish 11
1 parent a4ccdc5 commit ca19e06

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ scidOnTheGo/src/main/jniLibs
1818
scidOnTheGo/src/main/libs
1919
scidOnTheGo/src/main/obj
2020
scidOnTheGo/release
21-
/screenshots/*
21+
/screenshots/*
22+
/.idea/markdown*.xml

.idea/gradle.xml

Lines changed: 10 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
google()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.5.0'
8+
classpath 'com.android.tools.build:gradle:3.6.1'
99
}
1010
}
1111

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Aug 22 19:43:03 CEST 2019
1+
#Sat Mar 14 23:33:55 CET 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

scidOnTheGo/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
android:installLocation="auto"
55
package="org.scid.android"
6-
android:versionCode="54"
7-
android:versionName="1.54" >
6+
android:versionCode="55"
7+
android:versionName="1.55" >
88

99
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
1010
<uses-permission android:name="android.permission.INTERNET" />

scidOnTheGo/src/main/java/org/scid/android/engine/EngineManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* Class to manage UCI chess engines.
3939
*/
4040
public class EngineManager {
41-
private static final String INTERNAL_ENGINE_NAME = "Stockfish 10";
41+
private static final String INTERNAL_ENGINE_NAME = "Stockfish";
4242
private static final String INTERNAL_ENGINE_FILE_NAME = "libstockfish.so";
4343
private static final String ENGINE_DATA_FILE = "chessengines.xml";
4444
private static EngineConfig defaultEngine;

0 commit comments

Comments
 (0)