Skip to content

Commit

Permalink
Version 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benini committed Dec 21, 2024
1 parent ba2e75e commit 22aba17
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

cmake_minimum_required(VERSION 3.15)
project(scid)
set(CPACK_PACKAGE_VERSION 5.0.2)
set(CPACK_PACKAGE_VERSION 5.1.0)
set(
CPACK_PACKAGE_DESCRIPTION_SUMMARY
"chess database application with play and training functionality"
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Scid
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 5.0.2
PROJECT_NUMBER = 5.1.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion InnoSetup.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#define AppVersion '5.0.2'
#define AppVersion '5.1.0'
#define AppName 'Scid'
#define TCLDIR 'C:\Tcl'

Expand Down
4 changes: 2 additions & 2 deletions resources/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<key>CFBundleExecutable</key>
<string>scid/scid</string>
<key>CFBundleGetInfoString</key>
<string>Scid 5.0.2</string>
<string>Scid 5.1.0</string>
<key>CFBundleIconFile</key>
<string>ScidApp.icns</string>
<key>CFBundleIdentifier</key>
Expand All @@ -20,7 +20,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>5.0.2</string>
<string>5.1.0</string>
<key>CFBundleSignature</key>
<string>Scid</string>
<key>LSMinimumSystemVersion</key>
Expand Down
8 changes: 4 additions & 4 deletions resources/win/scid.rc
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ SCID ICON "scid.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 5,0,2,0
PRODUCTVERSION 5,0,2,0
FILEVERSION 5,1,0,0
PRODUCTVERSION 5,1,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "04090000"
BEGIN
VALUE "CompanyName", "http://sourceforge.net/projects/scid/"
VALUE "FileDescription", "Chess Database"
VALUE "FileVersion", "5.0.2.0"
VALUE "FileVersion", "5.1.0.0"
VALUE "LegalCopyright", "Copyright (C) 1999-2022"
VALUE "OriginalFilename", "scid.exe"
VALUE "ProductName", "Scid"
VALUE "ProductVersion", "5.0.2.0"
VALUE "ProductVersion", "5.1.0.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
typedef unsigned short versionT;
const versionT SCID_VERSION = 400; // Current file format version = 4.0

const char SCID_VERSION_STRING[] = "5.0.2"; // Current Scid version
const char SCID_VERSION_STRING[] = "5.1.0"; // Current Scid version



Expand Down
2 changes: 1 addition & 1 deletion tcl/start.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ set useLocalTooltip [catch {package require tooltip 2.0}]

set scidVersion [sc_info version]
set scidVersionDate [sc_info version date]
set scidVersionExpected "5.0.2"
set scidVersionExpected "5.1.0"

# Check that the version of c++ code matches the version of tcl code
#
Expand Down

0 comments on commit 22aba17

Please sign in to comment.