Skip to content

Commit

Permalink
updates version information to 0.14. ts3 client plugin api -> 23.
Browse files Browse the repository at this point in the history
  • Loading branch information
mfreiholz committed Jun 29, 2019
1 parent 5357ba5 commit e5ccc12
Show file tree
Hide file tree
Showing 8 changed files with 1,419 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ include(cmake/project-macro.cmake)

# Generate global version header file.
set(VERSION_MAJOR "0" CACHE INTERNAL "Major software version" FORCE)
set(VERSION_MINOR "13" CACHE INTERNAL "Minor software version" FORCE)
set(VERSION_MINOR "14" CACHE INTERNAL "Minor software version" FORCE)
set(VERSION_PATCH "0" CACHE INTERNAL "Patch software version" FORCE)
set(VERSION_EXTRA "" CACHE INTERNAL "Additional software version information, e.g.: release, beta, alpha, dev" FORCE)
FILE(WRITE $ENV{OCS_BUILD_DIR_PATH}/project-defines.h
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Build has been tested on

- CMake >= 3.0.0
- Qt 5.4.1 build with OpenGL
- https://download.qt.io/archive/qt/5.5/5.5.1/qt-opensource-windows-x86-msvc2013-5.5.1.exe
- https://download.qt.io/archive/qt/5.5/5.5.1/qt-opensource-windows-x86-msvc2013_64-5.5.1.exe
- VC12 (Visual Studio 2013)

### Linux only
Expand Down
1 change: 1 addition & 0 deletions build-win32-cmake.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ cd %OCS_BUILD_DIR_PATH%

rem Configure with CMake.
cmake -G "Visual Studio 12 2013" -DCMAKE_INSTALL_PREFIX="%OCS_INSTALL_DIR_PATH%" -DIncludeOpenGLSupport=ON ..
rem cmake -G "Visual Studio 14 2015" -DCMAKE_INSTALL_PREFIX="%OCS_INSTALL_DIR_PATH%" -DIncludeOpenGLSupport=ON ..

pause
6 changes: 3 additions & 3 deletions innosetup/all.iss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

; Application information
#define MyAppURL "https://mfreiholz.de/ts3video"
#define MyAppVersion "0.13"
#define MyAppVersion "0.14"

[Setup]
AppPublisher={#MyOrgName}
Expand All @@ -20,7 +20,7 @@ AppVersion={#MyAppVersion}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}

DefaultDirName={pf}\{#MyOrgDomain}\{#MyAppName}
DefaultDirName={commonpf}\{#MyOrgDomain}\{#MyAppName}
DefaultGroupName={#MyAppName}
DisableProgramGroupPage=yes

Expand All @@ -32,7 +32,7 @@ OutputDir={#OCS_RELEASE_DIR_PATH}
OutputBaseFilename={#MyAppName} {#MyAppVersion} Setup

; Comsmetics
AppCopyright=Copyright (C) 2015-2017 {#MyOrgName}
AppCopyright=Copyright (C) 2015-2019 {#MyOrgName}

; Basic registry values for all applications.
[Registry]
Expand Down
4 changes: 2 additions & 2 deletions projects/libapp/libapp/ts3video.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
///////////////////////////////////////////////////////////////////////

/* Comma separated list of client versions, which the current server build supports. */
#define IFVS_SERVER_SUPPORTED_CLIENT_VERSIONS "0.6,0.7,0.8,0.9,0.10,0.11,0.12,0.13"
#define IFVS_SERVER_SUPPORTED_CLIENT_VERSIONS "0.6,0.7,0.8,0.9,0.10,0.11,0.12,0.13,0.14"

#define IFVS_SERVER_ADDRESS "mfreiholz.de" ///< The default server address. Good for testing.
#define IFVS_SERVER_CONNECTION_PORT 13370 ///< The default server port to accept connections from clients.
Expand All @@ -33,7 +33,7 @@
///////////////////////////////////////////////////////////////////////

/* Comma separated list of server versions, which the current client build supports. */
#define IFVS_CLIENT_SUPPORTED_SERVER_VERSIONS "0.6,0.7,0.8,0.9,0.10,0.11,0.12,0.13"
#define IFVS_CLIENT_SUPPORTED_SERVER_VERSIONS "0.6,0.7,0.8,0.9,0.10,0.11,0.12,0.13,0.14"

///////////////////////////////////////////////////////////////////////
// Status Codes
Expand Down
4 changes: 2 additions & 2 deletions projects/ts3plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ project(ts3plugin)
cmake_policy(SET CMP0020 NEW)

set(headers
plugin_22.h
plugin_23.h
impl.h
)

set(sources
plugin_22.c
plugin_23.c
impl.cpp
)

Expand Down
Loading

0 comments on commit e5ccc12

Please sign in to comment.