Skip to content

Commit

Permalink
Version 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benini committed Jan 22, 2023
1 parent 2a08023 commit a6f27c5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 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 4.8.0)
set(CPACK_PACKAGE_VERSION 5.0.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 = 4.8.0
PROJECT_NUMBER = 5.0.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 '4.8.0'
#define AppVersion '5.0.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 @@ -311,7 +311,7 @@
<key>CFBundleExecutable</key>
<string>scid/scid</string>
<key>CFBundleGetInfoString</key>
<string>Scid 4.8.0</string>
<string>Scid 5.0.0</string>
<key>CFBundleIconFile</key>
<string>ScidApp.icns</string>
<key>CFBundleIdentifier</key>
Expand All @@ -323,7 +323,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>4.8.0</string>
<string>5.0.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 4,8,0,0
PRODUCTVERSION 4,8,0,0
FILEVERSION 5,0,0,0
PRODUCTVERSION 5,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "04090000"
BEGIN
VALUE "CompanyName", "http://sourceforge.net/projects/scid/"
VALUE "FileDescription", "Chess Database"
VALUE "FileVersion", "4.8.0.0"
VALUE "FileVersion", "5.0.0.0"
VALUE "LegalCopyright", "Copyright (C) 1999-2022"
VALUE "OriginalFilename", "scid.exe"
VALUE "ProductName", "Scid"
VALUE "ProductVersion", "4.8.0.0"
VALUE "ProductVersion", "5.0.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[] = "4.8.0"; // Current Scid version
const char SCID_VERSION_STRING[] = "5.0.0"; // Current Scid version



Expand Down
2 changes: 1 addition & 1 deletion tcl/end.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ proc helpAbout {} {
append str "Copyright (C) 2006-2009 Pascal Georges\n"
append str "Copyright (C) 2008-2011 Alexander Wagner\n"
append str "Copyright (C) 2011 Gerd Lorscheid\n"
append str "Copyright (C) 2009-2019 Fulvio Benini\n"
append str "Copyright (C) 2009-2023 Fulvio Benini\n"
append str "\nScid is licenced under the\n"
append str "GNU General Public License.\n"

Expand Down
2 changes: 1 addition & 1 deletion tcl/start.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ package require Tk 8.6

set scidVersion [sc_info version]
set scidVersionDate [sc_info version date]
set scidVersionExpected "4.8.0"
set scidVersionExpected "5.0.0"

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

0 comments on commit a6f27c5

Please sign in to comment.