Skip to content

Commit 926fac3

Browse files
committed
Fix windows issue related to stockfish plugin (3)
1 parent bedf6a4 commit 926fac3

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed

AppImageBuilder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ AppDir:
1515
id: com.loloof64.basic_chess_endgames
1616
name: BasicChessEndgames
1717
icon: icon
18-
version: 4.2.4
18+
version: 4.2.5
1919
exec: basicchessendgamestrainer
2020
exec_args: $@
2121
apt:

Basic_chess_endgames.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Desktop Entry]
22
Type=Application
3-
Version=4.2.4
3+
Version=4.2.5
44
Name=BasicChessEndgames
55
Comment=Generate a chess position and play with it
66
Exec=basicchessendgamestrainer

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 4.2.4
1+
## 4.2.5
22

33
* Minor fixes
44
* Rename window title in desktop version

ios/Flutter/Generated.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FLUTTER_APPLICATION_PATH=/home/laurent/Documents/GitHub/basic_chess_endgames
44
COCOAPODS_PARALLEL_CODE_SIGN=true
55
FLUTTER_TARGET=lib/main.dart
66
FLUTTER_BUILD_DIR=build
7-
FLUTTER_BUILD_NAME=4.2.4
7+
FLUTTER_BUILD_NAME=4.2.5
88
FLUTTER_BUILD_NUMBER=17
99
EXCLUDED_ARCHS[sdk=iphonesimulator*]=i386
1010
EXCLUDED_ARCHS[sdk=iphoneos*]=armv7

ios/Flutter/flutter_export_environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export "FLUTTER_APPLICATION_PATH=/home/laurent/Documents/GitHub/basic_chess_endg
55
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
66
export "FLUTTER_TARGET=lib/main.dart"
77
export "FLUTTER_BUILD_DIR=build"
8-
export "FLUTTER_BUILD_NAME=4.2.4"
8+
export "FLUTTER_BUILD_NAME=4.2.5"
99
export "FLUTTER_BUILD_NUMBER=17"
1010
export "DART_OBFUSCATION=false"
1111
export "TRACK_WIDGET_CREATION=true"

macos/Flutter/ephemeral/Flutter-Generated.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FLUTTER_ROOT=/home/laurent/Programmes/Programmation/flutter
33
FLUTTER_APPLICATION_PATH=/home/laurent/Documents/GitHub/basic_chess_endgames
44
COCOAPODS_PARALLEL_CODE_SIGN=true
55
FLUTTER_BUILD_DIR=build
6-
FLUTTER_BUILD_NAME=4.2.4
6+
FLUTTER_BUILD_NAME=4.2.5
77
FLUTTER_BUILD_NUMBER=17
88
DART_OBFUSCATION=false
99
TRACK_WIDGET_CREATION=true

macos/Flutter/ephemeral/flutter_export_environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export "FLUTTER_ROOT=/home/laurent/Programmes/Programmation/flutter"
44
export "FLUTTER_APPLICATION_PATH=/home/laurent/Documents/GitHub/basic_chess_endgames"
55
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
66
export "FLUTTER_BUILD_DIR=build"
7-
export "FLUTTER_BUILD_NAME=4.2.4"
7+
export "FLUTTER_BUILD_NAME=4.2.5"
88
export "FLUTTER_BUILD_NUMBER=17"
99
export "DART_OBFUSCATION=false"
1010
export "TRACK_WIDGET_CREATION=true"

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 4.2.4+18
19+
version: 4.2.5+18
2020

2121
environment:
2222
sdk: '>=3.0.5 <4.0.0'
@@ -52,8 +52,8 @@ dependencies:
5252
antlr4: ^4.13.2
5353
logger: ^2.5.0
5454
http: ^1.2.2
55-
slang: ^4.2.4
56-
slang_flutter: ^4.2.4
55+
slang: ^4.2.5
56+
slang_flutter: ^4.2.5
5757
path_provider: ^2.1.5
5858
path: ^1.9.0
5959
window_manager: ^0.4.3

windows/inno_setup.iss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Basic Chess Endgames"
5-
#define MyAppVersion "4.2.4"
5+
#define MyAppVersion "4.2.5"
66
#define MyAppPublisher "Laurent Bernabe"
77
#define MyAppExeName "basicchessendgamestrainer.exe"
88

@@ -45,6 +45,7 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{
4545

4646
[Files]
4747
Source: "..\build\windows\x64\runner\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
48+
Source: "..\build\windows\x64\plugins\stockfish_chess_engine\shared\Release\stockfish.dll"; DestDir: "{app}\plugins\stockfish_chess_engine\shared\Release"; Flags: ignoreversion recursesubdirs createallsubdirs
4849
Source: "..\build\windows\x64\runner\Release\flutter_windows.dll"; DestDir: "{app}"; Flags: ignoreversion
4950
Source: "..\build\windows\x64\runner\Release\nn-5af11540bbfe.nnue"; DestDir: "{app}"; Flags: ignoreversion
5051
Source: "..\build\windows\x64\runner\Release\screen_retriever_windows_plugin.dll"; DestDir: "{app}"; Flags: ignoreversion

0 commit comments

Comments
 (0)