Skip to content

Commit

Permalink
Release v2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
KangLin committed Jun 19, 2023
1 parent ec060ce commit 3257e9a
Show file tree
Hide file tree
Showing 18 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
INSTALL_DIR: ${{github.workspace}}/.cache/install_${{matrix.BUILD_TYPE}}
ANDROID_PLATFORM: android-23
ANDROID_NATIVE_API_LEVEL: 23
ChineseChessControl_VERSION: "v2.0.8"
ChineseChessControl_VERSION: "v2.0.7"
VCPKGGITCOMMITID: 1ba9a2591f15af5900f2ce2b3e2bf31771e3ac48
qt_modules: 'qtimageformats qtmultimedia qtscxml qtwebchannel qtwebsockets qtwebview'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: build
env:
artifact_path: artifact_path
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ChineseChessControl_VERSION: "v2.0.8"
ChineseChessControl_VERSION: "v2.0.7"
on:
push:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_ubuntu
ChineseChessControl_VERSION: "v2.0.8"
ChineseChessControl_VERSION: "v2.0.7"
DOXYGEN_VERSION: 1.9.5
artifact_name: build_doxygen

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_macos
ChineseChessControl_VERSION: "2.0.8"
ChineseChessControl_VERSION: "2.0.7"
artifact_name: build_macos
qt_modules: 'qtwebengine ${{ matrix.qt_modules }}'
VCPKGGITCOMMITID: 5cf60186a241e84e8232641ee973395d4fde90e1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}\.cache\source
TOOSL_DIR: ${{github.workspace}}\.cache\tools
INSTALL_DIR: ${{github.workspace}}\.cache\install_mingw
ChineseChessControl_VERSION: "v2.0.8"
ChineseChessControl_VERSION: "v2.0.7"
artifact_name: build_mingw

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
CMAKE_GENERATOR: "Visual Studio 17 2022"
CMAKE_GENERATOR_PLATFORM: ${{matrix.CMAKE_GENERATOR_PLATFORM}}
VCPKG_PLATFORM_TOOLSET: ${{matrix.VCPKG_PLATFORM_TOOLSET}}
ChineseChessControl_VERSION: "v2.0.8"
ChineseChessControl_VERSION: "v2.0.7"
VCPKGGITCOMMITID: 5cf60186a241e84e8232641ee973395d4fde90e1
qt_modules: 'qtwebengine ${{matrix.qt_modules}}'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
SOURCE_DIR: ${{github.workspace}}/.cache/source
TOOSL_DIR: ${{github.workspace}}/.cache/tools
INSTALL_DIR: ${{github.workspace}}/.cache/install_ubuntu_${{matrix.BUILD_TYPE}}
ChineseChessControl_VERSION: "2.0.8"
ChineseChessControl_VERSION: "2.0.7"
artifact_name: build_ubuntu

# Map the job outputs to step outputs
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ before_install:
- sudo Xvfb :99 -ac &
- export DISPLAY=:99.0
- mkdir ${SOURCE_DIR}/Tools
- export VERSION="v2.0.8"
- export VERSION="v2.0.7"
- echo "QT_USER:$QT_USER"
- echo "QT_PASSWORD:$QT_PASSWORD"
- echo "STOREPASS:$STOREPASS"
Expand Down
2 changes: 1 addition & 1 deletion App/Qt/ChineseChess/android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.KangLinStudio.ChineseChess"
android:versionName="2.0.8"
android:versionName="2.0.7"
android:versionCode="2"
android:installLocation="auto">

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if(POLICY CMP0021)
endif()

# 设置版本号
SET(ChineseChessControl_VERSION "v2.0.8")
SET(ChineseChessControl_VERSION "v2.0.7")
# 用 GIT 得到版本号
IF(EXISTS "${CMAKE_SOURCE_DIR}/.git")
if(NOT GIT)
Expand Down
2 changes: 1 addition & 1 deletion Install/Install.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "ChineseChessControl"
!define PRODUCT_VERSION "v2.0.8"
!define PRODUCT_VERSION "v2.0.7"
!define PRODUCT_PUBLISHER "Kang Lin (kl222@126.com)"
!define PRODUCT_WEB_SITE "https://github.com/KangLin/${PRODUCT_NAME}"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${PRODUCT_NAME}.exe"
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,30 +70,30 @@
+ [最后版本](https://github.com/KangLin/ChineseChessControl/releases/latest)
+ 当前版本:
- Windows
- [chinesechesscontrol_v2.0.8_Windows_X86_setup.exe](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/chinesechesscontrol_v2.0.8_Windows_X86_setup.exe)
- [chinesechesscontrol_v2.0.7_Windows_X86_setup.exe](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/chinesechesscontrol_v2.0.7_Windows_X86_setup.exe)

Windows安装包,支持 Windows 7 以上系统。安装完成后,使用请详见:[开发者文档](Documents/Developer.md#调试)

- linux
- [chinesechesscontrol_v2.0.8_Linux_x86_64_setup.sh](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/chinesechesscontrol_v2.0.8_Linux_x86_64_setup.sh)
- [chinesechesscontrol_v2.0.7_Linux_x86_64_setup.sh](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/chinesechesscontrol_v2.0.7_Linux_x86_64_setup.sh)

- ubuntu
- [chinesechesscontrol_v2.0.8_Linux_x86_64_setup.deb](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/chinesechesscontrol_v2.0.8_Linux_x86_64_setup.deb)
- [chinesechesscontrol_v2.0.7_Linux_x86_64_setup.deb](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/chinesechesscontrol_v2.0.7_Linux_x86_64_setup.deb)

- Macos
- [chinesechesscontrol_v2.0.8_Darwin_x86_64_setup.tar.gz](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/chinesechesscontrol_v2.0.8_Darwin_x86_64_setup.tar.gz)
- [chinesechesscontrol_v2.0.7_Darwin_x86_64_setup.tar.gz](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/chinesechesscontrol_v2.0.7_Darwin_x86_64_setup.tar.gz)

- Android
- APK
- [ChineseChessControl_v2.0.8_android_arm64_v8a_qt2.0.8_Release.apk](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_android_arm64_v8a_qt2.0.8_Release.apk)
- [ChineseChessControl_v2.0.8_android_armv7_qt2.0.8_Release.apk](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_android_armv7_qt2.0.8_Release.apk)
- [ChineseChessControl_v2.0.8_android_x86_64_qt2.0.8_Release.apk](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_android_x86_64_qt2.0.8_Release.apk)
- [ChineseChessControl_v2.0.7_android_arm64_v8a_qt2.0.7_Release.apk](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_android_arm64_v8a_qt2.0.7_Release.apk)
- [ChineseChessControl_v2.0.7_android_armv7_qt2.0.7_Release.apk](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_android_armv7_qt2.0.7_Release.apk)
- [ChineseChessControl_v2.0.7_android_x86_64_qt2.0.7_Release.apk](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_android_x86_64_qt2.0.7_Release.apk)
- 开发包
- [ChineseChessControl_v2.0.8_android_arm64_v8a_qt2.0.8_Release.zip](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_android_arm64_v8a_qt2.0.8_Release.zip)
- [ChineseChessControl_v2.0.8_android_armv7_qt2.0.8_Release.zip](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_android_armv7_qt2.0.8_Release.zip)
- [ChineseChessControl_v2.0.8_android_x86_64_qt2.0.8_Release.zip](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_android_x86_64_qt2.0.8_Release.zip)
- [ChineseChessControl_v2.0.7_android_arm64_v8a_qt2.0.7_Release.zip](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_android_arm64_v8a_qt2.0.7_Release.zip)
- [ChineseChessControl_v2.0.7_android_armv7_qt2.0.7_Release.zip](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_android_armv7_qt2.0.7_Release.zip)
- [ChineseChessControl_v2.0.7_android_x86_64_qt2.0.7_Release.zip](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_android_x86_64_qt2.0.7_Release.zip)

+ [文档](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.8/ChineseChessControl_v2.0.8_document.zip)
+ [文档](https://github.com/KangLin/ChineseChessControl/releases/download/v2.0.7/ChineseChessControl_v2.0.7_document.zip)
+ [在线文档](https://kanglin.github.io/ChineseChessControl/Chinese/html/group__API.html)

#### 贡献
Expand Down
2 changes: 1 addition & 1 deletion UI/ActiveX/ChineseChessActiveXCtrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ END_PROPPAGEIDS(CChineseChessActiveXCtrl)

// 初始化类工厂和 guid

IMPLEMENT_OLECREATE_EX(CChineseChessActiveXCtrl, "ChineseChessActiveX.2.0.8",
IMPLEMENT_OLECREATE_EX(CChineseChessActiveXCtrl, "ChineseChessActiveX.2.0.7",
0xe4e060cb,0xa3aa,0x4278,0xb1,0xed,0xce,0x50,0x20,0xc4,0x2e,0xc7)

// 键入库 ID 和版本
Expand Down
2 changes: 1 addition & 1 deletion UI/ActiveX/ChineseChessActiveXPropPage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ END_MESSAGE_MAP()

// 初始化类工厂和 guid

IMPLEMENT_OLECREATE_EX(CChineseChessActiveXPropPage, "ChineseChessActiveXPropPage.2.0.8",
IMPLEMENT_OLECREATE_EX(CChineseChessActiveXPropPage, "ChineseChessActiveXPropPage.2.0.7",
0x035c7fb0,0x47a0,0x45fb,0xa4,0x5a,0xc2,0x9d,0xcf,0xe9,0xe0,0x01)

// CChineseChessActiveXPropPage::CChineseChessActiveXPropPageFactory::UpdateRegistry -
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 'v2.0.8.{build}'
version: 'v2.0.7.{build}'

cache:
- Package
Expand All @@ -10,7 +10,7 @@ environment:
secure: EoBPaPuJ6u9UDYpQWjKhUg==
QT_PASSWORD:
secure: ejAYGgB+3sBispRxUSr0xw==
ChineseChessControl_VERSION: "v2.0.8"
ChineseChessControl_VERSION: "v2.0.7"

matrix:
##### msvc 2019 ########
Expand Down
6 changes: 3 additions & 3 deletions ci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ case ${BUILD_TARGERT} in
esac

if [ -n "$appveyor_build_version" -a -z "$VERSION" ]; then
export VERSION="v2.0.8"
export VERSION="v2.0.7"
fi
if [ -z "$VERSION" ]; then
export VERSION="v2.0.8"
export VERSION="v2.0.7"
fi
export DEBIAN_VERSION="2.0.8"
export DEBIAN_VERSION="2.0.7"
export UPLOADTOOL_BODY="Release ChineseChess ${VERSION}.<br/> The change see [ChangeLog.md](ChangeLog.md)"
#export UPLOADTOOL_PR_BODY=

Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
chinesechess (2.0.8) stable; urgency=medium
chinesechess (2.0.7) stable; urgency=medium

* Initial Release.

Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Section: games
Priority: optional
Maintainer: Kang Lin <kl222@126.com>
Build-Depends: debhelper (>= 6)
Standards-Version:"v2.0.8"
Standards-Version:"v2.0.7"
Homepage: https://github.com/KangLin/ChineseChessControl
Vcs-Git: https://github.com/KangLin/ChineseChessControl.git
#Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/ChineseChessControl.git
Expand Down

0 comments on commit 3257e9a

Please sign in to comment.